]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/setup_inc.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/setup_inc.h
3 // Purpose: MSW-specific setup.h options
4 // Author: Vadim Zeitlin
5 // Created: 2007-07-21 (extracted from wx/msw/setup0.h)
6 // Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org>
7 // Licence: wxWindows licence
8 ///////////////////////////////////////////////////////////////////////////////
10 // ----------------------------------------------------------------------------
11 // Windows-only settings
12 // ----------------------------------------------------------------------------
14 // Set wxUSE_UNICODE_MSLU to 1 if you're compiling wxWidgets in Unicode mode
15 // and want to run your programs under Windows 9x and not only NT/2000/XP.
16 // This setting enables use of unicows.dll from MSLU (MS Layer for Unicode, see
17 // http://www.microsoft.com/globaldev/handson/dev/mslu_announce.mspx). Note
18 // that you will have to modify the makefiles to include unicows.lib import
19 // library as the first library (see installation instructions in install.txt
20 // to learn how to do it when building the library or samples).
22 // If your compiler doesn't have unicows.lib, you can get a version of it at
23 // http://libunicows.sourceforge.net
27 // Recommended setting: 0 (1 if you want to deploy Unicode apps on 9x systems)
28 #ifndef wxUSE_UNICODE_MSLU
29 #define wxUSE_UNICODE_MSLU 0
32 // Set this to 1 if you want to use wxWidgets and MFC in the same program. This
33 // will override some other settings (see below)
37 // Recommended setting: 0 unless you really have to use MFC
40 // Set this to 1 for generic OLE support: this is required for drag-and-drop,
41 // clipboard, OLE Automation. Only set it to 0 if your compiler is very old and
42 // can't compile/doesn't have the OLE headers.
46 // Recommended setting: 1
49 // Set this to 1 to enable wxAutomationObject class.
53 // Recommended setting: 1 if you need to control other applications via OLE
54 // Automation, can be safely set to 0 otherwise
55 #define wxUSE_OLE_AUTOMATION 1
57 // Set this to 1 to enable wxActiveXContainer class allowing to embed OLE
62 // Recommended setting: 1, required by wxMediaCtrl
63 #define wxUSE_ACTIVEX 1
65 // wxDC caching implementation
66 #define wxUSE_DC_CACHEING 1
68 // Set this to 1 to enable wxDIB class used internally for manipulating
71 // Default is 1, set it to 0 only if you don't use wxImage neither
73 // Recommended setting: 1 (without it conversion to/from wxImage won't work)
76 // Set to 0 to disable PostScript print/preview architecture code under Windows
77 // (just use Windows printing).
78 #define wxUSE_POSTSCRIPT_ARCHITECTURE_IN_MSW 1
80 // Set this to 1 to compile in wxRegKey class.
84 // Recommended setting: 1, this is used internally by wx in a few places
85 #define wxUSE_REGKEY 1
87 // Set this to 1 to use RICHEDIT controls for wxTextCtrl with style wxTE_RICH
88 // which allows to put more than ~32Kb of text in it even under Win9x (NT
89 // doesn't have such limitation).
91 // Default is 1 for compilers which support it
93 // Recommended setting: 1, only set it to 0 if your compiler doesn't have
94 // or can't compile <richedit.h>
95 #define wxUSE_RICHEDIT 1
97 // Set this to 1 to use extra features of richedit v2 and later controls
99 // Default is 1 for compilers which support it
101 // Recommended setting: 1
102 #define wxUSE_RICHEDIT2 1
104 // Set this to 1 to enable support for the owner-drawn menu and listboxes. This
105 // is required by wxUSE_CHECKLISTBOX.
109 // Recommended setting: 1, set to 0 for a small library size reduction
110 #define wxUSE_OWNER_DRAWN 1
112 // Set this to 1 to enable MSW-specific wxTaskBarIcon::ShowBalloon() method. It
113 // is required by native wxNotificationMessage implementation.
115 // Default is 1 but disabled in wx/msw/chkconf.h if SDK is too old to contain
116 // the necessary declarations.
118 // Recommended setting: 1, set to 0 for a tiny library size reduction
119 #define wxUSE_TASKBARICON_BALLOONS 1
121 // Set to 1 to compile MS Windows XP theme engine support
122 #define wxUSE_UXTHEME 1
124 // Set to 1 to use InkEdit control (Tablet PC), if available
125 #define wxUSE_INKEDIT 0
127 // Set to 1 to enable .INI files based wxConfig implementation (wxIniConfig)
131 // Recommended setting: 0, nobody uses .INI files any more
132 #define wxUSE_INICONF 0
134 // ----------------------------------------------------------------------------
135 // Generic versions of native controls
136 // ----------------------------------------------------------------------------
138 // Set this to 1 to be able to use wxDatePickerCtrlGeneric in addition to the
139 // native wxDatePickerCtrl
143 // Recommended setting: 0, this is mainly used for testing
144 #define wxUSE_DATEPICKCTRL_GENERIC 0
146 // Set this to 1 to be able to use wxTimePickerCtrlGeneric in addition to the
147 // native wxTimePickerCtrl for the platforms that have the latter (MSW).
151 // Recommended setting: 0, this is mainly used for testing
152 #define wxUSE_TIMEPICKCTRL_GENERIC 0
154 // ----------------------------------------------------------------------------
155 // Crash debugging helpers
156 // ----------------------------------------------------------------------------
158 // Set this to 1 to be able to use wxCrashReport::Generate() to create mini
159 // dumps of your program when it crashes (or at any other moment)
161 // Default is 1 if supported by the compiler (VC++ and recent BC++ only).
163 // Recommended setting: 1, set to 0 if your programs never crash
164 #define wxUSE_CRASHREPORT 1