]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: defs.h | |
3 | // Purpose: Declarations/definitions common to all wx source files | |
4 | // Author: Julian Smart and others | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) | |
3f4a0c5b | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_DEFS_H_ |
13 | #define _WX_DEFS_H_ | |
c801d85f KB |
14 | |
15 | #ifdef __GNUG__ | |
d22699b5 | 16 | #pragma interface "defs.h" |
c801d85f KB |
17 | #endif |
18 | ||
3f4a0c5b VZ |
19 | // ---------------------------------------------------------------------------- |
20 | // compiler and OS identification | |
21 | // ---------------------------------------------------------------------------- | |
c801d85f | 22 | |
b12915c1 VZ |
23 | // OS: first test for generic Unix defines, then for particular flavours and |
24 | // finally for Unix-like systems | |
f6bcfd97 BP |
25 | #if defined(__UNIX__) || defined(__unix) || defined(__unix__) || \ |
26 | defined(____SVR4____) || defined(__LINUX__) || defined(__sgi) || \ | |
91b8de8d | 27 | defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \ |
b12915c1 | 28 | defined(__EMX__) || defined(__VMS) || defined(__BEOS__) |
5b34447b | 29 | |
3fb98ddf | 30 | #define __UNIX_LIKE__ |
3f4a0c5b VZ |
31 | |
32 | // Helps SGI compilation, apparently | |
33 | #ifdef __SGI__ | |
34 | #ifdef __GNUG__ | |
35 | #define __need_wchar_t | |
36 | #else // !gcc | |
37 | // Note I use the term __SGI_CC__ for both cc and CC, its not a good | |
38 | // idea to mix gcc and cc/CC, the name mangling is different | |
39 | #define __SGI_CC__ | |
40 | #endif // gcc/!gcc | |
41 | #endif // SGI | |
42 | ||
43 | #if defined(sun) || defined(__SUN__) | |
44 | #ifndef __GNUG__ | |
45 | #ifndef __SUNCC__ | |
46 | #define __SUNCC__ | |
47 | #endif // Sun CC | |
48 | #endif | |
49 | #endif // Sun | |
5b34447b | 50 | |
f6bcfd97 BP |
51 | #ifdef __EMX__ |
52 | #define OS2EMX_PLAIN_CHAR | |
53 | #endif | |
54 | ||
03e11df5 | 55 | #if defined(__APPLE__) |
7ba4fbeb | 56 | // MacOS X |
03e11df5 GD |
57 | #ifndef __WXMAC__ |
58 | #define __WXMAC__ | |
59 | #endif | |
60 | #ifndef __WXMAC_X__ | |
61 | #define __WXMAC_X__ | |
62 | #endif | |
7ba4fbeb | 63 | |
03e11df5 GD |
64 | #define PM_USE_SESSION_APIS 0 |
65 | #include <Carbon/Carbon.h> | |
66 | #endif | |
7ba4fbeb VZ |
67 | #elif defined(applec) || \ |
68 | defined(THINK_C) || \ | |
69 | (defined(__MWERKS__) && !defined(__INTEL__)) | |
70 | // MacOS | |
03e11df5 | 71 | #elif defined(__WXMAC__) && defined(__APPLE__) |
7ba4fbeb | 72 | // MacOS X |
03e11df5 GD |
73 | #define __UNIX_LIKE__ |
74 | ||
75 | #ifndef __WXMAC__ | |
76 | #define __WXMAC__ | |
77 | #endif | |
78 | #ifndef __WXMAC_X__ | |
79 | #define __WXMAC_X__ | |
80 | #endif | |
7ba4fbeb | 81 | |
03e11df5 GD |
82 | #define PM_USE_SESSION_APIS 0 |
83 | #include <Carbon/Carbon.h> | |
1777b9bb DW |
84 | #elif defined(__OS2__) |
85 | #if defined(__IBMCPP__) | |
86 | #define __VISAGEAVER__ __IBMCPP__ | |
87 | #endif | |
88 | #ifndef __WXOS2__ | |
89 | #define __WXOS2__ | |
90 | #endif | |
91 | #ifndef __WXPM__ | |
92 | #define __WXPM__ | |
93 | #endif | |
d5d63453 | 94 | |
1777b9bb | 95 | // Place other OS/2 compiler environment defines here |
02b6f531 DW |
96 | #if defined(__VISAGECPP__) |
97 | // VisualAge is the only thing that understands _Optlink | |
98 | #define LINKAGEMODE _Optlink | |
99 | #endif | |
3f4a0c5b VZ |
100 | #else // Windows |
101 | #ifndef __WINDOWS__ | |
102 | #define __WINDOWS__ | |
103 | #endif // Windows | |
104 | ||
105 | // define another standard symbol for Microsoft Visual C++: the standard one | |
106 | // (_MSC_VER) is also defined by Metrowerks compiler | |
107 | #if defined(_MSC_VER) && !defined(__MWERKS__) | |
858f7d66 | 108 | #define __VISUALC__ _MSC_VER |
3f4a0c5b VZ |
109 | #elif defined(__BCPLUSPLUS__) && !defined(__BORLANDC__) |
110 | #define __BORLANDC__ | |
111 | #elif defined(__WATCOMC__) | |
112 | //#define __WATCOMC__ | |
113 | #elif defined(__SC__) | |
114 | #define __SYMANTECC__ | |
115 | #endif // compiler | |
116 | #endif // OS | |
5dcf05ae | 117 | |
d5d63453 VZ |
118 | // LINKAGEMODE mode is empty for everyting except OS/2 |
119 | #ifndef LINKAGEMODE | |
120 | #define LINKAGEMODE | |
121 | #endif // LINKAGEMODE | |
122 | ||
fd3f686c | 123 | // suppress some Visual C++ warnings |
3f4a0c5b | 124 | #ifdef __VISUALC__ |
197dd9af | 125 | # pragma warning(disable:4201) // nonstandard extension used: nameless struct/union |
539dae52 | 126 | # pragma warning(disable:4244) // conversion from double to float |
fd3f686c | 127 | # pragma warning(disable:4100) // unreferenced formal parameter |
a23fd0e1 VZ |
128 | # pragma warning(disable:4511) // copy ctor couldn't be generated |
129 | # pragma warning(disable:4512) // operator=() couldn't be generated | |
3ca6a5f0 | 130 | # pragma warning(disable:4699) // using precompiled header |
27a9bd48 | 131 | # pragma warning(disable:4134) // conversion between pointers to members of same class |
3ca6a5f0 | 132 | # pragma warning(disable:4710) // function not inlined |
197dd9af | 133 | #ifndef WIN32 |
27a9bd48 PA |
134 | # pragma warning(disable:4135) // conversion between different integral types |
135 | # pragma warning(disable:4769) // assignment of near pointer to long integer | |
197dd9af PA |
136 | // This one is really annoying, since it occurs for each cast to (HANDLE)... |
137 | # pragma warning(disable:4305) // truncation of long to near ptr | |
27a9bd48 | 138 | #endif |
539dae52 | 139 | #endif // __VISUALC__ |
c801d85f | 140 | |
a3ef5bf5 JS |
141 | // suppress some Salford C++ warnings |
142 | #ifdef __SALFORDC__ | |
143 | # pragma suppress 353 // Possible nested comments | |
144 | # pragma suppress 593 // Define not used | |
145 | # pragma suppress 61 // enum has no name (doesn't suppress!) | |
146 | # pragma suppress 106 // unnamed, unused parameter | |
147 | # pragma suppress 571 // Virtual function hiding | |
539dae52 VZ |
148 | #endif // __SALFORDC__ |
149 | ||
e90c1d2a VZ |
150 | #if defined(__VISUALC__) && !defined(WIN32) |
151 | // VC1.5 does not have LPTSTR type | |
152 | #define LPTSTR LPSTR | |
153 | #define LPCTSTR LPCSTR | |
154 | #endif // VC++ 1.5 | |
cc985fac | 155 | |
539dae52 | 156 | // Digital Unix C++ compiler only defines this symbol for .cxx and .hxx files, |
6cbe6d08 VZ |
157 | // so define it ourselves (newer versions do it for all files, though, and |
158 | // don't allow it to be redefined) | |
539dae52 | 159 | #ifdef __DECCXX |
6cbe6d08 VZ |
160 | #if !defined(__VMS) && !defined(__cplusplus) |
161 | #define __cplusplus | |
162 | #endif | |
539dae52 | 163 | #endif // __DECCXX |
a3ef5bf5 | 164 | |
e3f39499 | 165 | // Resolves linking problems under HP-UX |
5b34447b | 166 | #if defined(__HPUX__) && defined(__GNUG__) |
e3f39499 VZ |
167 | #define va_list __gnuc_va_list |
168 | #endif // HP-UX | |
2f78bd2c | 169 | |
d8c72298 | 170 | #if defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || defined( __CYGWIN__ ) |
068cfb66 VZ |
171 | #include "wx/msw/gccpriv.h" |
172 | #else | |
173 | #undef wxCHECK_W32API_VERSION | |
174 | #define wxCHECK_W32API_VERSION(maj, min) (0) | |
1c383dba | 175 | #endif |
e3f39499 | 176 | |
c801d85f KB |
177 | ////////////////////////////////////////////////////////////////////////////////// |
178 | // Currently Only MS-Windows/NT, XView and Motif are supported | |
179 | // | |
508203b0 | 180 | #if defined(__HPUX__) && !defined(__WXGTK__) |
3f480da3 | 181 | #ifndef __WXMOTIF__ |
508203b0 VZ |
182 | #define __WXMOTIF__ |
183 | #endif // __WXMOTIF__ | |
c801d85f | 184 | #endif |
508203b0 | 185 | |
2049ba38 | 186 | #if defined(__WXMOTIF__) |
508203b0 | 187 | #define __X__ |
c801d85f KB |
188 | #endif |
189 | ||
16ee7f42 | 190 | #ifdef __WXMSW__ |
8a84f3a0 VZ |
191 | |
192 | #if defined(_WIN32) || defined(WIN32) || defined(__NT__) | |
193 | #ifndef __WIN32__ | |
194 | #define __WIN32__ | |
634d3cc8 | 195 | #endif |
c801d85f KB |
196 | #endif |
197 | ||
5ea105e0 RR |
198 | #ifdef __WXWINE__ |
199 | #ifndef __WIN32__ | |
200 | #define __WIN32__ | |
201 | #endif | |
202 | #ifndef __WIN95__ | |
203 | #define __WIN95__ | |
204 | #endif | |
205 | #ifndef STRICT | |
206 | #define STRICT | |
207 | #endif | |
208 | #endif | |
209 | ||
c801d85f KB |
210 | #ifndef __WIN32__ |
211 | #define __WIN16__ | |
212 | #endif | |
213 | ||
214 | #if !defined(__WIN95__) && (WINVER >= 0x0400) | |
215 | #define __WIN95__ | |
216 | #endif | |
217 | ||
57c208c5 JS |
218 | #if defined(TWIN32) && !defined(__TWIN32__) |
219 | #define __TWIN32__ | |
220 | #endif | |
221 | ||
16ee7f42 VZ |
222 | #endif // wxMSW |
223 | ||
c801d85f | 224 | // Make sure the environment is set correctly |
2049ba38 | 225 | #if defined(__WXMSW__) && defined(__X__) |
ba6f401d | 226 | #error "Target can't be both X and Windows" |
e90c1d2a VZ |
227 | #elif !defined(__WXMOTIF__) && !defined(__WXMSW__) && !defined(__WXGTK__) && \ |
228 | !defined(__WXPM__) && !defined(__WXMAC__) && !defined(__X__) && \ | |
229 | !defined(__WXQT__) && !defined(__WXSTUBS__) && wxUSE_GUI | |
1777b9bb | 230 | #error "No Target! Use -D[__WXMOTIF__|__WXGTK__|__WXMSW__|__WXMAC__|__WXQT__|__WXPM__|__WXSTUBS__]" |
c801d85f KB |
231 | #endif |
232 | ||
d22699b5 VZ |
233 | // ---------------------------------------------------------------------------- |
234 | // wxWindows options | |
235 | // ---------------------------------------------------------------------------- | |
236 | ||
237 | #include <stddef.h> | |
238 | ||
239 | #include "wx/setup.h" | |
240 | ||
241 | // just in case they were defined in setup.h | |
659d096c | 242 | #ifdef PACKAGE |
d22699b5 | 243 | #undef PACKAGE |
659d096c JS |
244 | #endif |
245 | ||
246 | #ifdef VERSION | |
d22699b5 | 247 | #undef VERSION |
659d096c | 248 | #endif |
d22699b5 | 249 | |
e115e771 RR |
250 | // this has to be done after including setup.h which might |
251 | // define __HPUX__ 1 itself | |
252 | #if defined(__hpux) && !defined(__HPUX__) | |
253 | #define __HPUX__ | |
254 | #endif // HP-UX | |
255 | ||
b12915c1 | 256 | // if we're on a Unix system but didn't use configure (so that setup.h didn't |
3fb98ddf VZ |
257 | // define __UNIX__), do define __UNIX__ now |
258 | #if !defined(__UNIX__) && defined(__UNIX_LIKE__) | |
259 | #define __UNIX__ | |
260 | #endif // Unix | |
261 | ||
d22699b5 VZ |
262 | #include "wx/version.h" |
263 | ||
e90c1d2a VZ |
264 | // ---------------------------------------------------------------------------- |
265 | // compatibility defines | |
266 | // ---------------------------------------------------------------------------- | |
267 | ||
268 | // possibility to build non GUI apps is new, so don't burden ourselves with | |
269 | // compatibility code | |
270 | #if !wxUSE_GUI | |
271 | #undef WXWIN_COMPATIBILITY_2 | |
272 | #define WXWIN_COMPATIBILITY_2 0 | |
273 | #endif // !GUI | |
274 | ||
57493f9f VZ |
275 | // ============================================================================ |
276 | // non portable C++ features | |
277 | // ============================================================================ | |
278 | ||
279 | // ---------------------------------------------------------------------------- | |
280 | // check for native bool type and TRUE/FALSE constants | |
281 | // ---------------------------------------------------------------------------- | |
282 | ||
e90c1d2a VZ |
283 | // define boolean constants if not done yet |
284 | #ifndef TRUE | |
285 | #define TRUE 1 | |
286 | #endif | |
c801d85f | 287 | |
e90c1d2a VZ |
288 | #ifndef FALSE |
289 | #define FALSE 0 | |
290 | #endif | |
c801d85f | 291 | |
57493f9f VZ |
292 | // Add more tests here for Windows compilers that already define bool |
293 | // (under Unix, configure tests for this) | |
294 | #ifndef HAVE_BOOL | |
295 | #if defined( __MWERKS__ ) | |
585ae8cb | 296 | #if (__MWERKS__ >= 0x1000) && __option(bool) |
57493f9f VZ |
297 | #define HAVE_BOOL |
298 | #endif | |
299 | #elif defined(__VISUALC__) && (__VISUALC__ == 1020) | |
300 | // in VC++ 4.2 the bool keyword is reserved (hence can't be typedefed) | |
301 | // but not implemented, so we must #define it | |
302 | #define bool unsigned int | |
794005c0 JS |
303 | #elif defined(__VISUALC__) && (__VISUALC__ == 1010) |
304 | // For VisualC++ 4.1, we need to define | |
305 | // bool as something between 4.0 & 5.0... | |
306 | typedef unsigned int wxbool; | |
307 | #define bool wxbool | |
308 | #define HAVE_BOOL | |
57493f9f VZ |
309 | #elif defined(__VISUALC__) && (__VISUALC__ > 1020) |
310 | // VC++ supports bool since 4.2 | |
311 | #define HAVE_BOOL | |
312 | #elif defined(__BORLANDC__) && (__BORLANDC__ >= 0x500) | |
313 | // Borland 5.0+ supports bool | |
314 | #define HAVE_BOOL | |
315 | #elif defined(__WATCOMC__) && (__WATCOMC__ >= 1100) | |
316 | // Watcom 11+ supports bool | |
317 | #define HAVE_BOOL | |
6776a0b2 JS |
318 | #elif defined(__GNUWIN32__) |
319 | // Cygwin supports bool | |
320 | #define HAVE_BOOL | |
1777b9bb | 321 | #elif defined(__VISAGECPP__) |
51d7e4e7 DW |
322 | #if __IBMCPP__ < 400 |
323 | typedef unsigned long bool; | |
324 | #endif | |
1777b9bb | 325 | #define HAVE_BOOL |
57493f9f VZ |
326 | #endif // compilers |
327 | #endif // HAVE_BOOL | |
328 | ||
329 | #if !defined(HAVE_BOOL) && !defined(bool) | |
330 | // NB: of course, this doesn't replace the standard type, because, for | |
331 | // example, overloading based on bool/int parameter doesn't work and | |
332 | // so should be avoided in portable programs | |
aec34b46 JJ |
333 | #ifndef VMS |
334 | typedef unsigned int bool; | |
335 | #endif | |
57493f9f | 336 | #endif // bool |
c801d85f KB |
337 | |
338 | typedef short int WXTYPE; | |
42e69d6b VZ |
339 | |
340 | // special care should be taken with this type under Windows where the real | |
341 | // window id is unsigned, so we must always do the cast before comparing them | |
342 | // (or else they would be always different!). Usign wxGetWindowId() which does | |
343 | // the cast itself is recommended. Note that this type can't be unsigned | |
344 | // because -1 is a valid (and largely used) value for window id. | |
c801d85f KB |
345 | typedef int wxWindowID; |
346 | ||
347 | // Macro to cut down on compiler warnings. | |
348 | #if REMOVE_UNUSED_ARG | |
57493f9f | 349 | #define WXUNUSED(identifier) /* identifier */ |
c801d85f | 350 | #else // stupid, broken compiler |
57493f9f | 351 | #define WXUNUSED(identifier) identifier |
c801d85f KB |
352 | #endif |
353 | ||
6f2a55e3 VZ |
354 | // some arguments are only used in debug mode, but unused in release one |
355 | #ifdef __WXDEBUG__ | |
356 | #define WXUNUSED_UNLESS_DEBUG(param) param | |
357 | #else | |
358 | #define WXUNUSED_UNLESS_DEBUG(param) WXUNUSED(param) | |
359 | #endif | |
360 | ||
0661ec39 VZ |
361 | // ---------------------------------------------------------------------------- |
362 | // portable calling conventions macros | |
363 | // ---------------------------------------------------------------------------- | |
364 | ||
1222db72 VZ |
365 | // stdcall is used for all functions called by Windows under Windows |
366 | #ifdef __WINDOWS__ | |
367 | #if defined(__GNUWIN32__) | |
ba2d8605 | 368 | #define wxSTDCALL __attribute__((stdcall)) |
0661ec39 VZ |
369 | #else |
370 | // both VC++ and Borland understand this | |
ba2d8605 | 371 | #define wxSTDCALL _stdcall |
0661ec39 | 372 | #endif |
ba2d8605 | 373 | |
1222db72 VZ |
374 | #else // Win |
375 | // no such stupidness under Unix | |
376 | #define wxSTDCALL | |
377 | #endif // platform | |
378 | ||
379 | // wxCALLBACK should be used for the functions which are called back by | |
380 | // Windows (such as compare function for wxListCtrl) | |
381 | #if defined(__WIN32__) | |
382 | #define wxCALLBACK wxSTDCALL | |
0661ec39 | 383 | #else |
8f177c8e | 384 | // no stdcall under Unix nor Win16 |
0661ec39 VZ |
385 | #define wxCALLBACK |
386 | #endif // platform | |
387 | ||
388 | // callling convention for the qsort(3) callback | |
389 | ||
390 | #if defined(__VISUALC__) | |
391 | #define wxCMPFUNC_CONV _cdecl | |
392 | #elif defined(__VISAGECPP__) | |
393 | #define wxCMPFUNC_CONV _Optlink | |
394 | #else // !Visual C++ | |
395 | #define wxCMPFUNC_CONV | |
396 | #endif // compiler | |
397 | ||
398 | // compatibility :-( | |
399 | #define CMPFUNC_CONV wxCMPFUNC_CONV | |
400 | ||
401 | // ---------------------------------------------------------------------------- | |
402 | // Making or using wxWindows as a Windows DLL | |
403 | // ---------------------------------------------------------------------------- | |
c801d85f | 404 | |
1777b9bb | 405 | #if defined(__WXMSW__) |
c801d85f | 406 | |
f6bcfd97 BP |
407 | // __declspec works in BC++ 5 and later, as well as VC++ and gcc |
408 | #if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__GNUC__) | |
6f4968e2 GRG |
409 | # ifdef WXMAKINGDLL |
410 | # define WXDLLEXPORT __declspec( dllexport ) | |
411 | # define WXDLLEXPORT_DATA(type) __declspec( dllexport ) type | |
412 | # define WXDLLEXPORT_CTORFN | |
413 | # elif defined(WXUSINGDLL) | |
414 | # define WXDLLEXPORT __declspec( dllimport ) | |
415 | # define WXDLLEXPORT_DATA(type) __declspec( dllimport ) type | |
416 | # define WXDLLEXPORT_CTORFN | |
417 | # else | |
418 | # define WXDLLEXPORT | |
419 | # define WXDLLEXPORT_DATA(type) type | |
420 | # define WXDLLEXPORT_CTORFN | |
421 | # endif | |
f6bcfd97 BP |
422 | #else |
423 | # define WXDLLEXPORT | |
424 | # define WXDLLEXPORT_DATA(type) type | |
425 | # define WXDLLEXPORT_CTORFN | |
426 | #endif | |
6f4968e2 | 427 | |
1777b9bb DW |
428 | #elif defined(__WXPM__) |
429 | ||
f6bcfd97 BP |
430 | # if (!(defined(__VISAGECPP__) && (__IBMCPP__ < 400 || __IBMC__ < 400 ))) |
431 | ||
432 | # ifdef WXMAKINGDLL | |
433 | # define WXDLLEXPORT _Export | |
434 | # define WXDLLEXPORT_DATA(type) _Export type | |
435 | # define WXDLLEXPORT_CTORFN | |
436 | # elif defined(WXUSINGDLL) | |
437 | # define WXDLLEXPORT _Export | |
438 | # define WXDLLEXPORT_DATA(type) _Export type | |
439 | # define WXDLLEXPORT_CTORFN | |
440 | # else | |
441 | # define WXDLLEXPORT | |
442 | # define WXDLLEXPORT_DATA(type) type | |
443 | # define WXDLLEXPORT_CTORFN | |
444 | # endif | |
445 | ||
1777b9bb | 446 | # else |
f6bcfd97 | 447 | |
1777b9bb DW |
448 | # define WXDLLEXPORT |
449 | # define WXDLLEXPORT_DATA(type) type | |
450 | # define WXDLLEXPORT_CTORFN | |
f6bcfd97 | 451 | |
1777b9bb DW |
452 | # endif |
453 | ||
f6bcfd97 BP |
454 | #else // !(MSW or OS2) |
455 | ||
aed0ed3c JS |
456 | # define WXDLLEXPORT |
457 | # define WXDLLEXPORT_DATA(type) type | |
458 | # define WXDLLEXPORT_CTORFN | |
f6bcfd97 | 459 | |
c801d85f KB |
460 | #endif |
461 | ||
c801d85f KB |
462 | |
463 | // For ostream, istream ofstream | |
464 | #if defined(__BORLANDC__) && defined( _RTLDLL ) | |
465 | # define WXDLLIMPORT __import | |
466 | #else | |
467 | # define WXDLLIMPORT | |
468 | #endif | |
469 | ||
470 | class WXDLLEXPORT wxObject; | |
471 | class WXDLLEXPORT wxEvent; | |
472 | ||
c86f1403 | 473 | /** symbolic constant used by all Find()-like functions returning positive |
c801d85f | 474 | integer on success as failure indicator */ |
3c67202d | 475 | #define wxNOT_FOUND (-1) |
c801d85f | 476 | |
c801d85f | 477 | // ---------------------------------------------------------------------------- |
f6bcfd97 | 478 | // Very common macros |
c801d85f | 479 | // ---------------------------------------------------------------------------- |
f6bcfd97 BP |
480 | |
481 | // everybody gets the assert and other debug macros | |
482 | #include "wx/debug.h" | |
483 | ||
c801d85f | 484 | //@{ |
a3622daa VZ |
485 | /// delete pointer if it is not NULL and NULL it afterwards |
486 | // (checking that it's !NULL before passing it to delete is just a | |
487 | // a question of style, because delete will do it itself anyhow, but it might | |
488 | // be considered as an error by some overzealous debugging implementations of | |
489 | // the library, so we do it ourselves) | |
c67daf87 | 490 | #if defined(__SGI_CC__) |
d4b67f95 | 491 | // Okay this is bad styling, but the native SGI compiler is very picky, it |
c67daf87 | 492 | // wont let you compare/assign between a NULL (void *) and another pointer |
d4b67f95 RD |
493 | // type. To be really clean we'd need to pass in another argument, the type |
494 | // of p. | |
495 | // Also note the use of 0L, this would allow future possible 64bit support | |
496 | // (as yet untested) by ensuring that we zero all the bits in a pointer | |
497 | // (which is always the same length as a long (at least with the LP64 standard) | |
c67daf87 | 498 | // --- offer aug 98 |
d8260b2f | 499 | #define wxDELETE(p) if ( (p) ) { delete (p); p = 0L; } |
c67daf87 | 500 | #else |
d8260b2f | 501 | #define wxDELETE(p) if ( (p) != NULL ) { delete p; p = NULL; } |
c67daf87 | 502 | #endif /* __SGI__CC__ */ |
a3622daa VZ |
503 | |
504 | // delete an array and NULL it (see comments above) | |
c67daf87 UR |
505 | #if defined(__SGI_CC__) |
506 | // see above comment. | |
507 | #define wxDELETEA(p) if ( (p) ) { delete [] (p); p = 0L; } | |
508 | #else | |
d8260b2f | 509 | #define wxDELETEA(p) if ( ((void *) (p)) != NULL ) { delete [] p; p = NULL; } |
c67daf87 | 510 | #endif /* __SGI__CC__ */ |
c801d85f KB |
511 | |
512 | /// size of statically declared array | |
513 | #define WXSIZEOF(array) (sizeof(array)/sizeof(array[0])) | |
514 | ||
c801d85f KB |
515 | // ---------------------------------------------------------------------------- |
516 | // compiler specific settings | |
517 | // ---------------------------------------------------------------------------- | |
518 | ||
519 | // to allow compiling with warning level 4 under Microsoft Visual C++ some | |
520 | // warnings just must be disabled | |
521 | #ifdef __VISUALC__ | |
522 | #pragma warning(disable: 4514) // unreferenced inline func has been removed | |
d4b67f95 | 523 | /* |
c801d85f | 524 | you might be tempted to disable this one also: triggered by CHECK and FAIL |
3f4a0c5b VZ |
525 | macros in debug.h, but it's, overall, a rather useful one, so I leave it and |
526 | will try to find some way to disable this warning just for CHECK/FAIL. Anyone? | |
c801d85f KB |
527 | */ |
528 | #pragma warning(disable: 4127) // conditional expression is constant | |
c801d85f KB |
529 | #endif // VC++ |
530 | ||
3f4a0c5b VZ |
531 | #if defined(__MWERKS__) |
532 | #undef try | |
533 | #undef except | |
534 | #undef finally | |
535 | #define except(x) catch(...) | |
536 | #endif // Metrowerks | |
8a60ae88 | 537 | |
85ee3474 UU |
538 | // where should i put this? we need to make sure of this as it breaks |
539 | // the <iostream> code. | |
ea57084d | 540 | #if !wxUSE_IOSTREAMH && defined(__WXDEBUG__) |
f6bcfd97 BP |
541 | # ifndef __MWERKS__ |
542 | // #undef __WXDEBUG__ | |
543 | # ifdef wxUSE_DEBUG_NEW_ALWAYS | |
544 | # undef wxUSE_DEBUG_NEW_ALWAYS | |
545 | # define wxUSE_DEBUG_NEW_ALWAYS 0 | |
546 | # endif | |
547 | # endif | |
518f33a4 | 548 | #endif |
85ee3474 | 549 | |
c801d85f KB |
550 | // Callback function type definition |
551 | typedef void (*wxFunction) (wxObject&, wxEvent&); | |
552 | ||
329e86bf RR |
553 | // ---------------------------------------------------------------------------- |
554 | // OS mnemonics -- Identify the running OS (useful for Windows) | |
555 | // ---------------------------------------------------------------------------- | |
556 | ||
557 | // Not all platforms are currently available or supported | |
558 | enum | |
559 | { | |
b12915c1 VZ |
560 | wxUNKNOWN_PLATFORM, |
561 | wxCURSES, // Text-only CURSES | |
562 | wxXVIEW_X, // Sun's XView OpenLOOK toolkit | |
563 | wxMOTIF_X, // OSF Motif 1.x.x | |
564 | wxCOSE_X, // OSF Common Desktop Environment | |
565 | wxNEXTSTEP, // NeXTStep | |
566 | wxMACINTOSH, // Apple System 7 and 8 | |
567 | wxBEOS, // BeOS | |
568 | wxGTK, // GTK on X | |
569 | wxGTK_WIN32, // GTK on Win32 | |
570 | wxGTK_OS2, // GTK on OS/2 | |
571 | wxGTK_BEOS, // GTK on BeOS | |
572 | wxQT, // Qt | |
573 | wxGEOS, // GEOS | |
574 | wxOS2_PM, // OS/2 Workplace | |
575 | wxWINDOWS, // Windows or WfW | |
576 | wxPENWINDOWS, // Windows for Pen Computing | |
577 | wxWINDOWS_NT, // Windows NT | |
578 | wxWIN32S, // Windows 32S API | |
579 | wxWIN95, // Windows 95 | |
580 | wxWIN386, // Watcom 32-bit supervisor modus | |
581 | wxMGL_UNIX, // MGL with direct hardware access | |
582 | wxMGL_X, // MGL on X | |
583 | wxMGL_WIN32, // MGL on Win32 | |
584 | wxMGL_OS2, // MGL on OS/2 | |
bd3277fe VZ |
585 | wxWINDOWS_OS2, // Native OS/2 PM |
586 | wxUNIX // wxBase under Unix | |
329e86bf RR |
587 | }; |
588 | ||
d716d967 | 589 | // ---------------------------------------------------------------------------- |
72cdf4c9 | 590 | // standard wxWindows types |
d716d967 RR |
591 | // ---------------------------------------------------------------------------- |
592 | ||
72cdf4c9 VZ |
593 | // the type for screen and DC coordinates |
594 | ||
595 | #if wxUSE_COMPATIBLE_COORD_TYPES | |
596 | // to ensure compatibility with 2.0, we must use long | |
597 | #define wxCoord long | |
598 | #else // !wxUSE_COMPATIBLE_COORD_TYPES | |
599 | #ifdef __WIN16__ | |
600 | // under Win16, int is too small, so use long to allow for bigger | |
601 | // virtual canvases | |
602 | typedef long wxCoord; | |
603 | #else // !Win16 | |
604 | // other platforms we support have at least 32bit int - quite enough | |
605 | typedef int wxCoord; | |
606 | #endif // Win16/!Win16 | |
607 | #endif // wxUSE_COMPATIBLE_COORD_TYPES/!wxUSE_COMPATIBLE_COORD_TYPES | |
608 | ||
d716d967 RR |
609 | // fixed length types |
610 | ||
56d7679d | 611 | #define wxInt8 char signed |
bac507e0 | 612 | #define wxUint8 char unsigned |
d716d967 RR |
613 | |
614 | #ifdef __WIN16__ | |
bac507e0 DW |
615 | #define wxInt16 int signed |
616 | #define wxUint16 int unsigned | |
617 | #define wxInt32 long signed | |
618 | #define wxUint32 long unsigned | |
d716d967 RR |
619 | #endif |
620 | ||
621 | #ifdef __WIN32__ | |
bac507e0 DW |
622 | #define wxInt16 short signed |
623 | #define wxUint16 short unsigned | |
624 | #define wxInt32 int signed | |
625 | #define wxUint32 int unsigned | |
d716d967 RR |
626 | #endif |
627 | ||
628 | #ifdef __WXMAC__ | |
bac507e0 DW |
629 | #define wxInt16 short signed |
630 | #define wxUint16 short unsigned | |
631 | #define wxInt32 int signed | |
632 | #define wxUint32 int unsigned | |
d716d967 RR |
633 | #endif |
634 | ||
635 | #ifdef __WXOS2__ | |
bac507e0 DW |
636 | #define wxInt16 short signed |
637 | #define wxUint16 short unsigned | |
638 | #define wxInt32 int signed | |
639 | #define wxUint32 int unsigned | |
d716d967 RR |
640 | #endif |
641 | ||
642 | #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXOS2__) | |
643 | #if defined(SIZEOF_INT) | |
329e86bf | 644 | /* well, this shouldn't happen... */ |
bac507e0 DW |
645 | #define wxInt16 short signed |
646 | #define wxUint16 short unsigned | |
647 | #define wxInt32 int signed | |
648 | #define wxUint32 int unsigned | |
d716d967 | 649 | #else |
bac507e0 DW |
650 | #define wxInt16 short signed |
651 | #define wxUint16 short unsigned | |
652 | #define wxInt32 int signed | |
653 | #define wxUint32 int unsigned | |
d716d967 RR |
654 | #endif |
655 | #endif | |
656 | ||
56d7679d | 657 | #define wxByte wxUint8 |
bac507e0 | 658 | #define wxWord wxUint16 |
d716d967 | 659 | |
43543d98 | 660 | // base floating point types |
7c74e7fe SC |
661 | // wxFloat32 : 32 bit IEEE float ( 1 sign , 8 exponent bits , 23 fraction bits |
662 | // wxFloat64 : 64 bit IEEE float ( 1 sign , 11 exponent bits , 52 fraction bits | |
663 | // wxDouble : native fastest representation that has at least wxFloat64 | |
664 | // precision, so use the IEEE types for storage , and this for calculations | |
665 | ||
43543d98 DW |
666 | typedef float wxFloat32 ; |
667 | #if defined( __WXMAC__ ) && defined (__MWERKS__) | |
f608bc67 | 668 | typedef short double wxFloat64; |
7c74e7fe | 669 | #else |
f608bc67 | 670 | typedef double wxFloat64; |
7c74e7fe SC |
671 | #endif |
672 | ||
43543d98 | 673 | #if defined( __WXMAC__ ) && !defined( __POWERPC__ ) |
20d9661c | 674 | typedef long double wxDouble; |
7c74e7fe | 675 | #else |
20d9661c | 676 | typedef double wxDouble ; |
7c74e7fe SC |
677 | #endif |
678 | ||
72cdf4c9 VZ |
679 | // ---------------------------------------------------------------------------- |
680 | // byte ordering related definition and macros | |
681 | // ---------------------------------------------------------------------------- | |
682 | ||
d716d967 RR |
683 | // byte sex |
684 | ||
685 | #define wxBIG_ENDIAN 4321 | |
686 | #define wxLITTLE_ENDIAN 1234 | |
687 | #define wxPDP_ENDIAN 3412 | |
688 | ||
689 | #ifdef WORDS_BIGENDIAN | |
690 | #define wxBYTE_ORDER wxBIG_ENDIAN | |
691 | #else | |
692 | #define wxBYTE_ORDER wxLITTLE_ENDIAN | |
693 | #endif | |
694 | ||
695 | // byte swapping | |
696 | ||
7c74e7fe SC |
697 | #if defined (__MWERKS__) && ( (__MWERKS__ < 0x0900) || macintosh ) |
698 | // assembler versions for these | |
699 | #ifdef __POWERPC__ | |
f608bc67 VZ |
700 | inline wxUint16 wxUINT16_SWAP_ALWAYS( wxUint16 i ) |
701 | {return (__lhbrx( &i , 0 ) ) ;} | |
702 | inline wxInt16 wxINT16_SWAP_ALWAYS( wxInt16 i ) | |
703 | {return (__lhbrx( &i , 0 ) ) ;} | |
704 | inline wxUint32 wxUINT32_SWAP_ALWAYS( wxUint32 i ) | |
705 | {return (__lwbrx( &i , 0 ) ) ;} | |
706 | inline wxInt32 wxINT32_SWAP_ALWAYS( wxInt32 i ) | |
707 | {return (__lwbrx( &i , 0 ) ) ;} | |
7c74e7fe | 708 | #else |
f608bc67 VZ |
709 | #pragma parameter __D0 wxUINT16_SWAP_ALWAYS(__D0) |
710 | pascal wxUint16 wxUINT16_SWAP_ALWAYS(wxUint16 value) | |
711 | = { 0xE158 }; | |
712 | ||
713 | #pragma parameter __D0 wxINT16_SWAP_ALWAYS(__D0) | |
a02bb143 | 714 | pascal wxInt16 wxINT16_SWAP_ALWAYS(wxInt16 value) |
f608bc67 VZ |
715 | = { 0xE158 }; |
716 | ||
717 | #pragma parameter __D0 wxUINT32_SWAP_ALWAYS (__D0) | |
718 | pascal wxUint32 wxUINT32_SWAP_ALWAYS(wxUint32 value) | |
719 | = { 0xE158, 0x4840, 0xE158 }; | |
720 | ||
721 | #pragma parameter __D0 wxINT32_SWAP_ALWAYS (__D0) | |
a02bb143 | 722 | pascal wxInt32 wxINT32_SWAP_ALWAYS(wxInt32 value) |
f608bc67 | 723 | = { 0xE158, 0x4840, 0xE158 }; |
7c74e7fe SC |
724 | |
725 | #endif | |
726 | #else // !MWERKS | |
d716d967 RR |
727 | #define wxUINT16_SWAP_ALWAYS(val) \ |
728 | ((wxUint16) ( \ | |
729 | (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \ | |
730 | (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8))) | |
bac507e0 | 731 | |
d716d967 RR |
732 | #define wxINT16_SWAP_ALWAYS(val) \ |
733 | ((wxInt16) ( \ | |
7e2c43b8 RR |
734 | (((wxUint16) (val) & (wxUint16) 0x00ffU) << 8) | \ |
735 | (((wxUint16) (val) & (wxUint16) 0xff00U) >> 8))) | |
bac507e0 | 736 | |
d716d967 RR |
737 | #define wxUINT32_SWAP_ALWAYS(val) \ |
738 | ((wxUint32) ( \ | |
739 | (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \ | |
740 | (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \ | |
741 | (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \ | |
742 | (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24))) | |
743 | ||
744 | #define wxINT32_SWAP_ALWAYS(val) \ | |
745 | ((wxInt32) ( \ | |
7e2c43b8 RR |
746 | (((wxUint32) (val) & (wxUint32) 0x000000ffU) << 24) | \ |
747 | (((wxUint32) (val) & (wxUint32) 0x0000ff00U) << 8) | \ | |
748 | (((wxUint32) (val) & (wxUint32) 0x00ff0000U) >> 8) | \ | |
749 | (((wxUint32) (val) & (wxUint32) 0xff000000U) >> 24))) | |
7c74e7fe | 750 | #endif |
d716d967 RR |
751 | // machine specific byte swapping |
752 | ||
753 | #ifdef WORDS_BIGENDIAN | |
7e2c43b8 RR |
754 | #define wxUINT16_SWAP_ON_BE(val) wxUINT16_SWAP_ALWAYS(val) |
755 | #define wxINT16_SWAP_ON_BE(val) wxINT16_SWAP_ALWAYS(val) | |
756 | #define wxUINT16_SWAP_ON_LE(val) (val) | |
757 | #define wxINT16_SWAP_ON_LE(val) (val) | |
758 | #define wxUINT32_SWAP_ON_BE(val) wxUINT32_SWAP_ALWAYS(val) | |
759 | #define wxINT32_SWAP_ON_BE(val) wxINT32_SWAP_ALWAYS(val) | |
760 | #define wxUINT32_SWAP_ON_LE(val) (val) | |
761 | #define wxINT32_SWAP_ON_LE(val) (val) | |
d716d967 | 762 | #else |
7e2c43b8 RR |
763 | #define wxUINT16_SWAP_ON_LE(val) wxUINT16_SWAP_ALWAYS(val) |
764 | #define wxINT16_SWAP_ON_LE(val) wxINT16_SWAP_ALWAYS(val) | |
765 | #define wxUINT16_SWAP_ON_BE(val) (val) | |
766 | #define wxINT16_SWAP_ON_BE(val) (val) | |
767 | #define wxUINT32_SWAP_ON_LE(val) wxUINT32_SWAP_ALWAYS(val) | |
768 | #define wxINT32_SWAP_ON_LE(val) wxINT32_SWAP_ALWAYS(val) | |
769 | #define wxUINT32_SWAP_ON_BE(val) (val) | |
770 | #define wxINT32_SWAP_ON_BE(val) (val) | |
d716d967 RR |
771 | #endif |
772 | ||
d597fcb7 RR |
773 | // ---------------------------------------------------------------------------- |
774 | // Geometric flags | |
775 | // ---------------------------------------------------------------------------- | |
776 | ||
777 | enum wxGeometryCentre | |
778 | { | |
779 | wxCENTRE = 0x0001, | |
780 | wxCENTER = wxCENTRE | |
781 | }; | |
782 | ||
783 | // centering into frame rather than screen (obsolete) | |
784 | #define wxCENTER_FRAME 0x0000 | |
785 | // centre on screen rather than parent | |
786 | #define wxCENTRE_ON_SCREEN 0x0002 | |
787 | #define wxCENTER_ON_SCREEN wxCENTRE_ON_SCREEN | |
788 | ||
789 | enum wxOrientation | |
790 | { | |
791 | wxHORIZONTAL = 0x0004, | |
792 | wxVERTICAL = 0x0008, | |
2f78bd2c | 793 | |
d597fcb7 RR |
794 | wxBOTH = (wxVERTICAL | wxHORIZONTAL) |
795 | }; | |
796 | ||
797 | enum wxDirection | |
798 | { | |
799 | wxLEFT = 0x0010, | |
800 | wxRIGHT = 0x0020, | |
801 | wxUP = 0x0040, | |
802 | wxDOWN = 0x0080, | |
2f78bd2c | 803 | |
d597fcb7 RR |
804 | wxTOP = wxUP, |
805 | wxBOTTOM = wxDOWN, | |
2f78bd2c | 806 | |
d597fcb7 RR |
807 | wxNORTH = wxUP, |
808 | wxSOUTH = wxDOWN, | |
809 | wxWEST = wxLEFT, | |
810 | wxEAST = wxRIGHT, | |
2f78bd2c | 811 | |
d597fcb7 RR |
812 | wxALL = (wxUP | wxDOWN | wxRIGHT | wxLEFT) |
813 | }; | |
814 | ||
815 | enum wxAlignment | |
816 | { | |
817 | wxALIGN_NOT = 0x0000, | |
be2577e4 RD |
818 | wxALIGN_CENTER_HORIZONTAL = 0x0100, |
819 | wxALIGN_CENTRE_HORIZONTAL = wxALIGN_CENTER_HORIZONTAL, | |
d597fcb7 RR |
820 | wxALIGN_LEFT = wxALIGN_NOT, |
821 | wxALIGN_TOP = wxALIGN_NOT, | |
822 | wxALIGN_RIGHT = 0x0200, | |
be2577e4 RD |
823 | wxALIGN_BOTTOM = 0x0400, |
824 | wxALIGN_CENTER_VERTICAL = 0x0800, | |
825 | wxALIGN_CENTRE_VERTICAL = wxALIGN_CENTER_VERTICAL, | |
826 | ||
827 | wxALIGN_CENTER = (wxALIGN_CENTER_HORIZONTAL | wxALIGN_CENTER_VERTICAL), | |
828 | wxALIGN_CENTRE = wxALIGN_CENTER | |
d597fcb7 RR |
829 | }; |
830 | ||
831 | enum wxStretch | |
832 | { | |
833 | wxSTRETCH_NOT = 0x0000, | |
834 | wxSHRINK = 0x1000, | |
835 | wxGROW = 0x2000, | |
be2577e4 | 836 | wxEXPAND = wxGROW, |
15ba5c27 VZ |
837 | wxSHAPED = 0x4000, |
838 | wxADJUST_MINSIZE = 0x8000 | |
d597fcb7 RR |
839 | }; |
840 | ||
d716d967 RR |
841 | // ---------------------------------------------------------------------------- |
842 | // Window style flags | |
843 | // ---------------------------------------------------------------------------- | |
844 | ||
c801d85f | 845 | /* |
c801d85f KB |
846 | * Values are chosen so they can be |'ed in a bit list. |
847 | * Some styles are used across more than one group, | |
848 | * so the values mustn't clash with others in the group. | |
849 | * Otherwise, numbers can be reused across groups. | |
850 | * | |
851 | * From version 1.66: | |
852 | * Window (cross-group) styles now take up the first half | |
853 | * of the flag, and control-specific styles the | |
854 | * second half. | |
d4b67f95 | 855 | * |
c801d85f KB |
856 | */ |
857 | ||
858 | /* | |
859 | * Window (Frame/dialog/subwindow/panel item) style flags | |
860 | */ | |
329e86bf RR |
861 | #define wxVSCROLL 0x80000000 |
862 | #define wxHSCROLL 0x40000000 | |
863 | #define wxCAPTION 0x20000000 | |
c801d85f KB |
864 | |
865 | // New styles | |
329e86bf RR |
866 | #define wxDOUBLE_BORDER 0x10000000 |
867 | #define wxSUNKEN_BORDER 0x08000000 | |
868 | #define wxRAISED_BORDER 0x04000000 | |
869 | #define wxBORDER 0x02000000 | |
870 | #define wxSIMPLE_BORDER wxBORDER | |
871 | #define wxSTATIC_BORDER 0x01000000 | |
872 | #define wxTRANSPARENT_WINDOW 0x00100000 | |
873 | #define wxNO_BORDER 0x00200000 | |
874 | ||
d80cd92a VZ |
875 | // Override CTL3D etc. control colour processing to allow own background |
876 | // colour. | |
877 | // OBSOLETE - use wxNO_3D instead | |
329e86bf | 878 | #define wxUSER_COLOURS 0x00800000 |
d80cd92a | 879 | // Override CTL3D or native 3D styles for children |
329e86bf | 880 | #define wxNO_3D 0x00800000 |
d80cd92a VZ |
881 | |
882 | // Clip children when painting, which reduces flicker in e.g. frames and | |
883 | // splitter windows, but can't be used in a panel where a static box must be | |
884 | // 'transparent' (panel paints the background for it) | |
329e86bf | 885 | #define wxCLIP_CHILDREN 0x00400000 |
d11bb14f JS |
886 | // Note we're reusing the wxCAPTION style because we won't need captions |
887 | // for subwindows/controls | |
888 | #define wxCLIP_SIBLINGS 0x20000000 | |
c801d85f | 889 | |
d80cd92a VZ |
890 | // Add this style to a panel to get tab traversal working outside of dialogs |
891 | // (on by default for wxPanel, wxDialog, wxScrolledWindow) | |
329e86bf | 892 | #define wxTAB_TRAVERSAL 0x00080000 |
c801d85f | 893 | |
9bf84618 VZ |
894 | // Add this style if the control wants to get all keyboard messages (under |
895 | // Windows, it won't normally get the dialog navigation key events) | |
329e86bf | 896 | #define wxWANTS_CHARS 0x00040000 |
9bf84618 | 897 | |
329e86bf | 898 | // Make window retained (mostly Motif, I think) |
d9ea011f | 899 | #define wxRETAINED 0x00020000 |
329e86bf | 900 | #define wxBACKINGSTORE wxRETAINED |
c801d85f | 901 | |
d9ea011f VZ |
902 | // don't invalidate the whole window (resulting in a PAINT event) when the |
903 | // window is resized (currently, makes sense for wxMSW only) | |
193fe989 | 904 | #define wxNO_FULL_REPAINT_ON_RESIZE 0x00010000 |
d80cd92a VZ |
905 | |
906 | /* | |
907 | * Extra window style flags (use wxWS_EX prefix to make it clear that they | |
908 | * should be passed to wxWindow::SetExtraStyle(), not SetWindowStyle()) | |
909 | */ | |
910 | ||
911 | // by default, TransferDataTo/FromWindow() only work on direct children of the | |
912 | // window (compatible behaviour), set this flag to make them recursively | |
913 | // descend into all subwindows | |
914 | #define wxWS_EX_VALIDATE_RECURSIVELY 0x00000001 | |
915 | ||
c801d85f | 916 | /* |
329e86bf | 917 | * wxFrame/wxDialog style flags |
c801d85f | 918 | */ |
3f4a0c5b VZ |
919 | #define wxSTAY_ON_TOP 0x8000 |
920 | #define wxICONIZE 0x4000 | |
921 | #define wxMINIMIZE wxICONIZE | |
922 | #define wxMAXIMIZE 0x2000 | |
f6bcfd97 | 923 | // free value: 0x1000 |
3f480da3 | 924 | #define wxSYSTEM_MENU 0x0800 |
3f4a0c5b VZ |
925 | #define wxMINIMIZE_BOX 0x0400 |
926 | #define wxMAXIMIZE_BOX 0x0200 | |
927 | #define wxTINY_CAPTION_HORIZ 0x0100 | |
928 | #define wxTINY_CAPTION_VERT 0x0080 | |
3f4a0c5b | 929 | #define wxRESIZE_BORDER 0x0040 |
f6bcfd97 | 930 | |
b3daa5a3 VZ |
931 | #define wxDIALOG_NO_PARENT 0x0001 // Don't make owned by apps top window |
932 | #define wxFRAME_NO_TASKBAR 0x0002 // No taskbar button (MSW only) | |
933 | #define wxFRAME_TOOL_WINDOW 0x0004 // No taskbar button, no system menu | |
934 | ||
f6bcfd97 BP |
935 | // deprecated versions defined for compatibility reasons |
936 | #define wxRESIZE_BOX wxMAXIMIZE_BOX | |
937 | #define wxTHICK_FRAME wxRESIZE_BORDER | |
938 | ||
b3daa5a3 | 939 | // obsolete styles, unused any more |
3f4a0c5b VZ |
940 | #define wxDIALOG_MODAL 0x0020 |
941 | #define wxDIALOG_MODELESS 0x0000 | |
f6bcfd97 | 942 | |
b0a6bb75 VZ |
943 | // deprecated flag, don't use any more, defined for compatibility only |
944 | #define wxFRAME_FLOAT_ON_PARENT 0 | |
c801d85f | 945 | |
b96340e6 JS |
946 | // Context-sensitive help |
947 | #define wxFRAME_EX_CONTEXTHELP 0x00000004 | |
948 | #define wxDIALOG_EX_CONTEXTHELP 0x00000004 | |
949 | ||
df61c009 JS |
950 | /* |
951 | * MDI parent frame style flags | |
952 | * Can overlap with some of the above. | |
953 | */ | |
954 | ||
955 | #define wxFRAME_NO_WINDOW_MENU 0x0100 | |
c801d85f KB |
956 | |
957 | #if WXWIN_COMPATIBILITY | |
958 | #define wxDEFAULT_FRAME wxDEFAULT_FRAME_STYLE | |
959 | #endif | |
960 | ||
329e86bf | 961 | #define wxDEFAULT_FRAME_STYLE \ |
f6bcfd97 BP |
962 | (wxSYSTEM_MENU | wxRESIZE_BORDER | \ |
963 | wxMINIMIZE_BOX | wxMAXIMIZE_BOX | \ | |
964 | wxCAPTION | wxCLIP_CHILDREN) | |
aa64626e KB |
965 | |
966 | #ifdef __WXMSW__ | |
f6bcfd97 | 967 | # define wxDEFAULT_DIALOG_STYLE (wxSYSTEM_MENU | wxCAPTION) |
aa64626e | 968 | #else |
f6bcfd97 BP |
969 | // Under Unix, the dialogs don't have a system menu. Specifying wxSYSTEM_MENU |
970 | // here will make a close button appear. | |
971 | # define wxDEFAULT_DIALOG_STYLE wxCAPTION | |
aa64626e KB |
972 | #endif |
973 | ||
c801d85f | 974 | /* |
329e86bf | 975 | * wxExtDialog style flags |
c801d85f | 976 | */ |
329e86bf RR |
977 | #define wxED_CLIENT_MARGIN 0x0004 |
978 | #define wxED_BUTTONS_BOTTOM 0x0000 // has no effect | |
979 | #define wxED_BUTTONS_RIGHT 0x0002 | |
980 | #define wxED_STATIC_LINE 0x0001 | |
981 | ||
982 | #if defined(__WXMSW__) || defined(__WXMAC__) | |
983 | # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN) | |
984 | #else | |
985 | # define wxEXT_DIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxED_CLIENT_MARGIN|wxED_STATIC_LINE) | |
986 | #endif | |
c801d85f KB |
987 | |
988 | /* | |
989 | * wxToolBar style flags | |
990 | */ | |
5d5b3a40 RR |
991 | #define wxTB_HORIZONTAL wxHORIZONTAL |
992 | #define wxTB_VERTICAL wxVERTICAL | |
993 | #define wxTB_3DBUTTONS 0x0010 | |
858b5bdd | 994 | // Flatbar/Coolbar under Win98/ GTK 1.2 |
5d5b3a40 | 995 | #define wxTB_FLAT 0x0020 |
858b5bdd | 996 | // use native docking under GTK |
5d5b3a40 | 997 | #define wxTB_DOCKABLE 0x0040 |
c801d85f KB |
998 | |
999 | /* | |
3502e687 | 1000 | * wxMenuBar style flags |
c801d85f | 1001 | */ |
3502e687 RR |
1002 | // use native docking |
1003 | #define wxMB_DOCKABLE 0x0001 | |
1004 | ||
ae53c98c KB |
1005 | /* |
1006 | * wxMenu style flags | |
1007 | */ | |
1008 | #define wxMENU_TEAROFF 0x0001 | |
d4b67f95 | 1009 | |
3502e687 RR |
1010 | /* |
1011 | * Apply to all panel items | |
1012 | */ | |
c801d85f | 1013 | #define wxCOLOURED 0x0800 |
c801d85f | 1014 | #define wxFIXED_LENGTH 0x0400 |
c801d85f KB |
1015 | |
1016 | /* | |
1017 | * Styles for wxListBox | |
1018 | */ | |
c801d85f | 1019 | #define wxLB_SORT 0x0010 |
9c331ded | 1020 | #define wxLB_SINGLE 0x0020 |
c801d85f KB |
1021 | #define wxLB_MULTIPLE 0x0040 |
1022 | #define wxLB_EXTENDED 0x0080 | |
1023 | // wxLB_OWNERDRAW is Windows-only | |
1024 | #define wxLB_OWNERDRAW 0x0100 | |
9c331ded JS |
1025 | #define wxLB_NEEDED_SB 0x0200 |
1026 | #define wxLB_ALWAYS_SB 0x0400 | |
c801d85f KB |
1027 | #define wxLB_HSCROLL wxHSCROLL |
1028 | ||
1029 | /* | |
1030 | * wxTextCtrl style flags | |
1031 | */ | |
c857185c VZ |
1032 | // the flag bits 0x0001, 2, 4 and 8 are free but should be used only for the |
1033 | // things which don't make sense for a text control used by wxTextEntryDialog | |
1034 | // because they would otherwise conflict with wxOK, wxCANCEL, wxCENTRE | |
c801d85f KB |
1035 | #define wxTE_READONLY 0x0010 |
1036 | #define wxTE_MULTILINE 0x0020 | |
2004484f | 1037 | #define wxTE_PROCESS_TAB 0x0040 |
c49245f8 VZ |
1038 | // this style means to use RICHEDIT control and does something only under wxMSW |
1039 | // and Win32 and is silently ignored under all other platforms | |
1040 | #define wxTE_RICH 0x0080 | |
b70ababc | 1041 | #define wxTE_NO_VSCROLL 0x0100 |
7682a175 | 1042 | #define wxTE_AUTO_SCROLL 0x0200 |
c857185c VZ |
1043 | #define wxPROCESS_ENTER 0x0400 |
1044 | #define wxPASSWORD 0x0800 | |
1045 | #define wxTE_PROCESS_ENTER wxPROCESS_ENTER | |
1046 | #define wxTE_PASSWORD wxPASSWORD | |
c801d85f KB |
1047 | |
1048 | /* | |
1049 | * wxComboBox style flags | |
1050 | */ | |
1051 | #define wxCB_SIMPLE 0x0004 | |
c801d85f | 1052 | #define wxCB_SORT 0x0008 |
9c331ded JS |
1053 | #define wxCB_READONLY 0x0010 |
1054 | #define wxCB_DROPDOWN 0x0020 | |
c801d85f KB |
1055 | |
1056 | /* | |
0544bc0a | 1057 | * wxRadioBox style flags |
c801d85f | 1058 | */ |
fa18b757 | 1059 | // New, more intuitive names to specify majorDim argument |
0544bc0a RR |
1060 | #define wxRA_SPECIFY_COLS wxHORIZONTAL |
1061 | #define wxRA_SPECIFY_ROWS wxVERTICAL | |
fa18b757 | 1062 | // Old names for compatibility |
c801d85f KB |
1063 | #define wxRA_HORIZONTAL wxHORIZONTAL |
1064 | #define wxRA_VERTICAL wxVERTICAL | |
0544bc0a RR |
1065 | |
1066 | /* | |
1067 | * wxRadioButton style flag | |
1068 | */ | |
c801d85f KB |
1069 | #define wxRB_GROUP 0x0004 |
1070 | ||
1071 | /* | |
1072 | * wxGauge flags | |
1073 | */ | |
c801d85f KB |
1074 | #define wxGA_HORIZONTAL wxHORIZONTAL |
1075 | #define wxGA_VERTICAL wxVERTICAL | |
e115e771 | 1076 | #define wxGA_PROGRESSBAR 0x0010 |
329e86bf | 1077 | // Windows only |
e115e771 | 1078 | #define wxGA_SMOOTH 0x0020 |
c801d85f KB |
1079 | |
1080 | /* | |
1081 | * wxSlider flags | |
1082 | */ | |
2f78bd2c RD |
1083 | #define wxSL_HORIZONTAL wxHORIZONTAL // 4 |
1084 | #define wxSL_VERTICAL wxVERTICAL // 8 | |
c801d85f KB |
1085 | // The next one is obsolete - use scroll events instead |
1086 | #define wxSL_NOTIFY_DRAG 0x0000 | |
2f78bd2c | 1087 | #define wxSL_AUTOTICKS 0x0010 |
c801d85f KB |
1088 | // #define wxSL_MANUALTICKS 0x0010 |
1089 | #define wxSL_LABELS 0x0020 | |
1090 | #define wxSL_LEFT 0x0040 | |
1091 | #define wxSL_TOP 0x0080 | |
1092 | #define wxSL_RIGHT 0x0100 | |
1093 | #define wxSL_BOTTOM 0x0200 | |
1094 | #define wxSL_BOTH 0x0400 | |
1095 | #define wxSL_SELRANGE 0x0800 | |
1096 | ||
1097 | /* | |
1098 | * wxScrollBar flags | |
1099 | */ | |
c801d85f KB |
1100 | #define wxSB_HORIZONTAL wxHORIZONTAL |
1101 | #define wxSB_VERTICAL wxVERTICAL | |
1102 | ||
1103 | /* | |
b0351fc9 | 1104 | * wxButton flags (Win32 only) |
c801d85f | 1105 | */ |
c801d85f KB |
1106 | #define wxBU_AUTODRAW 0x0004 |
1107 | #define wxBU_NOAUTODRAW 0x0000 | |
f6bcfd97 BP |
1108 | #define wxBU_LEFT 0x0040 |
1109 | #define wxBU_TOP 0x0080 | |
1110 | #define wxBU_RIGHT 0x0100 | |
1111 | #define wxBU_BOTTOM 0x0200 | |
c801d85f KB |
1112 | |
1113 | /* | |
1114 | * wxTreeCtrl flags | |
1115 | */ | |
c801d85f KB |
1116 | #define wxTR_HAS_BUTTONS 0x0004 |
1117 | #define wxTR_EDIT_LABELS 0x0008 | |
64693098 | 1118 | #define wxTR_LINES_AT_ROOT 0x0010 |
c801d85f | 1119 | |
c25ccf85 RR |
1120 | #define wxTR_SINGLE 0x0000 |
1121 | #define wxTR_MULTIPLE 0x0020 | |
1122 | #define wxTR_EXTENDED 0x0040 | |
5ea47806 | 1123 | #define wxTR_HAS_VARIABLE_ROW_HEIGHT 0x0080 |
63da7df7 | 1124 | #define wxTR_NO_LINES 0x0100 |
c25ccf85 | 1125 | |
c801d85f KB |
1126 | /* |
1127 | * wxListCtrl flags | |
1128 | */ | |
2702ed5a JS |
1129 | #define wxLC_VRULES 0x0001 |
1130 | #define wxLC_HRULES 0x0002 | |
c801d85f KB |
1131 | #define wxLC_ICON 0x0004 |
1132 | #define wxLC_SMALL_ICON 0x0008 | |
1133 | #define wxLC_LIST 0x0010 | |
1134 | #define wxLC_REPORT 0x0020 | |
1135 | #define wxLC_ALIGN_TOP 0x0040 | |
1136 | #define wxLC_ALIGN_LEFT 0x0080 | |
1137 | #define wxLC_AUTOARRANGE 0x0100 | |
1138 | #define wxLC_USER_TEXT 0x0200 | |
1139 | #define wxLC_EDIT_LABELS 0x0400 | |
1140 | #define wxLC_NO_HEADER 0x0800 | |
1141 | #define wxLC_NO_SORT_HEADER 0x1000 | |
1142 | #define wxLC_SINGLE_SEL 0x2000 | |
1143 | #define wxLC_SORT_ASCENDING 0x4000 | |
1144 | #define wxLC_SORT_DESCENDING 0x8000 | |
1145 | ||
1146 | #define wxLC_MASK_TYPE (wxLC_ICON | wxLC_SMALL_ICON | wxLC_LIST | wxLC_REPORT) | |
1147 | #define wxLC_MASK_ALIGN (wxLC_ALIGN_TOP | wxLC_ALIGN_LEFT) | |
1148 | #define wxLC_MASK_SORT (wxLC_SORT_ASCENDING | wxLC_SORT_DESCENDING) | |
1149 | ||
1150 | // Omitted because (a) too much detail (b) not enough style flags | |
1151 | // #define wxLC_NO_SCROLL | |
1152 | // #define wxLC_NO_LABEL_WRAP | |
1153 | // #define wxLC_OWNERDRAW_FIXED | |
1154 | // #define wxLC_SHOW_SEL_ALWAYS | |
1155 | ||
1156 | /* | |
dc1efb1d JS |
1157 | * wxSpinButton flags. |
1158 | * Note that a wxSpinCtrl is sometimes defined as | |
1159 | * a wxTextCtrl, and so the flags must be different | |
1160 | * from wxTextCtrl's. | |
c801d85f | 1161 | */ |
a3e7d24d RR |
1162 | #define wxSP_HORIZONTAL wxHORIZONTAL // 4 |
1163 | #define wxSP_VERTICAL wxVERTICAL // 8 | |
dc1efb1d JS |
1164 | #define wxSP_ARROW_KEYS 0x1000 |
1165 | #define wxSP_WRAP 0x2000 | |
c801d85f KB |
1166 | |
1167 | /* | |
cd2df130 | 1168 | * wxSplitterWindow flags |
c801d85f | 1169 | */ |
a3e7d24d | 1170 | #define wxSP_NOBORDER 0x0000 |
f6bcfd97 | 1171 | #define wxSP_NOSASH 0x0010 |
a3e7d24d RR |
1172 | #define wxSP_BORDER 0x0020 |
1173 | #define wxSP_PERMIT_UNSPLIT 0x0040 | |
1174 | #define wxSP_LIVE_UPDATE 0x0080 | |
f6bcfd97 BP |
1175 | #define wxSP_3DSASH 0x0100 |
1176 | #define wxSP_3DBORDER 0x0200 | |
1177 | #define wxSP_FULLSASH 0x0400 | |
1178 | #define wxSP_3D (wxSP_3DBORDER | wxSP_3DSASH) | |
c801d85f KB |
1179 | |
1180 | /* | |
1181 | * wxTabCtrl flags | |
1182 | */ | |
329e86bf | 1183 | #define wxTC_MULTILINE 0x0000 |
a3e7d24d RR |
1184 | #define wxTC_RIGHTJUSTIFY 0x0010 |
1185 | #define wxTC_FIXEDWIDTH 0x0020 | |
1186 | #define wxTC_OWNERDRAW 0x0040 | |
10b959e3 | 1187 | |
58a8ab88 JS |
1188 | /* |
1189 | * wxNotebook flags | |
1190 | */ | |
a3e7d24d | 1191 | #define wxNB_FIXEDWIDTH 0x0010 |
4a0253b8 RS |
1192 | #define wxNB_LEFT 0x0020 |
1193 | #define wxNB_RIGHT 0x0040 | |
1194 | #define wxNB_BOTTOM 0x0080 | |
58a8ab88 | 1195 | |
c801d85f KB |
1196 | /* |
1197 | * wxStatusBar95 flags | |
1198 | */ | |
a3e7d24d | 1199 | #define wxST_SIZEGRIP 0x0010 |
c801d85f | 1200 | |
185fa6bf VZ |
1201 | /* |
1202 | * wxStaticText flags | |
1203 | */ | |
1204 | #define wxST_NO_AUTORESIZE 0x0001 | |
1205 | ||
b0351fc9 RR |
1206 | /* |
1207 | * wxStaticLine flags | |
1208 | */ | |
329e86bf RR |
1209 | #define wxLI_HORIZONTAL wxHORIZONTAL |
1210 | #define wxLI_VERTICAL wxVERTICAL | |
b0351fc9 | 1211 | |
9726da4f VZ |
1212 | /* |
1213 | * wxProgressDialog flags | |
1214 | */ | |
329e86bf RR |
1215 | #define wxPD_CAN_ABORT 0x0001 |
1216 | #define wxPD_APP_MODAL 0x0002 | |
1217 | #define wxPD_AUTO_HIDE 0x0004 | |
1218 | #define wxPD_ELAPSED_TIME 0x0008 | |
1219 | #define wxPD_ESTIMATED_TIME 0x0010 | |
d0cf4846 | 1220 | // wxGA_SMOOTH = 0x0020 may also be used with wxProgressDialog |
7b28757f JS |
1221 | // NO!!! This is wxDIALOG_MODAL and will cause the progress dialog to |
1222 | // be modal. No progress will then be made at all. | |
d0cf4846 | 1223 | #define wxPD_REMAINING_TIME 0x0040 |
b0351fc9 | 1224 | |
ea8fe90e VS |
1225 | /* |
1226 | * wxHtmlWindow flags | |
1227 | */ | |
1228 | #define wxHW_SCROLLBAR_NEVER 0x0002 | |
1229 | #define wxHW_SCROLLBAR_AUTO 0x0004 | |
1230 | ||
1a8557b1 VZ |
1231 | /* |
1232 | * wxCalendarCtrl flags | |
1233 | */ | |
1234 | #define wxCAL_SUNDAY_FIRST 0x0000 | |
1235 | #define wxCAL_MONDAY_FIRST 0x0001 | |
1236 | #define wxCAL_SHOW_HOLIDAYS 0x0002 | |
bc385ba9 VZ |
1237 | #define wxCAL_NO_YEAR_CHANGE 0x0004 |
1238 | #define wxCAL_NO_MONTH_CHANGE 0x000c // no month change => no year change | |
1a8557b1 | 1239 | |
c801d85f | 1240 | /* |
bac507e0 | 1241 | * extended dialog specifiers. these values are stored in a different |
329e86bf RR |
1242 | * flag and thus do not overlap with other style flags. note that these |
1243 | * values do not correspond to the return values of the dialogs (for | |
bac507e0 | 1244 | * those values, look at the wxID_XXX defines). |
c801d85f | 1245 | */ |
d597fcb7 RR |
1246 | |
1247 | // wxCENTRE already defined as 0x00000001 | |
1248 | #define wxOK 0x00000004 | |
1249 | #define wxYES_NO 0x00000008 | |
1250 | #define wxCANCEL 0x00000010 | |
1251 | #define wxYES 0x00000020 | |
1252 | #define wxNO 0x00000040 | |
1253 | #define wxNO_DEFAULT 0x00000080 | |
329e86bf RR |
1254 | #define wxYES_DEFAULT 0x00000000 // has no effect |
1255 | ||
d597fcb7 RR |
1256 | #define wxICON_EXCLAMATION 0x00000100 |
1257 | #define wxICON_HAND 0x00000200 | |
ebea0891 KB |
1258 | #define wxICON_WARNING wxICON_EXCLAMATION |
1259 | #define wxICON_ERROR wxICON_HAND | |
d597fcb7 RR |
1260 | #define wxICON_QUESTION 0x00000400 |
1261 | #define wxICON_INFORMATION 0x00000800 | |
329e86bf RR |
1262 | #define wxICON_STOP wxICON_HAND |
1263 | #define wxICON_ASTERISK wxICON_INFORMATION | |
d597fcb7 | 1264 | #define wxICON_MASK (0x00000100|0x00000200|0x00000400|0x00000800) |
329e86bf | 1265 | |
d597fcb7 RR |
1266 | #define wxFORWARD 0x00001000 |
1267 | #define wxBACKWARD 0x00002000 | |
1268 | #define wxRESET 0x00004000 | |
1269 | #define wxHELP 0x00008000 | |
1270 | #define wxMORE 0x00010000 | |
1271 | #define wxSETUP 0x00020000 | |
329e86bf RR |
1272 | |
1273 | // ---------------------------------------------------------------------------- | |
1274 | // standard IDs | |
1275 | // ---------------------------------------------------------------------------- | |
1276 | ||
20d9661c VZ |
1277 | // id for a separator line in the menu (invalid for normal item) |
1278 | #define wxID_SEPARATOR (-1) | |
1279 | ||
329e86bf RR |
1280 | // Standard menu IDs |
1281 | #define wxID_LOWEST 4999 | |
1282 | ||
1283 | #define wxID_OPEN 5000 | |
1284 | #define wxID_CLOSE 5001 | |
1285 | #define wxID_NEW 5002 | |
1286 | #define wxID_SAVE 5003 | |
1287 | #define wxID_SAVEAS 5004 | |
1288 | #define wxID_REVERT 5005 | |
1289 | #define wxID_EXIT 5006 | |
1290 | #define wxID_UNDO 5007 | |
1291 | #define wxID_REDO 5008 | |
1292 | #define wxID_HELP 5009 | |
1293 | #define wxID_PRINT 5010 | |
1294 | #define wxID_PRINT_SETUP 5011 | |
1295 | #define wxID_PREVIEW 5012 | |
1296 | #define wxID_ABOUT 5013 | |
1297 | #define wxID_HELP_CONTENTS 5014 | |
1298 | #define wxID_HELP_COMMANDS 5015 | |
1299 | #define wxID_HELP_PROCEDURES 5016 | |
1300 | #define wxID_HELP_CONTEXT 5017 | |
1301 | ||
1302 | #define wxID_CUT 5030 | |
1303 | #define wxID_COPY 5031 | |
1304 | #define wxID_PASTE 5032 | |
1305 | #define wxID_CLEAR 5033 | |
1306 | #define wxID_FIND 5034 | |
1307 | #define wxID_DUPLICATE 5035 | |
1308 | #define wxID_SELECTALL 5036 | |
1309 | ||
1310 | #define wxID_FILE1 5050 | |
1311 | #define wxID_FILE2 5051 | |
1312 | #define wxID_FILE3 5052 | |
1313 | #define wxID_FILE4 5053 | |
1314 | #define wxID_FILE5 5054 | |
1315 | #define wxID_FILE6 5055 | |
1316 | #define wxID_FILE7 5056 | |
1317 | #define wxID_FILE8 5057 | |
1318 | #define wxID_FILE9 5058 | |
1319 | ||
1320 | // Standard button IDs | |
1321 | #define wxID_OK 5100 | |
1322 | #define wxID_CANCEL 5101 | |
1323 | #define wxID_APPLY 5102 | |
1324 | #define wxID_YES 5103 | |
1325 | #define wxID_NO 5104 | |
1326 | #define wxID_STATIC 5105 | |
1327 | #define wxID_FORWARD 5106 | |
1328 | #define wxID_BACKWARD 5107 | |
1329 | #define wxID_DEFAULT 5108 | |
1330 | #define wxID_MORE 5109 | |
1331 | #define wxID_SETUP 5110 | |
1332 | #define wxID_RESET 5111 | |
fb6261e9 | 1333 | #define wxID_CONTEXT_HELP 5112 |
5100cabf JS |
1334 | #define wxID_YESTOALL 5113 |
1335 | #define wxID_NOTOALL 5114 | |
1336 | #define wxID_ABORT 5115 | |
1337 | #define wxID_RETRY 5116 | |
480df2cf | 1338 | #define wxID_IGNORE 5117 |
329e86bf | 1339 | |
a16d3c04 KB |
1340 | // IDs used by generic file dialog (11 consecutive starting from this value) |
1341 | #define wxID_FILEDLGG 5900 | |
329e86bf RR |
1342 | #define wxID_HIGHEST 5999 |
1343 | ||
329e86bf RR |
1344 | // ---------------------------------------------------------------------------- |
1345 | // Possible SetSize flags | |
1346 | // ---------------------------------------------------------------------------- | |
1347 | ||
1348 | // Use internally-calculated width if -1 | |
1349 | #define wxSIZE_AUTO_WIDTH 0x0001 | |
1350 | // Use internally-calculated height if -1 | |
1351 | #define wxSIZE_AUTO_HEIGHT 0x0002 | |
1352 | // Use internally-calculated width and height if each is -1 | |
1353 | #define wxSIZE_AUTO (wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT) | |
1354 | // Ignore missing (-1) dimensions (use existing). | |
1355 | // For readability only: test for wxSIZE_AUTO_WIDTH/HEIGHT in code. | |
1356 | #define wxSIZE_USE_EXISTING 0x0000 | |
1357 | // Allow -1 as a valid position | |
1358 | #define wxSIZE_ALLOW_MINUS_ONE 0x0004 | |
1359 | // Don't do parent client adjustments (for implementation only) | |
1360 | #define wxSIZE_NO_ADJUSTMENTS 0x0008 | |
1361 | ||
1362 | // ---------------------------------------------------------------------------- | |
1363 | // GDI descriptions | |
1364 | // ---------------------------------------------------------------------------- | |
c801d85f KB |
1365 | |
1366 | enum { | |
1367 | // Text font families | |
1368 | wxDEFAULT = 70, | |
1369 | wxDECORATIVE, | |
1370 | wxROMAN, | |
1371 | wxSCRIPT, | |
1372 | wxSWISS, | |
1373 | wxMODERN, | |
1374 | wxTELETYPE, /* @@@@ */ | |
1375 | ||
1376 | // Proportional or Fixed width fonts (not yet used) | |
1377 | wxVARIABLE = 80, | |
1378 | wxFIXED, | |
1379 | ||
1380 | wxNORMAL = 90, | |
1381 | wxLIGHT, | |
1382 | wxBOLD, | |
1383 | // Also wxNORMAL for normal (non-italic text) | |
1384 | wxITALIC, | |
1385 | wxSLANT, | |
1386 | ||
1387 | // Pen styles | |
1388 | wxSOLID = 100, | |
1389 | wxDOT, | |
1390 | wxLONG_DASH, | |
1391 | wxSHORT_DASH, | |
1392 | wxDOT_DASH, | |
1393 | wxUSER_DASH, | |
1394 | ||
1395 | wxTRANSPARENT, | |
1396 | ||
1397 | // Brush & Pen Stippling. Note that a stippled pen cannot be dashed!! | |
1398 | // Note also that stippling a Pen IS meaningfull, because a Line is | |
de2d2cdc VZ |
1399 | wxSTIPPLE_MASK_OPAQUE, //mask is used for blitting monochrome using text fore and back ground colors |
1400 | wxSTIPPLE_MASK, //mask is used for masking areas in the stipple bitmap (TO DO) | |
c801d85f KB |
1401 | // drawn with a Pen, and without any Brush -- and it can be stippled. |
1402 | wxSTIPPLE = 110, | |
1403 | wxBDIAGONAL_HATCH, | |
1404 | wxCROSSDIAG_HATCH, | |
1405 | wxFDIAGONAL_HATCH, | |
1406 | wxCROSS_HATCH, | |
1407 | wxHORIZONTAL_HATCH, | |
1408 | wxVERTICAL_HATCH, | |
3f4a0c5b | 1409 | #define IS_HATCH(s) ((s)>=wxBDIAGONAL_HATCH && (s)<=wxVERTICAL_HATCH) |
c801d85f KB |
1410 | |
1411 | wxJOIN_BEVEL = 120, | |
1412 | wxJOIN_MITER, | |
1413 | wxJOIN_ROUND, | |
1414 | ||
1415 | wxCAP_ROUND = 130, | |
1416 | wxCAP_PROJECTING, | |
1417 | wxCAP_BUTT | |
1418 | }; | |
1419 | ||
1420 | ||
1421 | // Logical ops | |
3f4a0c5b | 1422 | typedef enum |
83624f79 | 1423 | { |
71fe5c01 RR |
1424 | wxCLEAR, wxROP_BLACK = wxCLEAR, wxBLIT_BLACKNESS = wxCLEAR, // 0 |
1425 | wxXOR, wxROP_XORPEN = wxXOR, wxBLIT_SRCINVERT = wxXOR, // src XOR dst | |
1426 | wxINVERT, wxROP_NOT = wxINVERT, wxBLIT_DSTINVERT = wxINVERT, // NOT dst | |
1427 | wxOR_REVERSE, wxROP_MERGEPENNOT = wxOR_REVERSE, wxBLIT_00DD0228 = wxOR_REVERSE, // src OR (NOT dst) | |
1428 | wxAND_REVERSE, wxROP_MASKPENNOT = wxAND_REVERSE, wxBLIT_SRCERASE = wxAND_REVERSE, // src AND (NOT dst) | |
1429 | wxCOPY, wxROP_COPYPEN = wxCOPY, wxBLIT_SRCCOPY = wxCOPY, // src | |
1430 | wxAND, wxROP_MASKPEN = wxAND, wxBLIT_SRCAND = wxAND, // src AND dst | |
1431 | wxAND_INVERT, wxROP_MASKNOTPEN = wxAND_INVERT, wxBLIT_00220326 = wxAND_INVERT, // (NOT src) AND dst | |
1432 | wxNO_OP, wxROP_NOP = wxNO_OP, wxBLIT_00AA0029 = wxNO_OP, // dst | |
1433 | wxNOR, wxROP_NOTMERGEPEN = wxNOR, wxBLIT_NOTSRCERASE = wxNOR, // (NOT src) AND (NOT dst) | |
1434 | wxEQUIV, wxROP_NOTXORPEN = wxEQUIV, wxBLIT_00990066 = wxEQUIV, // (NOT src) XOR dst | |
1435 | wxSRC_INVERT, wxROP_NOTCOPYPEN = wxSRC_INVERT, wxBLIT_NOTSCRCOPY = wxSRC_INVERT, // (NOT src) | |
1436 | wxOR_INVERT, wxROP_MERGENOTPEN = wxOR_INVERT, wxBLIT_MERGEPAINT = wxOR_INVERT, // (NOT src) OR dst | |
1437 | wxNAND, wxROP_NOTMASKPEN = wxNAND, wxBLIT_007700E6 = wxNAND, // (NOT src) OR (NOT dst) | |
1438 | wxOR, wxROP_MERGEPEN = wxOR, wxBLIT_SRCPAINT = wxOR, // src OR dst | |
1439 | wxSET, wxROP_WHITE = wxSET, wxBLIT_WHITENESS = wxSET // 1 | |
c801d85f KB |
1440 | } form_ops_t; |
1441 | ||
329e86bf | 1442 | /* Flood styles */ |
c801d85f KB |
1443 | #define wxFLOOD_SURFACE 1 |
1444 | #define wxFLOOD_BORDER 2 | |
1445 | ||
329e86bf | 1446 | /* Polygon filling mode */ |
c801d85f KB |
1447 | #define wxODDEVEN_RULE 1 |
1448 | #define wxWINDING_RULE 2 | |
1449 | ||
329e86bf | 1450 | /* ToolPanel in wxFrame */ |
3f4a0c5b VZ |
1451 | #define wxTOOL_TOP 1 |
1452 | #define wxTOOL_BOTTOM 2 | |
1453 | #define wxTOOL_LEFT 3 | |
1454 | #define wxTOOL_RIGHT 4 | |
c801d85f | 1455 | |
9e2896e5 VZ |
1456 | // the values of the format constants should be the same as correspondign |
1457 | // CF_XXX constants in Windows API | |
3f480da3 | 1458 | enum wxDataFormatId |
e3e65dac | 1459 | { |
9e2896e5 VZ |
1460 | wxDF_INVALID = 0, |
1461 | wxDF_TEXT = 1, /* CF_TEXT */ | |
1462 | wxDF_BITMAP = 2, /* CF_BITMAP */ | |
1463 | wxDF_METAFILE = 3, /* CF_METAFILEPICT */ | |
1464 | wxDF_SYLK = 4, | |
1465 | wxDF_DIF = 5, | |
1466 | wxDF_TIFF = 6, | |
1467 | wxDF_OEMTEXT = 7, /* CF_OEMTEXT */ | |
1468 | wxDF_DIB = 8, /* CF_DIB */ | |
1469 | wxDF_PALETTE = 9, | |
1470 | wxDF_PENDATA = 10, | |
1471 | wxDF_RIFF = 11, | |
1472 | wxDF_WAVE = 12, | |
1473 | wxDF_UNICODETEXT = 13, | |
1474 | wxDF_ENHMETAFILE = 14, | |
1475 | wxDF_FILENAME = 15, /* CF_HDROP */ | |
1476 | wxDF_LOCALE = 16, | |
1477 | wxDF_PRIVATE = 20, | |
1478 | wxDF_MAX | |
e3e65dac | 1479 | }; |
c801d85f | 1480 | |
83624f79 | 1481 | /* Virtual keycodes */ |
e3e65dac | 1482 | |
3f4a0c5b | 1483 | enum wxKeyCode |
83624f79 | 1484 | { |
adde8c98 RR |
1485 | WXK_BACK = 8, |
1486 | WXK_TAB = 9, | |
1487 | WXK_RETURN = 13, | |
1488 | WXK_ESCAPE = 27, | |
1489 | WXK_SPACE = 32, | |
1490 | WXK_DELETE = 127, | |
1491 | ||
1492 | WXK_START = 300, | |
1493 | WXK_LBUTTON, | |
1494 | WXK_RBUTTON, | |
1495 | WXK_CANCEL, | |
1496 | WXK_MBUTTON, | |
1497 | WXK_CLEAR, | |
1498 | WXK_SHIFT, | |
861ccde4 | 1499 | WXK_ALT, |
adde8c98 RR |
1500 | WXK_CONTROL, |
1501 | WXK_MENU, | |
1502 | WXK_PAUSE, | |
1503 | WXK_CAPITAL, | |
1504 | WXK_PRIOR, /* Page up */ | |
1505 | WXK_NEXT, /* Page down */ | |
1506 | WXK_END, | |
1507 | WXK_HOME, | |
1508 | WXK_LEFT, | |
1509 | WXK_UP, | |
1510 | WXK_RIGHT, | |
1511 | WXK_DOWN, | |
1512 | WXK_SELECT, | |
1513 | WXK_PRINT, | |
1514 | WXK_EXECUTE, | |
1515 | WXK_SNAPSHOT, | |
1516 | WXK_INSERT, | |
1517 | WXK_HELP, | |
1518 | WXK_NUMPAD0, | |
1519 | WXK_NUMPAD1, | |
1520 | WXK_NUMPAD2, | |
1521 | WXK_NUMPAD3, | |
1522 | WXK_NUMPAD4, | |
1523 | WXK_NUMPAD5, | |
1524 | WXK_NUMPAD6, | |
1525 | WXK_NUMPAD7, | |
1526 | WXK_NUMPAD8, | |
1527 | WXK_NUMPAD9, | |
1528 | WXK_MULTIPLY, | |
1529 | WXK_ADD, | |
1530 | WXK_SEPARATOR, | |
1531 | WXK_SUBTRACT, | |
1532 | WXK_DECIMAL, | |
1533 | WXK_DIVIDE, | |
1534 | WXK_F1, | |
1535 | WXK_F2, | |
1536 | WXK_F3, | |
1537 | WXK_F4, | |
1538 | WXK_F5, | |
1539 | WXK_F6, | |
1540 | WXK_F7, | |
1541 | WXK_F8, | |
1542 | WXK_F9, | |
1543 | WXK_F10, | |
1544 | WXK_F11, | |
1545 | WXK_F12, | |
1546 | WXK_F13, | |
1547 | WXK_F14, | |
1548 | WXK_F15, | |
1549 | WXK_F16, | |
1550 | WXK_F17, | |
1551 | WXK_F18, | |
1552 | WXK_F19, | |
1553 | WXK_F20, | |
1554 | WXK_F21, | |
1555 | WXK_F22, | |
1556 | WXK_F23, | |
1557 | WXK_F24, | |
1558 | WXK_NUMLOCK, | |
1559 | WXK_SCROLL, | |
1560 | WXK_PAGEUP, | |
1561 | WXK_PAGEDOWN, | |
3f480da3 | 1562 | |
adde8c98 RR |
1563 | WXK_NUMPAD_SPACE, |
1564 | WXK_NUMPAD_TAB, | |
1565 | WXK_NUMPAD_ENTER, | |
1566 | WXK_NUMPAD_F1, | |
1567 | WXK_NUMPAD_F2, | |
1568 | WXK_NUMPAD_F3, | |
1569 | WXK_NUMPAD_F4, | |
1570 | WXK_NUMPAD_HOME, | |
1571 | WXK_NUMPAD_LEFT, | |
1572 | WXK_NUMPAD_UP, | |
1573 | WXK_NUMPAD_RIGHT, | |
1574 | WXK_NUMPAD_DOWN, | |
1575 | WXK_NUMPAD_PRIOR, | |
1576 | WXK_NUMPAD_PAGEUP, | |
b78cd60d | 1577 | WXK_NUMPAD_NEXT, |
adde8c98 RR |
1578 | WXK_NUMPAD_PAGEDOWN, |
1579 | WXK_NUMPAD_END, | |
1580 | WXK_NUMPAD_BEGIN, | |
1581 | WXK_NUMPAD_INSERT, | |
1582 | WXK_NUMPAD_DELETE, | |
1583 | WXK_NUMPAD_EQUAL, | |
1584 | WXK_NUMPAD_MULTIPLY, | |
1585 | WXK_NUMPAD_ADD, | |
1586 | WXK_NUMPAD_SEPARATOR, | |
1587 | WXK_NUMPAD_SUBTRACT, | |
1588 | WXK_NUMPAD_DECIMAL, | |
1589 | WXK_NUMPAD_DIVIDE | |
c801d85f KB |
1590 | }; |
1591 | ||
e3065973 JS |
1592 | // Mapping modes (as per Windows) |
1593 | #define wxMM_TEXT 1 | |
1594 | #define wxMM_LOMETRIC 2 | |
1595 | #define wxMM_HIMETRIC 3 | |
1596 | #define wxMM_LOENGLISH 4 | |
1597 | #define wxMM_HIENGLISH 5 | |
1598 | #define wxMM_TWIPS 6 | |
1599 | #define wxMM_ISOTROPIC 7 | |
1600 | #define wxMM_ANISOTROPIC 8 | |
1601 | ||
1602 | #define wxMM_POINTS 9 | |
1603 | #define wxMM_METRIC 10 | |
1604 | ||
83624f79 | 1605 | /* Shortcut for easier dialog-unit-to-pixel conversion */ |
387a3b02 | 1606 | #define wxDLG_UNIT(parent, pt) parent->ConvertDialogToPixels(pt) |
fd71308f | 1607 | |
7bcb11d3 JS |
1608 | /* Paper types */ |
1609 | typedef enum { | |
1610 | wxPAPER_NONE, // Use specific dimensions | |
1611 | wxPAPER_LETTER, // Letter, 8 1/2 by 11 inches | |
1612 | wxPAPER_LEGAL, // Legal, 8 1/2 by 14 inches | |
1613 | wxPAPER_A4, // A4 Sheet, 210 by 297 millimeters | |
1614 | wxPAPER_CSHEET, // C Sheet, 17 by 22 inches | |
1615 | wxPAPER_DSHEET, // D Sheet, 22 by 34 inches | |
1616 | wxPAPER_ESHEET, // E Sheet, 34 by 44 inches | |
1617 | wxPAPER_LETTERSMALL, // Letter Small, 8 1/2 by 11 inches | |
1618 | wxPAPER_TABLOID, // Tabloid, 11 by 17 inches | |
1619 | wxPAPER_LEDGER, // Ledger, 17 by 11 inches | |
1620 | wxPAPER_STATEMENT, // Statement, 5 1/2 by 8 1/2 inches | |
1621 | wxPAPER_EXECUTIVE, // Executive, 7 1/4 by 10 1/2 inches | |
1622 | wxPAPER_A3, // A3 sheet, 297 by 420 millimeters | |
1623 | wxPAPER_A4SMALL, // A4 small sheet, 210 by 297 millimeters | |
1624 | wxPAPER_A5, // A5 sheet, 148 by 210 millimeters | |
1625 | wxPAPER_B4, // B4 sheet, 250 by 354 millimeters | |
1626 | wxPAPER_B5, // B5 sheet, 182-by-257-millimeter paper | |
1627 | wxPAPER_FOLIO, // Folio, 8-1/2-by-13-inch paper | |
1628 | wxPAPER_QUARTO, // Quarto, 215-by-275-millimeter paper | |
1629 | wxPAPER_10X14, // 10-by-14-inch sheet | |
1630 | wxPAPER_11X17, // 11-by-17-inch sheet | |
1631 | wxPAPER_NOTE, // Note, 8 1/2 by 11 inches | |
1632 | wxPAPER_ENV_9, // #9 Envelope, 3 7/8 by 8 7/8 inches | |
1633 | wxPAPER_ENV_10, // #10 Envelope, 4 1/8 by 9 1/2 inches | |
1634 | wxPAPER_ENV_11, // #11 Envelope, 4 1/2 by 10 3/8 inches | |
1635 | wxPAPER_ENV_12, // #12 Envelope, 4 3/4 by 11 inches | |
1636 | wxPAPER_ENV_14, // #14 Envelope, 5 by 11 1/2 inches | |
1637 | wxPAPER_ENV_DL, // DL Envelope, 110 by 220 millimeters | |
1638 | wxPAPER_ENV_C5, // C5 Envelope, 162 by 229 millimeters | |
1639 | wxPAPER_ENV_C3, // C3 Envelope, 324 by 458 millimeters | |
1640 | wxPAPER_ENV_C4, // C4 Envelope, 229 by 324 millimeters | |
1641 | wxPAPER_ENV_C6, // C6 Envelope, 114 by 162 millimeters | |
1642 | wxPAPER_ENV_C65, // C65 Envelope, 114 by 229 millimeters | |
1643 | wxPAPER_ENV_B4, // B4 Envelope, 250 by 353 millimeters | |
1644 | wxPAPER_ENV_B5, // B5 Envelope, 176 by 250 millimeters | |
1645 | wxPAPER_ENV_B6, // B6 Envelope, 176 by 125 millimeters | |
1646 | wxPAPER_ENV_ITALY, // Italy Envelope, 110 by 230 millimeters | |
1647 | wxPAPER_ENV_MONARCH, // Monarch Envelope, 3 7/8 by 7 1/2 inches | |
1648 | wxPAPER_ENV_PERSONAL, // 6 3/4 Envelope, 3 5/8 by 6 1/2 inches | |
1649 | wxPAPER_FANFOLD_US, // US Std Fanfold, 14 7/8 by 11 inches | |
1650 | wxPAPER_FANFOLD_STD_GERMAN, // German Std Fanfold, 8 1/2 by 12 inches | |
1651 | wxPAPER_FANFOLD_LGL_GERMAN, // German Legal Fanfold, 8 1/2 by 13 inches | |
1652 | ||
1653 | wxPAPER_ISO_B4, // B4 (ISO) 250 x 353 mm | |
1654 | wxPAPER_JAPANESE_POSTCARD, // Japanese Postcard 100 x 148 mm | |
1655 | wxPAPER_9X11, // 9 x 11 in | |
1656 | wxPAPER_10X11, // 10 x 11 in | |
1657 | wxPAPER_15X11, // 15 x 11 in | |
1658 | wxPAPER_ENV_INVITE, // Envelope Invite 220 x 220 mm | |
1659 | wxPAPER_LETTER_EXTRA, // Letter Extra 9 \275 x 12 in | |
1660 | wxPAPER_LEGAL_EXTRA, // Legal Extra 9 \275 x 15 in | |
1661 | wxPAPER_TABLOID_EXTRA, // Tabloid Extra 11.69 x 18 in | |
1662 | wxPAPER_A4_EXTRA, // A4 Extra 9.27 x 12.69 in | |
1663 | wxPAPER_LETTER_TRANSVERSE, // Letter Transverse 8 \275 x 11 in | |
1664 | wxPAPER_A4_TRANSVERSE, // A4 Transverse 210 x 297 mm | |
1665 | wxPAPER_LETTER_EXTRA_TRANSVERSE, // Letter Extra Transverse 9\275 x 12 in | |
1666 | wxPAPER_A_PLUS, // SuperA/SuperA/A4 227 x 356 mm | |
1667 | wxPAPER_B_PLUS, // SuperB/SuperB/A3 305 x 487 mm | |
1668 | wxPAPER_LETTER_PLUS, // Letter Plus 8.5 x 12.69 in | |
1669 | wxPAPER_A4_PLUS, // A4 Plus 210 x 330 mm | |
1670 | wxPAPER_A5_TRANSVERSE, // A5 Transverse 148 x 210 mm | |
1671 | wxPAPER_B5_TRANSVERSE, // B5 (JIS) Transverse 182 x 257 mm | |
1672 | wxPAPER_A3_EXTRA, // A3 Extra 322 x 445 mm | |
1673 | wxPAPER_A5_EXTRA, // A5 Extra 174 x 235 mm | |
1674 | wxPAPER_B5_EXTRA, // B5 (ISO) Extra 201 x 276 mm | |
1675 | wxPAPER_A2, // A2 420 x 594 mm | |
1676 | wxPAPER_A3_TRANSVERSE, // A3 Transverse 297 x 420 mm | |
1677 | wxPAPER_A3_EXTRA_TRANSVERSE // A3 Extra Transverse 322 x 445 mm | |
1678 | ||
1679 | } wxPaperSize ; | |
1680 | ||
1681 | /* Printing orientation */ | |
1682 | #ifndef wxPORTRAIT | |
1683 | #define wxPORTRAIT 1 | |
1684 | #define wxLANDSCAPE 2 | |
1685 | #endif | |
1686 | ||
1687 | /* Duplex printing modes | |
1688 | */ | |
1689 | ||
1690 | typedef enum { | |
1691 | wxDUPLEX_SIMPLEX, // Non-duplex | |
1692 | wxDUPLEX_HORIZONTAL, | |
1693 | wxDUPLEX_VERTICAL | |
1694 | } wxDuplexMode; | |
1695 | ||
1696 | /* Print quality. | |
1697 | */ | |
1698 | ||
1699 | #define wxPRINT_QUALITY_HIGH -1 | |
1700 | #define wxPRINT_QUALITY_MEDIUM -2 | |
1701 | #define wxPRINT_QUALITY_LOW -3 | |
1702 | #define wxPRINT_QUALITY_DRAFT -4 | |
1703 | ||
1704 | typedef int wxPrintQuality; | |
1705 | ||
1706 | /* Print mode (currently PostScript only) | |
1707 | */ | |
1708 | ||
1709 | typedef enum { | |
1710 | wxPRINT_MODE_NONE = 0, | |
1711 | wxPRINT_MODE_PREVIEW = 1, // Preview in external application | |
1712 | wxPRINT_MODE_FILE = 2, // Print to file | |
1713 | wxPRINT_MODE_PRINTER = 3 // Send to printer | |
1714 | } wxPrintMode; | |
1715 | ||
7826e2dd VZ |
1716 | // ---------------------------------------------------------------------------- |
1717 | // miscellaneous | |
1718 | // ---------------------------------------------------------------------------- | |
1719 | ||
1720 | // define this macro if font handling is done using the X font names | |
1721 | #if defined(__WXGTK__) || defined(__X__) | |
1722 | #define _WX_X_FONTLIKE | |
1723 | #endif | |
1724 | ||
1725 | // macro to specify "All Files" on different platforms | |
2c41c440 KB |
1726 | #if defined(__WXMSW__) |
1727 | # define wxALL_FILES_PATTERN "*.*" | |
1728 | # define wxALL_FILES gettext_noop("All files (*.*)|*.*") | |
1729 | #else | |
1730 | # define wxALL_FILES_PATTERN "*" | |
1731 | # define wxALL_FILES gettext_noop("All files (*)|*") | |
1732 | #endif | |
7826e2dd | 1733 | |
329e86bf RR |
1734 | // --------------------------------------------------------------------------- |
1735 | // macros that enable wxWindows apps to be compiled in absence of the | |
1736 | // sytem headers, although some platform specific types are used in the | |
1737 | // platform specific (implementation) parts of the headers | |
1738 | // --------------------------------------------------------------------------- | |
7bcb11d3 | 1739 | |
519cb848 SC |
1740 | #ifdef __WXMAC__ |
1741 | ||
f608bc67 | 1742 | typedef WindowPtr WXHWND; |
f6bcfd97 BP |
1743 | typedef Handle WXHANDLE; |
1744 | typedef CIconHandle WXHICON; | |
519cb848 | 1745 | //typedef unsigned long WXHFONT; |
f6bcfd97 | 1746 | typedef MenuHandle WXHMENU; |
519cb848 SC |
1747 | //typedef unsigned long WXHPEN; |
1748 | //typedef unsigned long WXHBRUSH; | |
1749 | //typedef unsigned long WXHPALETTE; | |
f6bcfd97 | 1750 | typedef CursHandle WXHCURSOR; |
f608bc67 | 1751 | typedef RgnHandle WXHRGN; |
519cb848 SC |
1752 | //typedef unsigned long WXHACCEL; |
1753 | //typedef unsigned long WXHINSTANCE; | |
f6bcfd97 | 1754 | typedef GWorldPtr WXHBITMAP; |
519cb848 SC |
1755 | //typedef unsigned long WXHIMAGELIST; |
1756 | //typedef unsigned long WXHGLOBAL; | |
f6bcfd97 | 1757 | typedef GrafPtr WXHDC; |
519cb848 SC |
1758 | typedef unsigned int WXUINT; |
1759 | typedef unsigned long WXDWORD; | |
1760 | typedef unsigned short WXWORD; | |
1761 | //typedef unsigned int WXWPARAM; | |
1762 | //typedef long WXLPARAM; | |
f6bcfd97 | 1763 | typedef RGBColor WXCOLORREF; |
519cb848 SC |
1764 | //typedef void * WXRGNDATA; |
1765 | //typedef void * WXMSG; | |
1766 | //typedef unsigned long WXHCONV; | |
1767 | //typedef unsigned long WXHKEY; | |
1768 | //typedef void * WXDRAWITEMSTRUCT; | |
1769 | //typedef void * WXMEASUREITEMSTRUCT; | |
1770 | //typedef void * WXLPCREATESTRUCT; | |
1771 | typedef int (*WXFARPROC)(); | |
1772 | ||
f6bcfd97 BP |
1773 | typedef WindowPtr WXWindow; |
1774 | typedef ControlHandle WXWidget; | |
519cb848 SC |
1775 | |
1776 | #endif | |
1777 | ||
bac507e0 | 1778 | #if defined(__WXMSW__) || defined(__WXPM__) |
f6bcfd97 BP |
1779 | |
1780 | // the keywords needed for WinMain() declaration | |
1781 | #ifdef __WIN16__ | |
1782 | # ifdef __VISUALC__ | |
1783 | # define WXFAR __far | |
1784 | # else | |
1785 | # define WXFAR _far | |
1786 | # endif | |
1787 | #else // Win32 | |
1788 | # ifndef WXFAR | |
1789 | # define WXFAR | |
1790 | # endif | |
1791 | #endif // Win16/32 | |
1792 | ||
bac507e0 | 1793 | // Stand-ins for Windows types or OS/2, to avoid #including all of windows.h or os2.h |
c801d85f KB |
1794 | typedef unsigned long WXHWND; |
1795 | typedef unsigned long WXHANDLE; | |
1796 | typedef unsigned long WXHICON; | |
1797 | typedef unsigned long WXHFONT; | |
1798 | typedef unsigned long WXHMENU; | |
1799 | typedef unsigned long WXHPEN; | |
1800 | typedef unsigned long WXHBRUSH; | |
1801 | typedef unsigned long WXHPALETTE; | |
1802 | typedef unsigned long WXHCURSOR; | |
1803 | typedef unsigned long WXHRGN; | |
57a7b7c1 | 1804 | typedef unsigned long WXHACCEL; |
f6bcfd97 | 1805 | typedef void WXFAR * WXHINSTANCE; |
c801d85f KB |
1806 | typedef unsigned long WXHBITMAP; |
1807 | typedef unsigned long WXHIMAGELIST; | |
1808 | typedef unsigned long WXHGLOBAL; | |
1809 | typedef unsigned long WXHDC; | |
1810 | typedef unsigned int WXUINT; | |
1811 | typedef unsigned long WXDWORD; | |
1812 | typedef unsigned short WXWORD; | |
45fcbf3b | 1813 | #ifdef __WXMSW__ |
c801d85f KB |
1814 | typedef unsigned int WXWPARAM; |
1815 | typedef long WXLPARAM; | |
45fcbf3b DW |
1816 | #else |
1817 | # define WXWPARAM MPARAM | |
1818 | # define WXLPARAM MPARAM | |
86de7616 DW |
1819 | # define RECT RECTL |
1820 | # define LOGFONT FATTRS | |
11e59d47 DW |
1821 | # define LOWORD SHORT1FROMMP |
1822 | # define HIWORD SHORT2FROMMP | |
16a12a3d | 1823 | #endif // __WXMSW__ |
c801d85f | 1824 | typedef unsigned long WXCOLORREF; |
c801d85f KB |
1825 | typedef void * WXRGNDATA; |
1826 | typedef void * WXMSG; | |
1827 | typedef unsigned long WXHCONV; | |
0d8d91a9 | 1828 | typedef unsigned long WXHKEY; |
ef366d32 | 1829 | typedef unsigned long WXHTREEITEM; |
a23fd0e1 | 1830 | |
c801d85f KB |
1831 | typedef void * WXDRAWITEMSTRUCT; |
1832 | typedef void * WXMEASUREITEMSTRUCT; | |
1833 | typedef void * WXLPCREATESTRUCT; | |
a23fd0e1 | 1834 | |
54da4255 DW |
1835 | #if defined(__WXPM__) |
1836 | typedef unsigned long WXMPARAM; | |
1837 | typedef unsigned long WXMSGID; | |
1838 | typedef void* WXRESULT; | |
659d096c | 1839 | //typedef int (*WXFARPROC)(); |
54da4255 DW |
1840 | // some windows handles not defined by PM |
1841 | typedef unsigned long HANDLE; | |
1842 | typedef unsigned long HICON; | |
1843 | typedef unsigned long HFONT; | |
1844 | typedef unsigned long HMENU; | |
1845 | typedef unsigned long HPEN; | |
1846 | typedef unsigned long HBRUSH; | |
1847 | typedef unsigned long HPALETTE; | |
1848 | typedef unsigned long HCURSOR; | |
1849 | typedef unsigned long HINSTANCE; | |
1850 | typedef unsigned long HIMAGELIST; | |
1851 | typedef unsigned long HGLOBAL; | |
1852 | typedef unsigned long DWORD; | |
1853 | typedef unsigned short WORD; | |
43543d98 DW |
1854 | |
1855 | // WIN32 graphics types for OS/2 GPI | |
1856 | ||
1857 | // RGB under OS2 is more like a PALETTEENTRY struct under Windows so we need a real RGB def | |
141ddc08 | 1858 | #define OS2RGB(r,g,b) ((DWORD ((BYTE) (b) | ((WORD) (g) << 8)) | (((DWORD)(BYTE)(r)) << 16))) |
43543d98 DW |
1859 | |
1860 | typedef unsigned long COLORREF; | |
1861 | #define GetBValue(rgb) ((BYTE)((rgb) >> 16)) | |
1862 | #define GetGValue(rgb) ((BYTE)(((WORD)(rgb)) >> 8)) | |
1863 | #define GetRValue(rgb) ((BYTE)(rgb)) | |
1864 | #define PALETTEINDEX(i) ((COLORREF)(0x01000000 | (DWORD)(WORD)(i))) | |
1865 | #define PALETTERGB(r,g,b) (0x02000000 | OS2RGB(r,g,b)) | |
1866 | // OS2's RGB/RGB2 is backwards from this | |
1867 | typedef struct tagPALETTEENTRY | |
1868 | { | |
1869 | char bRed; | |
1870 | char bGreen; | |
1871 | char bBlue; | |
1872 | char bFlags; | |
1873 | } PALETTEENTRY; | |
1874 | typedef struct tagLOGPALETTE | |
1875 | { | |
1876 | WORD palVersion; | |
1877 | WORD palNumentries; | |
1878 | WORD PALETTEENTRY[1]; | |
1879 | } LOGPALETTE; | |
1880 | #endif //__WXPM__ | |
54da4255 | 1881 | |
5ea105e0 | 1882 | #if defined(__GNUWIN32__) || defined(__WXWINE__) |
a23fd0e1 | 1883 | typedef int (*WXFARPROC)(); |
1e6d9499 | 1884 | #elif defined(__WIN32__) |
a23fd0e1 | 1885 | typedef int (__stdcall *WXFARPROC)(); |
37123da4 DW |
1886 | #elif defined(__WXPM__) |
1887 | # if defined(__VISAGECPP__) && (__IBMCPP__ < 400 || __IBMC__ < 400 ) | |
1888 | // VA 3.0 for some reason needs base data types when typedefing a proc proto??? | |
1889 | typedef void* (_System *WXFARPROC)(unsigned long, unsigned long, void*, void*); | |
1890 | # else | |
1891 | typedef WXRESULT (_System *WXFARPROC)(WXHWND, WXMSGID, WXWPARAM, WXLPARAM); | |
1892 | # endif | |
1e6d9499 | 1893 | #else |
a23fd0e1 | 1894 | typedef int (*WXFARPROC)(); |
14b72bf5 | 1895 | #endif |
c801d85f | 1896 | |
f03fc89f | 1897 | typedef WXHWND WXWidget; |
8fb3a512 JS |
1898 | |
1899 | #if defined(__BORLANDC__) && !defined(__WIN32__) | |
f6bcfd97 BP |
1900 | # ifndef LPTSTR |
1901 | # define LPTSTR LPSTR | |
1902 | # endif | |
1903 | # ifndef LPCTSTR | |
1904 | # define LPCTSTR LPSTR | |
1905 | # endif | |
8fb3a512 JS |
1906 | #endif |
1907 | ||
f6bcfd97 | 1908 | #endif // MSW or OS2 |
c801d85f | 1909 | |
589f0e3e | 1910 | #ifdef __WXMOTIF__ |
83624f79 | 1911 | /* Stand-ins for X/Xt/Motif types */ |
589f0e3e JS |
1912 | typedef void* WXWindow; |
1913 | typedef void* WXWidget; | |
1914 | typedef void* WXAppContext; | |
46ccb510 | 1915 | typedef void* WXColormap; |
589f0e3e JS |
1916 | typedef void WXDisplay; |
1917 | typedef void WXEvent; | |
46ccb510 | 1918 | typedef void* WXCursor; |
50414e24 | 1919 | typedef void* WXPixmap; |
dfc54541 JS |
1920 | typedef void* WXFontStructPtr; |
1921 | typedef void* WXGC; | |
1922 | typedef void* WXRegion; | |
e97f20a0 | 1923 | typedef void* WXFont; |
f97c9854 JS |
1924 | typedef void* WXImage; |
1925 | typedef void* WXCursor; | |
1926 | typedef void* WXFontList; | |
da175b2c RR |
1927 | |
1928 | typedef unsigned long Atom; /* this might fail on a few architectures */ | |
1929 | ||
f03fc89f | 1930 | #endif // Motif |
589f0e3e | 1931 | |
83624f79 RR |
1932 | #ifdef __WXGTK__ |
1933 | /* Stand-ins for GLIB types */ | |
f6bcfd97 BP |
1934 | typedef char gchar; |
1935 | typedef signed char gint8; | |
83624f79 RR |
1936 | typedef int gint; |
1937 | typedef unsigned guint; | |
1938 | typedef unsigned long gulong; | |
1939 | typedef void* gpointer; | |
953704c1 | 1940 | typedef struct _GSList GSList; |
83624f79 RR |
1941 | |
1942 | /* Stand-ins for GDK types */ | |
1943 | typedef gulong GdkAtom; | |
1944 | typedef struct _GdkColor GdkColor; | |
1945 | typedef struct _GdkColormap GdkColormap; | |
1946 | typedef struct _GdkFont GdkFont; | |
1947 | typedef struct _GdkGC GdkGC; | |
10ca1c14 | 1948 | #ifdef __WXGTK20__ |
13111b2a VZ |
1949 | typedef struct _GdkDrawable GdkWindow; |
1950 | typedef struct _GdkDrawable GdkBitmap; | |
1951 | typedef struct _GdkDrawable GdkPixmap; | |
1952 | #else | |
1953 | typedef struct _GdkWindow GdkWindow; | |
1954 | typedef struct _GdkWindow GdkBitmap; | |
1955 | typedef struct _GdkWindow GdkPixmap; | |
1956 | #endif | |
83624f79 RR |
1957 | typedef struct _GdkCursor GdkCursor; |
1958 | typedef struct _GdkRegion GdkRegion; | |
8a126fcc | 1959 | typedef struct _GdkDragContext GdkDragContext; |
63081513 RR |
1960 | #ifdef HAVE_XIM |
1961 | typedef struct _GdkIC GdkIC; | |
1962 | typedef struct _GdkICAttr GdkICAttr; | |
1963 | #endif | |
83624f79 RR |
1964 | |
1965 | /* Stand-ins for GTK types */ | |
8a126fcc RR |
1966 | typedef struct _GtkWidget GtkWidget; |
1967 | typedef struct _GtkStyle GtkStyle; | |
1968 | typedef struct _GtkAdjustment GtkAdjustment; | |
1969 | typedef struct _GtkList GtkList; | |
1970 | typedef struct _GtkToolbar GtkToolbar; | |
1971 | typedef struct _GtkTooltips GtkTooltips; | |
1972 | typedef struct _GtkNotebook GtkNotebook; | |
1973 | typedef struct _GtkNotebookPage GtkNotebookPage; | |
1974 | typedef struct _GtkAccelGroup GtkAccelGroup; | |
f608bc67 VZ |
1975 | typedef struct _GtkItemFactory GtkItemFactory; |
1976 | typedef struct _GtkSelectionData GtkSelectionData; | |
ad5c34f3 | 1977 | |
f03fc89f | 1978 | typedef GtkWidget *WXWidget; |
e6ae7330 OK |
1979 | |
1980 | #ifndef __WXGTK20__ | |
1981 | #define GTK_OBJECT_GET_CLASS(object) (GTK_OBJECT(object)->klass) | |
ff67d586 | 1982 | #define GTK_CLASS_TYPE(klass) ((klass)->type) |
e6ae7330 OK |
1983 | #endif |
1984 | ||
1985 | #ifdef __WXGTK20__ | |
1986 | /* Stand-ins for Pango types */ | |
1987 | typedef struct _PangoContext PangoContext; | |
1988 | typedef struct _PangoLayout PangoLayout; | |
1989 | typedef struct _PangoFontDescription PangoFontDescription; | |
1990 | #endif | |
f03fc89f | 1991 | #endif // GTK |
ad5c34f3 JS |
1992 | |
1993 | // This is required because of clashing macros in windows.h, which may be | |
1994 | // included before or after wxWindows classes, and therefore must be | |
1995 | // disabled here before any significant wxWindows headers are included. | |
1996 | #ifdef __WXMSW__ | |
1997 | #ifdef GetClassInfo | |
1998 | #undef GetClassInfo | |
1999 | #endif | |
2000 | ||
2001 | #ifdef GetClassName | |
2002 | #undef GetClassName | |
2003 | #endif | |
2004 | ||
2005 | #ifdef DrawText | |
2006 | #undef DrawText | |
2007 | #endif | |
2008 | ||
2009 | #ifdef GetCharWidth | |
2010 | #undef GetCharWidth | |
2011 | #endif | |
2012 | ||
2013 | #ifdef StartDoc | |
2014 | #undef StartDoc | |
2015 | #endif | |
2016 | ||
2017 | #ifdef FindWindow | |
2018 | #undef FindWindow | |
2019 | #endif | |
2020 | ||
2021 | #ifdef FindResource | |
2022 | #undef FindResource | |
2023 | #endif | |
83624f79 | 2024 | #endif |
ad5c34f3 | 2025 | // __WXMSW__ |
83624f79 | 2026 | |
a23fd0e1 VZ |
2027 | // --------------------------------------------------------------------------- |
2028 | // macro to define a class without copy ctor nor assignment operator | |
2029 | // --------------------------------------------------------------------------- | |
2030 | ||
2031 | #define DECLARE_NO_COPY_CLASS(classname) \ | |
2032 | private: \ | |
2033 | classname(const classname&); \ | |
2034 | classname& operator=(const classname&) | |
2035 | ||
c801d85f | 2036 | #endif |
34138703 | 2037 | // _WX_DEFS_H_ |