Small changes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
1999-03-06 11:51:06 +00:00
parent 72914c567f
commit f5ee2e5f8f
6 changed files with 56 additions and 8 deletions

View File

@@ -311,6 +311,7 @@ samples/mdi/bitmaps/*.xbm
samples/minimal/*.cpp samples/minimal/*.cpp
samples/minimal/*.h samples/minimal/*.h
samples/minimal/*.def samples/minimal/*.def
samples/minimal/Makefile.in
samples/minimal/makefile* samples/minimal/makefile*
samples/minimal/*.xbm samples/minimal/*.xbm
samples/minimal/*.xpm samples/minimal/*.xpm

43
distrib/msw/makefile.rsp Normal file
View 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

View File

@@ -33,19 +33,19 @@ rm -f $2/glcanvas.tar.gz
echo Tarring... echo Tarring...
### Generic ### 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 tar cvf $2/wx200gen.tar -T /tmp/wxgen.txt
gzip $2/wx200gen.tar gzip $2/wx200gen.tar
mv $2/wx200gen.tar.gz $2/wx200gen.tgz mv $2/wx200gen.tar.gz $2/wx200gen.tgz
### wxGTK ### 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 tar cvf $2/wx200gtk.tar -T /tmp/wxgtk.txt
gzip $2/wx200gtk.tar gzip $2/wx200gtk.tar
mv $2/wx200gtk.tar.gz $2/wx200gtk.tgz mv $2/wx200gtk.tar.gz $2/wx200gtk.tgz
### wxMotif ### 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 tar cvf $2/wx200mot.tar -T /tmp/wxmotif.txt
gzip $2/wx200mot.tar gzip $2/wx200mot.tar
mv $2/wx200mot.tar.gz $2/wx200mot.tgz mv $2/wx200mot.tar.gz $2/wx200mot.tgz

View File

@@ -351,9 +351,9 @@ the front when the dialog box is popped up.
\membersection{::wxFileSelector}\label{wxfileselector} \membersection{::wxFileSelector}\label{wxfileselector}
\func{wxString}{wxFileSelector}{\param{const wxString\& }{message}, \param{const wxString\& }{default\_path = NULL},\\ \func{wxString}{wxFileSelector}{\param{const wxString\& }{message}, \param{const wxString\& }{default\_path = ""},\\
\param{const wxString\& }{default\_filename = NULL}, \param{const wxString\& }{default\_extension = NULL},\\ \param{const wxString\& }{default\_filename = ""}, \param{const wxString\& }{default\_extension = ""},\\
\param{const wxString\& }{wildcard = ``*.*''}, \param{int }{flags = 0}, \param{wxWindow *}{parent = NULL},\\ \param{const wxString\& }{wildcard = ``*.*''}, \param{int }{flags = 0}, \param{wxWindow *}{parent = ""},\\
\param{int}{ x = -1}, \param{int}{ y = -1}} \param{int}{ x = -1}, \param{int}{ y = -1}}
Pops up a file selector box. In Windows, this is the common file selector 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: Cancel). For example:
\begin{verbatim} \begin{verbatim}
const wxString\& s = wxFileSelector("Choose a file to open"); const wxString& s = wxFileSelector("Choose a file to open");
if (s) if (s)
{ {
... ...

View File

@@ -72,6 +72,9 @@ COMPILING USING CONFIGURE
either edit the makefile to hard-wire the flags, or place wx-config either edit the makefile to hard-wire the flags, or place wx-config
where it will be found by the makefile. 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 COMPILING USING MAKEFILES
========================= =========================

View File

@@ -140,7 +140,8 @@ bool wxTreeCtrl::Create(wxWindow *parent, wxWindowID id,
m_windowId = (id == -1) ? NewControlId() : 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; bool want3D;
WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D) ; WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D) ;