]> git.saurik.com Git - wxWidgets.git/commitdiff
Support precompiled headers
authorDavid Elliott <dfe@tgwbd.org>
Tue, 2 Sep 2003 19:03:22 +0000 (19:03 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Tue, 2 Sep 2003 19:03:22 +0000 (19:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23361 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

25 files changed:
src/cocoa/bitmap.mm
src/cocoa/brush.mm
src/cocoa/checkbox.mm
src/cocoa/checklst.mm
src/cocoa/choice.mm
src/cocoa/colour.mm
src/cocoa/cursor.mm
src/cocoa/dc.mm
src/cocoa/dcclient.mm
src/cocoa/dcmemory.mm
src/cocoa/dcscreen.cpp
src/cocoa/dialog.mm
src/cocoa/gauge.mm
src/cocoa/listbox.mm
src/cocoa/pen.mm
src/cocoa/radiobox.mm
src/cocoa/radiobut.mm
src/cocoa/slider.mm
src/cocoa/spinbutt.mm
src/cocoa/statbmp.mm
src/cocoa/statbox.mm
src/cocoa/statline2.mm
src/cocoa/stattext.mm
src/cocoa/textctrl.mm
src/cocoa/window.mm

index 1c6b4cb02177f91a7354e5b2f01943a034700a9a..c57e24e4f907f1afffd576e06c33254a28e2de9b 100644 (file)
@@ -9,12 +9,14 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/setup.h"
-#include "wx/utils.h"
-#include "wx/palette.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/log.h"
+    #include "wx/utils.h"
+    #include "wx/palette.h"
+    #include "wx/icon.h"
+#endif //WX_PRECOMP
 #include "wx/bitmap.h"
-#include "wx/icon.h"
-#include "wx/log.h"
 #include "wx/image.h"
 #include "wx/xpmdecod.h"
 
index 3735acb41b75243b7949763c3d8c87e4ed72cfa8..c58fd7604bb4abd2fad825f8346ab94106129ad0 100644 (file)
@@ -9,9 +9,11 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/setup.h"
-#include "wx/utils.h"
-#include "wx/brush.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/utils.h"
+    #include "wx/brush.h"
+#endif //WX_PRECOMP
 #include "wx/colour.h"
 
 #import <AppKit/NSColor.h>
index 90dd25fba123634750ad1ebfe00d8fd9dd8045e4..710a63b1f4bd918375a587fd806877006beddbb7 100644 (file)
@@ -9,9 +9,12 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
-#include "wx/checkbox.h"
-#include "wx/log.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/log.h"
+    #include "wx/app.h"
+    #include "wx/checkbox.h"
+#endif //WX_PRECOMP
 
 #include "wx/cocoa/autorelease.h"
 
index 1ddc6fc8d1c615712622d3b294198f58b2d5fcb8..abda41c2a4fed4a174b0c3767057e793dc20a128 100644 (file)
@@ -9,9 +9,12 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
-#include "wx/checklst.h"
-#include "wx/log.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/log.h"
+    #include "wx/app.h"
+    #include "wx/checklst.h"
+#endif //WX_PRECOMP
 
 IMPLEMENT_DYNAMIC_CLASS(wxCheckListBox, wxListBox)
 BEGIN_EVENT_TABLE(wxCheckListBox, wxCheckListBoxBase)
index dad736da5a66de964db10e624f5af6dad9e435aa..e7acfe020568a7bd68df555b5566181710573240 100644 (file)
@@ -9,9 +9,12 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
-#include "wx/choice.h"
-#include "wx/log.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/log.h"
+    #include "wx/app.h"
+    #include "wx/choice.h"
+#endif //WX_PRECOMP
 
 #import <AppKit/NSPopUpButton.h>
 
index c6b73d70f196ace5dabcfcaefb29c50d00950328..418043aa04fe3323620d5c0c4943caf43548c92c 100644 (file)
@@ -9,13 +9,17 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#import <AppKit/NSColor.h>
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+#endif //WX_PRECOMP
 
 #include "wx/gdicmn.h"
 #include "wx/colour.h"
 
 #include "wx/cocoa/autorelease.h"
 
+#import <AppKit/NSColor.h>
+
 IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
 
 wxColour::wxColour ()
index 93dee084c76f8adb3d7ddb42838597956bde0a3a..3b6d6abd7fb3180c57534a85f6b54f4687852087 100644 (file)
 #pragma implementation "cursor.h"
 #endif
 
-#include "wx/cursor.h"
-#include "wx/icon.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/icon.h"
+    #include "wx/cursor.h"
+#endif //WX_PRECOMP
 
 #if !USE_SHARED_LIBRARIES
 IMPLEMENT_DYNAMIC_CLASS(wxCursor, wxBitmap)
index cf80a9700eea2a2bb804d15d7efbf04bb8af60da..44762feba26796a9f25d9e50ffa1e54cfcf268d7 100644 (file)
@@ -9,8 +9,11 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/dc.h"
-#include "wx/log.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/log.h"
+    #include "wx/dc.h"
+#endif //WX_PRECOMP
 
 #include "wx/cocoa/autorelease.h"
 
index cfa266129a0c411f69be0443173e0339324136ca..fe3ec9eb850097b765d49f33f114e7e1041e099a 100644 (file)
@@ -9,9 +9,12 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/dcclient.h"
-#include "wx/window.h"
-#include "wx/log.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/log.h"
+    #include "wx/window.h"
+    #include "wx/dcclient.h"
+#endif //WX_PRECOMP
 
 #import <AppKit/NSView.h>
 #import <AppKit/NSAffineTransform.h>
index aead8b59e10eee62161882c26719f514787f848f..3bdb6dd67ea36c81833a1eb7c460c3e61620c1d8 100644 (file)
@@ -9,8 +9,11 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/dcmemory.h"
-#include "wx/log.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/log.h"
+    #include "wx/dcmemory.h"
+#endif //WX_PRECOMP
 
 #import <AppKit/NSImage.h>
 #import <AppKit/NSAffineTransform.h>
index ade3a4c0d876c1873cc9fe764f25b2fccb5a7536..50e5fa00f27d8a98f8c6afd984dd5da030e17777 100644 (file)
@@ -9,7 +9,10 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/dcscreen.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/dcscreen.h"
+#endif //WX_PRECOMP
 
 //-----------------------------------------------------------------------------
 // wxMemoryDC
index a2c3612bf588f6669598a3841874091ad7536848..a73f22e24453ee66f59af3bea5712f2ddde7bcaa 100644 (file)
@@ -9,10 +9,13 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/dialog.h"
-#include "wx/app.h"
-#include "wx/settings.h"
-#include "wx/log.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/log.h"
+    #include "wx/app.h"
+    #include "wx/dialog.h"
+    #include "wx/settings.h"
+#endif //WX_PRECOMP
 
 #include "wx/cocoa/autorelease.h"
 
index aafc5b6b76a717d373b79f18f5c24bb19d89aa5f..58eca4a6751f6637594e7ffdc5684a5dd40f0d68 100644 (file)
@@ -9,11 +9,13 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/setup.h"
+#include "wx/wxprec.h"
 #if wxUSE_GAUGE
 
-#include "wx/app.h"
-#include "wx/gauge.h"
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+    #include "wx/gauge.h"
+#endif //WX_PRECOMP
 
 #import <AppKit/NSProgressIndicator.h>
 
index 4d4cd0bf43e5066ad02f1e0d702be94a5e25019d..fe928079ffeae034ed70427e72b2627e6051f0e5 100644 (file)
@@ -9,9 +9,12 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
-#include "wx/listbox.h"
-#include "wx/log.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/log.h"
+    #include "wx/app.h"
+    #include "wx/listbox.h"
+#endif //WX_PRECOMP
 
 #include "wx/cocoa/string.h"
 #include "wx/cocoa/NSTableDataSource.h"
index 21c5865c3b9272862dc8b74b9418e64f4b4db38d..8872b82cec71dbf3125030b480b89e7ab8d1e5aa 100644 (file)
@@ -9,8 +9,10 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/setup.h"
-#include "wx/pen.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/pen.h"
+#endif //WX_PRECOMP
 #include "wx/bitmap.h"
 #include "wx/colour.h"
 
index 37cffde012cd28d18ab0a1f61480038e8be19f9d..ff0626e5c50b8907e3709fc8d51e38c2c3982b52 100644 (file)
@@ -9,8 +9,11 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
-#include "wx/radiobox.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+    #include "wx/radiobox.h"
+#endif //WX_PRECOMP
 
 #import <AppKit/NSView.h>
 
index 29e001cadff9492800181b3c95ea374b96be322a..f45413d919da99c27ac5ccde4c70d72d885644b3 100644 (file)
@@ -9,9 +9,12 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
-#include "wx/radiobut.h"
-#include "wx/log.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/log.h"
+    #include "wx/app.h"
+    #include "wx/radiobut.h"
+#endif //WX_PRECOMP
 
 #import <AppKit/NSButton.h>
 #include "wx/cocoa/string.h"
index f2fdeb9a83cb5e15e9261b6e6612f34e38e19379..4b6c6f6a7a8eb1d39d0dfc5fb1293bd935d5eb47 100644 (file)
@@ -9,11 +9,13 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/setup.h"
+#include "wx/wxprec.h"
 #if wxUSE_SLIDER
 
-#include "wx/app.h"
-#include "wx/slider.h"
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+    #include "wx/slider.h"
+#endif //WX_PRECOMP
 
 #import <AppKit/NSView.h>
 
index 60d3cd59ef6a56d3300fe40e1ae7e1ee3531a601..2a3cd8038d942d2d962e5f8c81542de878945fea 100644 (file)
@@ -9,10 +9,12 @@
 // Licence:    wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/setup.h"
+#include "wx/wxprec.h"
 #if wxUSE_SPINBTN
 
-#include "wx/app.h"
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+#endif //WX_PRECOMP
 #include "wx/spinbutt.h"
 
 #import <AppKit/NSStepper.h>
index f288054134e527a14c5a9f136e6b27e2a1d6ed41..f3de0e6478417b565e2884eeb08af562160c8559 100644 (file)
@@ -9,8 +9,11 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
-#include "wx/statbmp.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+    #include "wx/statbmp.h"
+#endif //WX_PRECOMP
 
 #import <AppKit/NSView.h>
 
index 00a22bc123ba94846934e6e60ebb6dd79740e91a..a54fc3fb4faa055ba5dc811ac4f97afd629cfe30 100644 (file)
@@ -9,8 +9,11 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
-#include "wx/statbox.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+    #include "wx/statbox.h"
+#endif //WX_PRECOMP
 
 #include "wx/cocoa/autorelease.h"
 
index b23deacc077af4c9dd1e35fd84eac020c59d004c..15472fb1ff5d9dd6a1829858bd08cfc5b1e4e0e2 100644 (file)
@@ -9,7 +9,10 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+#endif //WX_PRECOMP
 #include "wx/statline.h"
 
 #import <AppKit/NSBox.h>
index 29e247c9c962632a6a546a62fa8815bb020c0628..12a326714b4a6cadd0d27e6d88dabefa639b1a62 100644 (file)
@@ -9,8 +9,11 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
-#include "wx/stattext.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+    #include "wx/stattext.h"
+#endif //WX_PRECOMP
 
 #include "wx/cocoa/autorelease.h"
 
index 78c930b41e25eaea146ca39f03e66848fa5462fd..02114484bab6156a5fe49d0c1dc246bf0dccbae2 100644 (file)
@@ -9,8 +9,11 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/app.h"
-#include "wx/textctrl.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+    #include "wx/textctrl.h"
+#endif //WX_PRECOMP
 
 #include "wx/cocoa/string.h"
 
index b5d0aabd32999eb6ba379c18ef57f9069a45e6bb..0b0bb5ede7db21dcbd5a6236362feca4ffbdac7f 100644 (file)
@@ -9,8 +9,11 @@
 // Licence:    wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
-#include "wx/window.h"
-#include "wx/log.h"
+#include "wx/wxprec.h"
+#ifndef WX_PRECOMP
+    #include "wx/log.h"
+    #include "wx/window.h"
+#endif //WX_PRECOMP
 
 #include "wx/cocoa/autorelease.h"