Small changes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -311,6 +311,7 @@ samples/mdi/bitmaps/*.xbm
|
||||
samples/minimal/*.cpp
|
||||
samples/minimal/*.h
|
||||
samples/minimal/*.def
|
||||
samples/minimal/Makefile.in
|
||||
samples/minimal/makefile*
|
||||
samples/minimal/*.xbm
|
||||
samples/minimal/*.xpm
|
||||
|
43
distrib/msw/makefile.rsp
Normal file
43
distrib/msw/makefile.rsp
Normal file
@@ -0,0 +1,43 @@
|
||||
samples/bombs/Makefile.in
|
||||
samples/checklst/Makefile.in
|
||||
samples/config/Makefile.in
|
||||
samples/controls/Makefile.in
|
||||
samples/db/Makefile.in
|
||||
samples/dde/Makefile.in
|
||||
samples/dialogs/Makefile.in
|
||||
samples/dnd/Makefile.in
|
||||
samples/docview/Makefile.in
|
||||
samples/docvwmdi/Makefile.in
|
||||
samples/dynamic/Makefile.in
|
||||
samples/forty/Makefile.in
|
||||
samples/fractal/Makefile.in
|
||||
samples/grid/Makefile.in
|
||||
samples/help/Makefile.in
|
||||
samples/image/Makefile.in
|
||||
samples/internat/Makefile.in
|
||||
samples/layout/Makefile.in
|
||||
samples/listctrl/Makefile.in
|
||||
samples/mdi/Makefile.in
|
||||
samples/memcheck/Makefile.in
|
||||
samples/minifram/Makefile.in
|
||||
samples/minimal/Makefile.in
|
||||
samples/notebook/Makefile.in
|
||||
samples/png/Makefile.in
|
||||
samples/printing/Makefile.in
|
||||
samples/proplist/Makefile.in
|
||||
samples/resource/Makefile.in
|
||||
samples/sashtest/Makefile.in
|
||||
samples/splitter/Makefile.in
|
||||
samples/tab/Makefile.in
|
||||
samples/thread/Makefile.in
|
||||
samples/toolbar/Makefile.in
|
||||
samples/treectrl/Makefile.in
|
||||
samples/typetest/Makefile.in
|
||||
samples/validate/Makefile.in
|
||||
samples/wxpoem/Makefile.in
|
||||
samples/wxsocket/Makefile.in
|
||||
src/Makefile.in
|
||||
utils/ogl/samples/ogledit/Makefile.in
|
||||
utils/ogl/samples/studio/Makefile.in
|
||||
utils/ogl/src/Makefile.in
|
||||
|
@@ -33,19 +33,19 @@ rm -f $2/glcanvas.tar.gz
|
||||
echo Tarring...
|
||||
|
||||
### Generic
|
||||
ls `cat $1/distrib/msw/generic.rsp` > /tmp/wxgen.txt
|
||||
ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/makefile.rsp` > /tmp/wxgen.txt
|
||||
tar cvf $2/wx200gen.tar -T /tmp/wxgen.txt
|
||||
gzip $2/wx200gen.tar
|
||||
mv $2/wx200gen.tar.gz $2/wx200gen.tgz
|
||||
|
||||
### wxGTK
|
||||
ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/gtk.rsp` > /tmp/wxgtk.txt
|
||||
ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/gtk.rsp $1/distrib/msw/makefile.rsp` > /tmp/wxgtk.txt
|
||||
tar cvf $2/wx200gtk.tar -T /tmp/wxgtk.txt
|
||||
gzip $2/wx200gtk.tar
|
||||
mv $2/wx200gtk.tar.gz $2/wx200gtk.tgz
|
||||
|
||||
### wxMotif
|
||||
ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/motif.rsp` > /tmp/wxmotif.txt
|
||||
ls `cat $1/distrib/msw/generic.rsp $1/distrib/msw/motif.rsp $1/distrib/msw/makefile.rsp` > /tmp/wxmotif.txt
|
||||
tar cvf $2/wx200mot.tar -T /tmp/wxmotif.txt
|
||||
gzip $2/wx200mot.tar
|
||||
mv $2/wx200mot.tar.gz $2/wx200mot.tgz
|
||||
|
@@ -351,9 +351,9 @@ the front when the dialog box is popped up.
|
||||
|
||||
\membersection{::wxFileSelector}\label{wxfileselector}
|
||||
|
||||
\func{wxString}{wxFileSelector}{\param{const wxString\& }{message}, \param{const wxString\& }{default\_path = NULL},\\
|
||||
\param{const wxString\& }{default\_filename = NULL}, \param{const wxString\& }{default\_extension = NULL},\\
|
||||
\param{const wxString\& }{wildcard = ``*.*''}, \param{int }{flags = 0}, \param{wxWindow *}{parent = NULL},\\
|
||||
\func{wxString}{wxFileSelector}{\param{const wxString\& }{message}, \param{const wxString\& }{default\_path = ""},\\
|
||||
\param{const wxString\& }{default\_filename = ""}, \param{const wxString\& }{default\_extension = ""},\\
|
||||
\param{const wxString\& }{wildcard = ``*.*''}, \param{int }{flags = 0}, \param{wxWindow *}{parent = ""},\\
|
||||
\param{int}{ x = -1}, \param{int}{ y = -1}}
|
||||
|
||||
Pops up a file selector box. In Windows, this is the common file selector
|
||||
@@ -384,7 +384,7 @@ The application must check for a NULL return value (the user pressed
|
||||
Cancel). For example:
|
||||
|
||||
\begin{verbatim}
|
||||
const wxString\& s = wxFileSelector("Choose a file to open");
|
||||
const wxString& s = wxFileSelector("Choose a file to open");
|
||||
if (s)
|
||||
{
|
||||
...
|
||||
|
@@ -72,6 +72,9 @@ COMPILING USING CONFIGURE
|
||||
either edit the makefile to hard-wire the flags, or place wx-config
|
||||
where it will be found by the makefile.
|
||||
|
||||
- If switching between wxMotif and wxGTK, you should remove the
|
||||
config.cache file manually before running configure again.
|
||||
|
||||
COMPILING USING MAKEFILES
|
||||
=========================
|
||||
|
||||
|
@@ -140,7 +140,8 @@ bool wxTreeCtrl::Create(wxWindow *parent, wxWindowID id,
|
||||
|
||||
m_windowId = (id == -1) ? NewControlId() : id;
|
||||
|
||||
DWORD wstyle = WS_VISIBLE | WS_CHILD | WS_TABSTOP | TVS_HASLINES;
|
||||
DWORD wstyle = WS_VISIBLE | WS_CHILD | WS_TABSTOP | TVS_HASLINES | TVS_SHOWSELALWAYS ;
|
||||
|
||||
|
||||
bool want3D;
|
||||
WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D) ;
|
||||
|
Reference in New Issue
Block a user