]> git.saurik.com Git - wxWidgets.git/commitdiff
Solving link problem with 16 bits versions (wxProcessEvent, wxSpinEvent)
authorPatrick Albert <als@barjov.frmug.fr.net>
Thu, 26 Aug 1999 17:05:33 +0000 (17:05 +0000)
committerPatrick Albert <als@barjov.frmug.fr.net>
Thu, 26 Aug 1999 17:05:33 +0000 (17:05 +0000)
Various makefile.dos in Samples/ dir are now up-to-date
msvc\Ctl3dv2.lib changed to a valid one

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3492 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/msw/winundef.h
samples/bombs/makefile.dos
samples/controls/controls.cpp
samples/dynamic/dynamic.def
samples/makefile.dos
samples/text/makefile.dos
src/msw/makefile.dos
src/msw/nativdlg.cpp

index 6af2f389ccb674df609449f3f2dc6f54df5f405a..96c5a06e8ec50f467809e4855c8dd5e9a1e3a11c 100644 (file)
     }
 #endif
 
+// IsMaximized
+
+#ifdef IsMaximized
+    #undef IsMaximized
+    inline BOOL IsMaximized(HWND hwnd)
+    {
+        return IsZoomed(hwnd);
+    }
+#endif
+
 // For WINE
 
 #if defined(GetWindowStyle) || defined(__WXWINE__)
index ff40632c835a416e34c840d703a13df63efce491..8af1fd0b579891172db9f25b2bd605dbb38ae4ca 100644 (file)
@@ -11,8 +11,7 @@
 WXDIR = $(WXWIN)
 
 TARGET=bombs
-OBJECTS=dialoged.obj reseditr.obj dlghndlr.obj reswrite.obj\
-  winprop.obj edtree.obj edlist.obj symbtabl.obj winstyle.obj
+OBJECTS = $(TARGET).obj bombs1.obj game.obj
 
 !include $(WXDIR)\src\makeprog.msc
 
index e0531d76f880793b2b66c17c0b75e2f0c363ea0d..00c1f53a1ef865786799d3c6be6792b4dd8a425e 100644 (file)
@@ -23,7 +23,9 @@
     #include "wx/wx.h"
 #endif
 
+#if !defined( __WXMSW__ ) || defined( __WIN95__ )
 #include "wx/spinbutt.h"
+#endif
 #include "wx/notebook.h"
 #include "wx/imaglist.h"
 
index 6d63d054d521cf0a35e8240c8712c3c0d911d714..c45d4bd662021e7dda6b6fcd5cf3825eaf9ce98b 100644 (file)
@@ -1,4 +1,4 @@
-NAME         Dynamic
+NAME         Dynamik
 DESCRIPTION  'Dynamic event handler test'
 EXETYPE      WINDOWS
 STUB         'WINSTUB.EXE'
@@ -6,3 +6,4 @@ CODE         PRELOAD MOVEABLE DISCARDABLE
 DATA         PRELOAD MOVEABLE MULTIPLE
 HEAPSIZE     4048
 STACKSIZE    16000
+
index 4feacd5d0614f57ff038ab5a00424a4276811a6b..8537373e549ae36164430d2a8c62619b1dbe51bb 100644 (file)
@@ -16,145 +16,283 @@ WXDIR = $(WXWIN)
 
 THISDIR=$(WXDIR)\samples
 
+#
+# Indicates kind of pb with samples
+#
+# No makefile.dos file
+NOMAKE=1
+# No 16 bit version
+ONLY32=1
+# PNG unresolved
+PNGSETUP=1
+# DND not set in setup.h
+DNDSETUP=1
+# Misc. compilation errors
+COMPIL=1
+
 !include $(WXDIR)\src\makemsc.env
 
+#
+# Please keep samples list up-to-date, in alphabetical order
+#
 all:
-        cd $(WXDIR)\samples\splitter
+        cd $(WXDIR)\samples\bombs
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\resource
+        cd $(WXDIR)\samples\caret
+        nmake -f makefile.dos FINAL=$(FINAL)
+        cd $(WXDIR)\samples\checklst
+        nmake -f makefile.dos FINAL=$(FINAL)
+        cd $(WXDIR)\samples\config
         nmake -f makefile.dos FINAL=$(FINAL)
         cd $(WXDIR)\samples\controls
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\listctrl
+!if "$(COMPIL)"==""
+        cd $(WXDIR)\samples\db
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\treectrl
+!endif
+        cd $(WXDIR)\samples\dde
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\validate
+        cd $(WXDIR)\samples\dialogs
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\mdi
+!if "$(DNDSETUP)"==""
+        cd $(WXDIR)\samples\dnd
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\minimal
+!endif
+        cd $(WXDIR)\samples\docview
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\layout
+        cd $(WXDIR)\samples\docvwmdi
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\printing
+        cd $(WXDIR)\samples\drawing
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\toolbar
+        cd $(WXDIR)\samples\dynamic
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\dialogs
+        cd $(WXDIR)\samples\forty
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\docview
+        cd $(WXDIR)\samples\fractal
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\docvwmdi
+        cd $(WXDIR)\samples\grid
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\controls
+!if "$(NOMAKE)"==""
+        cd $(WXDIR)\samples\help
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\nativdlg
+        cd $(WXDIR)\samples\html
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\grid
+!endif
+!if "$(PNGSETUP)"==""
+        cd $(WXDIR)\samples\image
         nmake -f makefile.dos FINAL=$(FINAL)
+!endif
         cd $(WXDIR)\samples\internat
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\dnd
-        nmake -f makefile.dos FINAL=$(FINAL)
         cd $(WXDIR)\samples\joytest
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\taskbar
+        cd $(WXDIR)\samples\layout
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\sashtest
+        cd $(WXDIR)\samples\listctrl
+        nmake -f makefile.dos FINAL=$(FINAL)
+        cd $(WXDIR)\samples\mdi
         nmake -f makefile.dos FINAL=$(FINAL)
 !if "$(FINAL)" == "0"
         cd $(WXDIR)\samples\memcheck
+        nmake -f makefile.dos FINAL=$(FINAL)
+!endif
+!if "$(COMPIL)"==""
+        cd $(WXDIR)\samples\mfc
+        nmake -f makefile.dos FINAL=$(FINAL)
+!endif
+        cd $(WXDIR)\samples\minifram
+        nmake -f makefile.dos FINAL=$(FINAL)
+        cd $(WXDIR)\samples\minimal
+        nmake -f makefile.dos FINAL=$(FINAL)
+!if "$(ONLY32)"==""
+        cd $(WXDIR)\samples\nativdlg
+        nmake -f makefile.dos FINAL=$(FINAL)
 !endif
+        cd $(WXDIR)\samples\notebook
+        nmake -f makefile.dos FINAL=$(FINAL)
+!if "$(NOMAKE)"==""
+        cd $(WXDIR)\samples\oleauto
         nmake -f makefile.dos FINAL=$(FINAL)
+!endif
         cd $(WXDIR)\samples\ownerdrw
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\checklst
+!if "$(NOMAKE)"==""
+        cd $(WXDIR)\samples\png
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\minifram
+!endif
+        cd $(WXDIR)\samples\printing
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\bombs
+        cd $(WXDIR)\samples\proplist
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\fractal
+!if "$(NOMAKE)"==""
+        cd $(WXDIR)\samples\regtest
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\wxpoem
+!endif
+        cd $(WXDIR)\samples\resource
         nmake -f makefile.dos FINAL=$(FINAL)
+!if "$(NOMAKE)"==""
+        cd $(WXDIR)\samples\richedit
+        nmake -f makefile.dos FINAL=$(FINAL)
+        cd $(WXDIR)\samples\sashtest
+        nmake -f makefile.dos FINAL=$(FINAL)
+!endif
+!if "$(PNGSETUP)"==""
+        cd $(WXDIR)\samples\scroll
+        nmake -f makefile.dos FINAL=$(FINAL)
+!endif
+        cd $(WXDIR)\samples\splitter
+        nmake -f makefile.dos FINAL=$(FINAL)
+!if "$(COMPIL)"==""
+        cd $(WXDIR)\samples\tab
+        nmake -f makefile.dos FINAL=$(FINAL)
+        cd $(WXDIR)\samples\taskbar
+        nmake -f makefile.dos FINAL=$(FINAL)
+!endif
+        cd $(WXDIR)\samples\text
+        nmake -f makefile.dos FINAL=$(FINAL)
+!if "$(ONLY32)"==""
+        cd $(WXDIR)\samples\thread
+        nmake -f makefile.dos FINAL=$(FINAL)
+!endif
+        cd $(WXDIR)\samples\toolbar
+        nmake -f makefile.dos FINAL=$(FINAL)
+!if "$(PNGSETUP)"==""
+        cd $(WXDIR)\samples\treectrl
+        nmake -f makefile.dos FINAL=$(FINAL)
+!endif
+!if "$(COMPIL)"==""
         cd $(WXDIR)\samples\typetest
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\proplist
+!endif
+        cd $(WXDIR)\samples\validate
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\image
+!if "$(NOMAKE)"==""
+        cd $(WXDIR)\samples\wizard
         nmake -f makefile.dos FINAL=$(FINAL)
-        cd $(WXDIR)\samples\dde
+!endif
+        cd $(WXDIR)\samples\wxpoem
         nmake -f makefile.dos FINAL=$(FINAL)
-#        cd $(WXDIR)\samples\regtest
-#        nmake -f makefile.dos FINAL=$(FINAL)
-
+!if "$(COMPIL)"==""
+        cd $(WXDIR)\samples\wxsocket
+        nmake -f makefile.dos FINAL=$(FINAL)
+!endif
 clean:
-        cd $(WXDIR)\samples\splitter
-        nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\mdi
-        nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\minimal
+        cd $(WXDIR)\samples\bombs
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\layout
+        cd $(WXDIR)\samples\caret
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\printing
+        cd $(WXDIR)\samples\checklst
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\toolbar
+        cd $(WXDIR)\samples\config
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\dialogs
+        cd $(WXDIR)\samples\controls
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\resource
+        cd $(WXDIR)\samples\db
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\listctrl
+        cd $(WXDIR)\samples\dde
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\treectrl
+        cd $(WXDIR)\samples\dialogs
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\validate
+        cd $(WXDIR)\samples\dnd
         nmake -f makefile.dos clean
         cd $(WXDIR)\samples\docview
         nmake -f makefile.dos clean
         cd $(WXDIR)\samples\docvwmdi
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\controls
+        cd $(WXDIR)\samples\drawing
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\nativdlg
+        cd $(WXDIR)\samples\dynamic
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\forty
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\fractal
         nmake -f makefile.dos clean
         cd $(WXDIR)\samples\grid
         nmake -f makefile.dos clean
+!if "$(NOMAKE)"==""
+        cd $(WXDIR)\samples\help
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\html
+        nmake -f makefile.dos clean
+!endif
+        cd $(WXDIR)\samples\image
+        nmake -f makefile.dos clean
         cd $(WXDIR)\samples\internat
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\checklst
+        cd $(WXDIR)\samples\joytest
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\layout
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\listctrl
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\mdi
         nmake -f makefile.dos clean
+!if "$(FINAL)" == "0"
+        cd $(WXDIR)\samples\memcheck
+        nmake -f makefile.dos clean
+!endif
+        cd $(WXDIR)\samples\mfc
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\minifram
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\minimal
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\nativdlg
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\notebook
+        nmake -f makefile.dos clean
+!if "$(NOMAKE)"==""
+        cd $(WXDIR)\samples\oleauto
+        nmake -f makefile.dos clean
+!endif
         cd $(WXDIR)\samples\ownerdrw
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\dnd
+!if "$(NOMAKE)"==""
+        cd $(WXDIR)\samples\png
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\joytest
+!endif
+        cd $(WXDIR)\samples\printing
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\proplist
         nmake -f makefile.dos clean
+!if "$(NOMAKE)"==""
         cd $(WXDIR)\samples\regtest
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\taskbar
+!endif
+        cd $(WXDIR)\samples\resource
+        nmake -f makefile.dos clean
+!if "$(NOMAKE)"==""
+        cd $(WXDIR)\samples\richedit
         nmake -f makefile.dos clean
         cd $(WXDIR)\samples\sashtest
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\memcheck
+!endif
+        cd $(WXDIR)\samples\scroll
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\minifram
+        cd $(WXDIR)\samples\splitter
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\bombs
+        cd $(WXDIR)\samples\tab
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\fractal
+        cd $(WXDIR)\samples\taskbar
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\wxpoem
+        cd $(WXDIR)\samples\text
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\thread
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\toolbar
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\treectrl
         nmake -f makefile.dos clean
         cd $(WXDIR)\samples\typetest
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\proplist
+        cd $(WXDIR)\samples\validate
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\image
+!if "$(NOMAKE)"==""
+        cd $(WXDIR)\samples\wizard
         nmake -f makefile.dos clean
-        cd $(WXDIR)\samples\dde
+!endif
+        cd $(WXDIR)\samples\wxpoem
+        nmake -f makefile.dos clean
+        cd $(WXDIR)\samples\wxsocket
         nmake -f makefile.dos clean
 
index f1170311a5ae3019c2797495c5cd8b61c666e663..85df6b5b3a212510d5194217015fd0f44c927b33 100644 (file)
@@ -10,7 +10,7 @@
 
 WXDIR = $(WXWIN)
 
-TARGET=controls
+TARGET=text
 OBJECTS=$(TARGET).obj
 
 !include $(WXDIR)\src\makeprog.msc
index 137a57c87a6a7adc7f49d2a21a00d2b427c8189e..3b1d7fe0cdd75f33a89dfb1ec7b107c383749a5b 100644 (file)
@@ -131,6 +131,7 @@ COMMONOBJS = \
                $(COMMDIR)\odbc.obj \
                $(COMMDIR)\paper.obj \
                $(COMMDIR)\prntbase.obj \
+               $(COMMDIR)\process.obj \
                $(COMMDIR)\resource.obj \
                $(COMMDIR)\sizer.obj \
                $(COMMDIR)\strconv.obj \
@@ -910,6 +911,11 @@ $(COMMDIR)/prntbase.obj:     $*.$(SRCSUFF)
 $(CPPFLAGS) /Fo$@ /c /Tp $*.$(SRCSUFF)
 <<
 
+$(COMMDIR)/process.obj:     $*.$(SRCSUFF)
+        cl @<<
+$(CPPFLAGS) /Fo$@ /c /Tp $*.$(SRCSUFF)
+<<
+
 $(COMMDIR)/resource.obj:     $*.$(SRCSUFF)
         cl @<<
 $(CPPFLAGS) /Fo$@ /c /Tp $*.$(SRCSUFF)
index 8db2ed7b57ab5626595ab233ee712f298157c51e..f85ff1289622619f5b418e01161bbec12b011a39 100644 (file)
@@ -34,7 +34,9 @@
     #include "wx/wx.h"
 #endif
 
+#if defined(__WIN95__) && !defined(__TWIN32__)
 #include "wx/spinbutt.h"
+#endif
 #include "wx/msw/private.h"
 
 // ---------------------------------------------------------------------------