]> git.saurik.com Git - wxWidgets.git/blame - setup.h.in
extracted OnSize() body in a new DoLayout() method so that it can be called from...
[wxWidgets.git] / setup.h.in
CommitLineData
c79a329d 1/* This define (__WX_SETUP_H__) is used both to ensure setup.h is included
75ef19df
RR
2 * only once and to indicate that we are building using configure. */
3#ifndef __WX_SETUP_H__
4#define __WX_SETUP_H__
5
6#ifdef __GNUG__
adaa20ad 7#pragma interface
75ef19df
RR
8#endif
9
adaa20ad 10/* never undefine inline or const keywords for C++ compilation */
458ed37d 11#ifndef __cplusplus
adaa20ad 12
75ef19df
RR
13/* Define to empty if the keyword does not work. */
14#undef const
adaa20ad
VZ
15
16/* Define as __inline if that's what the C compiler calls it. */
17#undef inline
18
19#endif /* __cplusplus */
75ef19df 20
bdc72a22
VZ
21/* fill in with the string wxGetOsDescription() will return */
22#undef WXWIN_OS_DESCRIPTION
23
7e67ed0d
VZ
24/* the installation location prefix from configure */
25#undef wxINSTALL_PREFIX
26
75ef19df
RR
27/* Define to `int' if <sys/types.h> doesn't define. */
28#undef gid_t
29
75ef19df
RR
30/* Define to `int' if <sys/types.h> doesn't define. */
31#undef mode_t
32
33/* Define to `long' if <sys/types.h> doesn't define. */
34#undef off_t
35
36/* Define to `int' if <sys/types.h> doesn't define. */
37#undef pid_t
38
39/* Define to `unsigned' if <sys/types.h> doesn't define. */
40#undef size_t
41
42/* Define if you have the ANSI C header files. */
43#undef STDC_HEADERS
44
5c0a20c3
VZ
45/* Define this to get extra features from GNU libc. */
46#undef _GNU_SOURCE
47
75ef19df
RR
48/* Define to `int' if <sys/types.h> doesn't define. */
49#undef uid_t
50
51/* Define if your processor stores words with the most significant
52 byte first (like Motorola and SPARC, unlike Intel and VAX). */
53#undef WORDS_BIGENDIAN
54
13111b2a 55/* Define this if your version of GTK+ is greater than 1.2 */
75ef19df
RR
56#undef __WXGTK12__
57
f6bcfd97
BP
58/* Define this if your version of GTK+ is greater than 1.2.7 */
59#undef __WXGTK127__
60
13111b2a 61/* Define this if your version of GTK+ is greater than 1.3 */
6f72b082 62#undef __WXGTK20__
13111b2a 63
16bd311d
RR
64/* Define this if you want to use GPE features */
65#undef __WXGPE__
66
da494b40
MB
67/* Define this if your version of Motif is greater than 2.0 */
68#undef __WXMOTIF20__
69
75ef19df
RR
70/*
71 * Define to 1 for Unix[-like] system
72 */
73#define wxUSE_UNIX 0
74
75#undef __UNIX__
4a8900f2 76
75ef19df 77#undef __AIX__
75ef19df 78#undef __BSD__
8eee0251 79#undef __DARWIN__
4a8900f2
VZ
80#undef __EMX__
81#undef __FREEBSD__
82#undef __HPUX__
83#undef __LINUX__
f6bcfd97 84#undef __NETBSD__
2b5f62a0 85#undef __OPENBSD__
4a8900f2
VZ
86#undef __OSF__
87#undef __SGI__
88#undef __SOLARIS__
89#undef __SUN__
90#undef __SUNOS__
91#undef __SVR4__
92#undef __SYSV__
75ef19df 93#undef __ULTRIX__
4a8900f2
VZ
94#undef __UNIXWARE__
95#undef __VMS__
96
97#undef __IA64__
98#undef __ALPHA__
75ef19df 99
c79a329d
JS
100/* NanoX (with wxX11) */
101#define wxUSE_NANOX 0
102
8eee0251
GD
103/* PowerPC Darwin & Mac OS X */
104#undef __POWERPC__
82d43113 105#undef TARGET_CARBON
8eee0251 106
f9bc1684
VS
107/* MS-DOS with DJGPP */
108#undef __DOS__
109
80d895cd
HH
110/* Stupid hack; __WINDOWS__ clashes with wx/defs.h */
111#ifndef __WINDOWS__
75ef19df 112#undef __WINDOWS__
80d895cd
HH
113#endif
114
ab82ab07 115#ifndef __WIN95__
75ef19df 116#undef __WIN95__
ab82ab07 117#endif
0e448231 118#ifndef __WIN32__
75ef19df 119#undef __WIN32__
0e448231 120#endif
ab82ab07 121#ifndef __GNUWIN32__
75ef19df 122#undef __GNUWIN32__
ab82ab07
MB
123#endif
124#ifndef STRICT
1db46618 125#undef STRICT
ab82ab07
MB
126#endif
127#ifndef WINVER
75ef19df 128#undef WINVER
ab82ab07 129#endif
75ef19df 130
ff398597
SN
131/* OS/2 with EMX */
132#undef __OS2__
133
7c0ea335 134/* enable native status bar under Win32 */
8754feb8 135#if defined(__WIN95__) && !defined(__WXUNIVERSAL__)
7c0ea335 136#define wxUSE_NATIVE_STATUSBAR 1
8754feb8 137#define wxUSE_OWNER_DRAWN 1
7c0ea335
VZ
138#endif
139
7ee20d36
SN
140#if defined(__WXPM__)
141#define wxUSE_OWNER_DRAWN 1
142#endif
143
e959aee2 144/* enable rich edit under Win32 */
b39dbf34 145#if defined(__WIN95__) && !defined(__WINE__) && !defined(__GNUWIN32_OLD__)
e959aee2
VZ
146#define wxUSE_RICHEDIT 1
147#else
148#define wxUSE_RICHEDIT 0
149#endif
150
75ef19df
RR
151/*
152 * Supports bool type
153 */
154#undef HAVE_BOOL
155
986ecc86
VZ
156/*
157 * Define if your compiler supports the explicit keyword
158 */
159#undef HAVE_EXPLICIT
160
521196a2
MB
161/*
162 * Define if your compiler supports const_cast<>()
163 */
164#undef HAVE_CONST_CAST
165
4ebb542f
VZ
166/*
167 * Define if your compiler supports reinterpret_cast<>()
168 */
169#undef HAVE_REINTERPRET_CAST
170
ecfd48ca
VZ
171/*
172 * Define if your compiler supports static_cast<>()
173 */
174#undef HAVE_STATIC_CAST
175
e87b7833
MB
176/*
177 * Define if your compiler has std::wstring
178 */
179#undef HAVE_STD_WSTRING
180/*
bdcade0a 181 * Define if your compiler has compliant std::string::compare
e87b7833
MB
182 */
183#undef HAVE_STD_STRING_COMPARE
bdcade0a
MB
184/*
185 * Define if your compiler has <hash_map>
186 */
187#undef HAVE_HASH_MAP
188/*
189 * Define if your compiler has <ext/hash_map>
190 */
191#undef HAVE_EXT_HASH_MAP
192/*
193 * Define if your compiler has std::hash_map/hash_set
194 */
195#undef HAVE_STD_HASH_MAP
196/*
197 * Define if your compiler has __gnu_cxx::hash_map/hash_set
198 */
199#undef HAVE_GNU_CXX_HASH_MAP
e87b7833 200
df5168c4
MB
201/*
202 * use STL for containers and wxString
203 */
204#define wxUSE_STL 0
3e44f09d
VZ
205/*
206 * Use regex support
207 */
208#define wxUSE_REGEX 0
0aa7fa9a
VS
209/*
210 * The built-in regex supports advanced REs in additional to POSIX's basic
211 * and extended. Your system regex probably won't support this, and in this
212 * case WX_NO_REGEX_ADVANCED should be defined.
213 */
214#undef WX_NO_REGEX_ADVANCED
672abd7a
VS
215/*
216 * Use XML support
217 */
218#define wxUSE_XML 0
75ef19df
RR
219/*
220 * Use zlib
221 */
222#define wxUSE_ZLIB 0
223/*
224 * Use libpng
225 */
226#define wxUSE_LIBPNG 0
227/*
228 * Use libjpeg
229 */
230#define wxUSE_LIBJPEG 0
1c8d8d21
RR
231/*
232 * Use libtiff
233 */
234#define wxUSE_LIBTIFF 0
f93ca9fd
VS
235/*
236 * Use SDL for audio (Unix)
237 */
238#define wxUSE_LIBSDL 0
75ef19df
RR
239/*
240 * Use iODBC
241 */
242#define wxUSE_ODBC 0
0bdb08e7 243#define wxUSE_BUILTIN_IODBC 0
fb073f86 244#define wxODBC_FWD_ONLY_CURSORS 1
f6bcfd97 245#define wxODBC_BACKWARD_COMPATABILITY 0
3fed1840
RR
246/*
247 * Use freetype
248 */
249#define wxUSE_FREETYPE 0
75ef19df
RR
250/*
251 * Use Threads
252 */
253#define wxUSE_THREADS 0
254/*
255 * Have glibc2
256 */
257#define wxHAVE_GLIBC2 0
258/*
259 * Use libXpm
260 */
261#define wxHAVE_LIB_XPM 0
262/*
263 * Use OpenGL
264 */
265#define wxUSE_OPENGL 0
bdad4e7e 266#define wxUSE_GLCANVAS 0
75ef19df
RR
267
268/*
269 * Use GUI
270 */
d6b95c13 271#ifndef wxUSE_GUI
e90c1d2a 272#define wxUSE_GUI 0
d6b95c13 273#endif
75ef19df 274/*
e90c1d2a 275 * Don't use GUI (defined to 1 when compiling/using base only)
75ef19df 276 */
e90c1d2a 277#define wxUSE_NOGUI 0
75ef19df 278
eb4efbdc
VZ
279/*
280 * Catch fatal program exceptions
281 */
282#define wxUSE_ON_FATAL_EXCEPTION 0
283
4f3c5f06
VZ
284/*
285 * Use wxSingleInstanceChecker class
286 */
287#define wxUSE_SNGLINST_CHECKER 0
288
75ef19df
RR
289/*
290 * Use constraints mechanism
291 */
292#define wxUSE_CONSTRAINTS 0
293
294/*
295 * Use validators
296 */
297#define wxUSE_VALIDATORS 0
298
1e6feb95
VZ
299/*
300 * Use wxControl
301 */
302#define wxUSE_CONTROLS 0
303
304/*
305 Use wxPopupWindow (useful in wxUniv only for now)
306*/
307#define wxUSE_POPUPWIN 0
308
0b01706f
VZ
309/*
310 Use wxTipWindow
311 */
312#define wxUSE_TIPWINDOW 0
313
75ef19df
RR
314/*
315 * Use accelerators
316 */
317#define wxUSE_ACCEL 0
318
1e6feb95
VZ
319/*
320 * Use wxCalendarCtrl
321 */
322#define wxUSE_CALENDARCTRL 0
323
324/*
325 * Use wxFileDialog
326 */
327#define wxUSE_FILEDLG 0
328
8db37e06
VZ
329/*
330 * Use wxFindReplaceDialog
331 */
332#define wxUSE_FINDREPLDLG 0
333
1e6feb95
VZ
334/*
335 * Use wxFontDialog
336 */
337#define wxUSE_FONTDLG 0
338
339/*
340 * Use wxMimeTypesManager and related classes
341 */
342#define wxUSE_MIMETYPE 0
343
04eb894b
GD
344/*
345 * Use wxSystemOptions
346 */
347#define wxUSE_SYSTEM_OPTIONS 0
348
1e6feb95
VZ
349/*
350 * Use wxMessageDialog (and wxMessageBox)
351 */
352#define wxUSE_MSGDLG 0
353
354/*
355 * Use wxNumberEntryDialog
356 */
357#define wxUSE_NUMBERDLG 0
358
75ef19df
RR
359/*
360 * Use wxTextEntryDialog
361 */
362#define wxUSE_TEXTDLG 0
363
364/*
365 * Use startup tips
366 */
367#define wxUSE_STARTUP_TIPS 0
368
369/*
370 * Use progress dialog
371 */
372#define wxUSE_PROGRESSDLG 0
373
1e6feb95
VZ
374/*
375 * Use chooser dialog
376 */
377#define wxUSE_CHOICEDLG 0
378
379/*
380 * Use colour picker dialog
381 */
382#define wxUSE_COLOURDLG 0
383
75ef19df
RR
384/*
385 * Use directory chooser dialog
386 */
387#define wxUSE_DIRDLG 0
388
24fd6d87
VZ
389/*
390 * Use wxDragImage class
391 */
392#define wxUSE_DRAGIMAGE 0
393
7bb2947d
MB
394/*
395 * Enable accessibility support
396 */
397#define wxUSE_ACCESSIBILITY 0
398
1e6feb95
VZ
399/*
400 * Use property sheet classes
401 */
402#define wxUSE_PROPSHEET 0
403
404/*
405 * Use wxWizard
406 */
407#define wxUSE_WIZARDDLG 0
408
409/*
410 * Use splash screen
411 */
412#define wxUSE_SPLASH 0
413
75ef19df
RR
414/*
415 * Joystick support (Linux/GTK only)
416 */
417#define wxUSE_JOYSTICK 0
418
1e6feb95
VZ
419/*
420 * Use this control
421 */
422#define wxUSE_BUTTON 0
75ef19df
RR
423/*
424 * Use this control
425 */
426#define wxUSE_CARET 0
427/*
428 * Use this control
429 */
430#define wxUSE_BMPBUTTON 0
431/*
432 * Use this control
433 */
434#define wxUSE_CHECKBOX 0
435/*
436 * Use this control
437 */
438#define wxUSE_CHECKLISTBOX 0
439/*
440 * Use this control
441 */
442#define wxUSE_COMBOBOX 0
443/*
444 * Use this control
445 */
446#define wxUSE_CHOICE 0
ddb4769e
VZ
447/*
448 * Use wxDisplay class
449 */
450#define wxUSE_DISPLAY 0
75ef19df
RR
451/*
452 * Use this control
453 */
454#define wxUSE_GAUGE 0
455/*
456 * Use this control
457 */
458#define wxUSE_GRID 0
459/*
ddb4769e
VZ
460 * Use the new prototype wxGrid classes
461 * (wxUSE_GRID must also be defined)
75ef19df 462 */
f85afd4e
MB
463#define wxUSE_NEW_GRID 0
464/*
ddb4769e 465 * Use wxImageList class
f85afd4e 466 */
75ef19df
RR
467#define wxUSE_IMAGLIST 0
468/*
469 * Use this control
470 */
471#define wxUSE_LISTBOX 0
472/*
473 * Use this control
474 */
475#define wxUSE_LISTCTRL 0
1e6feb95
VZ
476/*
477 * Use wxMenuBar, wxMenuItem and wxMenu
478 */
479#define wxUSE_MENUS 0
75ef19df
RR
480/*
481 * Use this control
482 */
483#define wxUSE_NOTEBOOK 0
e9c0df38 484#define wxUSE_LISTBOOK 0
92bbdbcd 485#define wxUSE_CHOICEBOOK 0
75ef19df
RR
486/*
487 * Use this control
488 */
489#define wxUSE_RADIOBOX 0
490/*
491 * Use this control
492 */
493#define wxUSE_RADIOBTN 0
494/*
495 * Use this control
496 */
497#define wxUSE_SASH 0
498/*
499 * Use this control
500 */
501#define wxUSE_SCROLLBAR 0
502/*
503 * Use this control
504 */
505#define wxUSE_SLIDER 0
506/*
507 * Use this control
508 */
509#define wxUSE_SPINBTN 0
63081513
RR
510/*
511 * Use this control
512 */
513#define wxUSE_SPINCTRL 0
75ef19df
RR
514/*
515 * Use this control
516 */
517#define wxUSE_SPLITTER 0
518/*
519 * Use this control
520 */
521#define wxUSE_STATBMP 0
522/*
523 * Use this control
524 */
525#define wxUSE_STATBOX 0
526/*
527 * Use this control
528 */
529#define wxUSE_STATLINE 0
530/*
531 * Use this control
532 */
1e6feb95
VZ
533#define wxUSE_STATTEXT 0
534/*
535 * Use this control
536 */
537#define wxUSE_STATUSBAR 0
1db8dc4a
VZ
538/*
539 * Use this control
540 */
541#define wxUSE_TOGGLEBTN 0
75ef19df
RR
542/*
543 * Use Tab dialog class - obsolete, use wxNotebook instead
544 */
545#define wxUSE_TAB_DIALOG 0
546/* compatibility */
547#define wxUSE_TABDIALOG wxUSE_TAB_DIALOG
b685cd9b 548
1e6feb95
VZ
549/*
550 * Use wxTextCtrl
551 */
552#define wxUSE_TEXTCTRL 0
553
b685cd9b 554/*
360d6699 555 * Use wxToollBar
b685cd9b 556 */
360d6699 557#define wxUSE_TOOLBAR 0
b685cd9b 558
75ef19df 559/*
360d6699
VZ
560 * If 1, use the native toolbar, otherwise use the generic version
561 * (wxToolBarSimple) which may also be use together with the native one.
75ef19df 562 */
360d6699
VZ
563#define wxUSE_TOOLBAR_NATIVE 0
564
bfde68e4
GD
565/*
566 * Use wxTreeLayout class
567 */
568#define wxUSE_TREELAYOUT 0
569
75ef19df
RR
570/*
571 * Use this control
572 */
573#define wxUSE_TREECTRL 0
574
575/*
576 * Use wxLongLong (a.k.a. int64) class
577 */
578#define wxUSE_LONGLONG 0
579
44f889cb
RR
580/*
581 * Use geometry classes
582 */
583#define wxUSE_GEOMETRY 0
584
1e6feb95
VZ
585/*
586 * Use wxCmdLineParser class
587 */
588#define wxUSE_CMDLINE_PARSER 0
589/*
590 * Use wxDateTime
591 */
592#define wxUSE_DATETIME 0
75ef19df
RR
593/*
594 * Use wxFile class
595 */
596#define wxUSE_FILE 0
1e6feb95
VZ
597/*
598 * Use wxFFile class
599 */
600#define wxUSE_FFILE 0
05815ab3
VZ
601/*
602 * Use wxFSVolume class
603 */
604#define wxUSE_FSVOLUME 1
605
a3a584a7
VZ
606/*
607 * Use wxTextBuffer class
608 */
609#define wxUSE_TEXTBUFFER 0
75ef19df
RR
610/*
611 * Use wxTextFile class
612 */
613#define wxUSE_TEXTFILE 0
44f889cb 614
4199367e
VZ
615#define wxUSE_EXCEPTIONS 0
616
75ef19df
RR
617/*
618 * Use log classes and logging functions
619 */
620#define wxUSE_LOG 0
1e6feb95
VZ
621/*
622 * Use log window
623 */
624#define wxUSE_LOGWINDOW 0
625/*
626 * Use standard GUI logger
627 */
628#define wxUSE_LOGGUI 0
dcb99cd3
VZ
629/*
630 * Use old log dialog instead of new wxLogGui
631 */
69d27ff7 632#define wxUSE_LOG_DIALOG 0
1e6feb95
VZ
633/*
634 * Use wxStopWatch
635 */
636#define wxUSE_STOPWATCH 0
75ef19df
RR
637/*
638 * Use time and date classes
639 */
640#define wxUSE_TIMEDATE 0
641/*
642 * Use wave class
643 */
002ed9af 644#define wxUSE_SOUND 0
75ef19df
RR
645/*
646 * Use config system
647 */
648#define wxUSE_CONFIG 0
1e6feb95
VZ
649/*
650 * Use font mapping/conversion classes
651 */
652#define wxUSE_FONTMAP 0
75ef19df
RR
653/*
654 * Use intl system
655 */
656#define wxUSE_INTL 0
a5d46b73
VZ
657/*
658 * Use wxProtocol and related classes
659 */
660#define wxUSE_PROTOCOL 0
661#define wxUSE_PROTOCOL_FILE 0
662#define wxUSE_PROTOCOL_FTP 0
663#define wxUSE_PROTOCOL_HTTP 0
75ef19df
RR
664/*
665 * Use streams
666 */
667#define wxUSE_STREAMS 0
75ef19df
RR
668/*
669 * Use sockets
670 */
671#define wxUSE_SOCKETS 0
1c8515f9
KB
672/*
673 * Use dialup manager
674 */
675#define wxUSE_DIALUP_MANAGER 0
75ef19df
RR
676/*
677 * Use standard C++ streams if 1. If 0, use wxWin
678 * streams implementation.
679 */
680#define wxUSE_STD_IOSTREAM 0
681/*
682 * wxLibrary class
683 */
684#define wxUSE_DYNLIB_CLASS 0
0b9ab0bd
RL
685/*
686 * Use wxObjectLoader
687 */
688#define wxUSE_DYNAMIC_LOADER 0
75ef19df 689
1e6feb95
VZ
690/*
691 * Use wxTimer
692 */
693#define wxUSE_TIMER 0
694
75ef19df
RR
695/*
696 * Use font metric files in GetTextExtent for wxPostScriptDC
697 * Use consistent PostScript fonts for AFM and printing (!)
698 */
699#define wxUSE_AFM_FOR_POSTSCRIPT 0
700#define wxUSE_NORMALIZED_PS_FONTS 0
701
702/* compatibility */
703#define WX_NORMALIZED_PS_FONTS wxUSE_NORMALIZED_PS_FONTS
704
705/*
706 * Use PostScript device context
707 */
708#define wxUSE_POSTSCRIPT 0
709
710/*
f6bcfd97 711 * Compile wxString with some Unicode (wide character) support?
e90c1d2a
VZ
712 */
713#define wxUSE_WCHAR_T 0
714
715/*
f49347d1 716 * Compile wxWindows in Unicode mode?
75ef19df
RR
717 */
718#define wxUSE_UNICODE 0
719
db3272a0
VS
720/*
721 * Use MS Layer for Unicode on Win9X (Win32 only)?
722 */
723#define wxUSE_UNICODE_MSLU 0
724
0fbf5682
VS
725/*
726 * Set to 1 to compile MS Windows XP theme engine support
727 */
728#define wxUSE_UXTHEME 1
729
730/*
731 * Set to 1 to auto-adapt to MS Windows XP themes where possible
732 * (notably, wxNotebook pages)
733 */
734#define wxUSE_UXTHEME_AUTO 1
735
eca1e6a0
VS
736/*
737 * Set to 1 to use mousewheel events on Windows
738 */
739#define wxUSE_MOUSEWHEEL 1
740
263da348
VS
741/*
742 * Hotkey support (Windows)
743 */
744#define wxUSE_HOTKEY 1
745
a5d46b73
VZ
746/*
747 * Use wxURL class
748 */
749#define wxUSE_URL 0
750
75ef19df
RR
751/*
752 * Work around a bug in GNU libc 5.x wcstombs() implementation.
753 *
754 * Note that you must link your programs with libc.a if you enable this and you
755 * have libc 5 (you should enable this for libc6 where wcsrtombs() is
756 * thread-safe version of wcstombs()).
757 */
758#define wxUSE_WCSRTOMBS 0
759
75ef19df
RR
760/*
761 * Use the new experimental implementation of wxString::Printf()?
762 *
763 * Warning: enabling this may cause internal compiler errors with gcc!
764 */
765#define wxUSE_EXPERIMENTAL_PRINTF 0
766
767/*
768 * Use Interprocess communication
769 */
770#define wxUSE_IPC 0
771/*
772 * Use wxGetResource & wxWriteResource (change .Xdefaults)
773 */
774#define wxUSE_X_RESOURCES 0
775/*
776 * Use clipboard
777 */
778#define wxUSE_CLIPBOARD 0
1e6feb95
VZ
779/*
780 * Use wxDataObject
781 */
782#define wxUSE_DATAOBJ 0
75ef19df
RR
783/*
784 * Use tooltips
785 */
786#define wxUSE_TOOLTIPS 0
787/*
788 * Use dnd
789 */
790#define wxUSE_DRAG_AND_DROP 0
9165395f
VS
791/*
792 * Use OLE (MSW only)
793 */
794#define wxUSE_OLE 0
75ef19df
RR
795/*
796 * Use spline
797 */
798#define wxUSE_SPLINES 0
75ef19df
RR
799
800/*
a73ce5bf 801 * Use MDI.
75ef19df 802 */
a73ce5bf 803#define wxUSE_MDI 0
57c1e032 804/*
a73ce5bf 805 * Use the mdi architecture
57c1e032 806 */
a73ce5bf 807#define wxUSE_MDI_ARCHITECTURE 0
75ef19df
RR
808/*
809 * Use the document/view architecture
810 */
811#define wxUSE_DOC_VIEW_ARCHITECTURE 0
812/*
813 * Use the print/preview architecture
814 */
815#define wxUSE_PRINTING_ARCHITECTURE 0
816
817/*
818 * Use Prolog IO
819 */
820#define wxUSE_PROLOGIO 0
821/*
822 * Use wxWindows resource loading (.wxr-files) (Needs wxUSE_PROLOGIO 1)
823 */
824#define wxUSE_RESOURCES 0
825
826/* for compatibility */
827#define wxUSE_WX_RESOURCES wxUSE_RESOURCES
828
829/*
3379ed37 830 * Use wxWindows help facility
75ef19df
RR
831 */
832#define wxUSE_HELP 0
3379ed37
VZ
833/*
834 * Use built-in HTML-based help controller
835 */
836#define wxUSE_WXHTML_HELP 0
29fd3c0c
VS
837/*
838 * Use MS HTML Help controller (win32)
839 */
840#define wxUSE_MS_HTML_HELP 0
c839485c
VS
841/*
842 * Use MS HTML Help via libmspack (Unix)
843 */
844#define wxUSE_LIBMSPACK 0
3379ed37 845
75ef19df
RR
846/*
847 * Use iostream.h rather than iostream
848 */
849#define wxUSE_IOSTREAMH 0
850/*
851 * Use Apple Ieee-double converter
852 */
853#define wxUSE_APPLE_IEEE 0
54276ccf
VZ
854/*
855 * Compatibility with 2.2 API
856 */
857#define WXWIN_COMPATIBILITY_2_2 0
134ecc85
VZ
858/*
859 * Compatibility with 2.4 API
860 */
861#define WXWIN_COMPATIBILITY_2_4 0
75ef19df
RR
862/*
863 * Enables debugging: memory tracing, assert, etc., contains debug level
864 */
865#define WXDEBUG 0
866/*
867 * Enables debugging version of wxObject::new and wxObject::delete (IF WXDEBUG)
868 * WARNING: this code may not work with all architectures, especially
869 * if alignment is an issue.
870 */
871#define wxUSE_MEMORY_TRACING 0
872/*
873 * Enable debugging version of global memory operators new and delete
874 * Disable it, If this causes problems (e.g. link errors)
875 */
876#define wxUSE_DEBUG_NEW_ALWAYS 0
877/*
878 * VZ: What does this one do? (FIXME)
879 */
880#define wxUSE_DEBUG_CONTEXT 0
881/*
882 * In debug mode, causes new to be defined to
883 * be WXDEBUG_NEW (see object.h). If this causes
884 * problems (e.g. link errors), set this to 0.
885 */
886#define wxUSE_GLOBAL_MEMORY_OPERATORS 0
887/*
888 * Matthews garbage collection (used for MrEd?)
889 */
890#define WXGARBAGE_COLLECTION_ON 0
891/*
892 * Use splines
893 */
894#define wxUSE_SPLINES 0
895/*
896 * wxUSE_DYNAMIC_CLASSES is TRUE for the Xt port
897 */
898#define wxUSE_DYNAMIC_CLASSES 1
899
900/*
901 * Support for metafiles
902 */
903#define wxUSE_METAFILE 0
b64f0a5f 904#define wxUSE_ENH_METAFILE 0
75ef19df
RR
905
906/*
907 * wxMiniFrame
908 */
909#define wxUSE_MINIFRAME 0
910
911/*
912 * wxHTML
913 */
914#define wxUSE_HTML 0
915
9a8f0513
VS
916/*
917 * wxXRC
918 */
919#define wxUSE_XRC 0
920
ec9f9256
JS
921/*
922 * wxWebKitCtrl
923 */
924#define wxUSE_WEBKIT 0
925
75ef19df
RR
926/*
927 * (virtual) filesystems code
928 */
24528b0c 929#define wxUSE_FILESYSTEM 0
75ef19df
RR
930#define wxUSE_FS_INET 0
931#define wxUSE_FS_ZIP 0
932
933/*
934 * A class that shows info window when app is busy
935 * (works exactly like wxBusyCursor)
936 */
1db8dc4a 937#define wxUSE_BUSYINFO 0
75ef19df
RR
938
939/*
940 * Zip stream for accessing files stored inside .zip archives
941 */
942#define wxUSE_ZIPSTREAM 0
943
d275c7eb
VZ
944/*
945 * wxPalette class
946 */
947#define wxUSE_PALETTE 0
948
0046ff7c
VS
949/*
950 * wxImage support
951 */
952#define wxUSE_IMAGE 0
953
0940bcf7
HH
954/*
955 * GIF image format support
956 */
957#define wxUSE_GIF 0
958
959/*
960 * PCX image format support
961 */
962#define wxUSE_PCX 0
963
4b6b4dfc
RR
964/*
965 * IFF image format support
966 */
967#define wxUSE_IFF 0
968
0940bcf7
HH
969/*
970 * PNM image format support
971 */
972#define wxUSE_PNM 0
1db8dc4a 973
0046ff7c
VS
974/*
975 * XPM image format support
976 */
977#define wxUSE_XPM 0
978
36e80997 979/*
f9a03a02 980 * MS ICO (and CUR,ANI derivatives) image format support (on any platform)
36e80997
GD
981 */
982#define wxUSE_ICO_CUR 0
983
263da348
VS
984/*
985 * Set to 1 if for dynamically loadable plugins support
f93ca9fd
VS
986 */
987#define wxUSE_PLUGINS 0
988
75ef19df
RR
989/*
990 * Disable this if your compiler can't cope
991 * with omission of prototype parameters.
992 */
993#define REMOVE_UNUSED_ARG 1
994/*
995 * The const keyword is being introduced more in wxWindows.
996 * You can use this setting to maintain backward compatibility.
997 * If 0: will use const wherever possible.
998 * If 1: will use const only where necessary
999 * for precompiled headers to work.
1000 * If 2: will be totally backward compatible, but precompiled
1001 * headers may not work and program size will be larger.
1002 */
1003#define CONST_COMPATIBILITY 0
1004
360d6699
VZ
1005/* define with the name of timezone variable */
1006#undef WX_TIMEZONE
1007
75ef19df
RR
1008/* The type of 3rd argument to getsockname() - usually size_t or int */
1009#undef SOCKLEN_T
1010
54ab82b3
VZ
1011/* The type of statvfs(2) argument */
1012#undef WX_STATFS_T
1013
f6bcfd97
BP
1014/* The signal handler prototype */
1015#undef wxTYPE_SA_HANDLER
1016
afc31813
VZ
1017/* gettimeofday() usually takes 2 arguments, but some really old systems might
1018 * have only one, in which case define WX_GETTIMEOFDAY_NO_TZ */
1019#undef WX_GETTIMEOFDAY_NO_TZ
1020
0470b1e6
VZ
1021/* struct tm doesn't always have the tm_gmtoff field, define this if it does */
1022#undef WX_GMTOFF_IN_TM
1023
2b5f62a0
VZ
1024/* Define if you have poll(2) function */
1025#undef HAVE_POLL
1026
bd3277fe
VZ
1027/* Define if you have pw_gecos field in struct passwd */
1028#undef HAVE_PW_GECOS
1029
75ef19df
RR
1030/* Define if you have dlopen() */
1031#undef HAVE_DLOPEN
1032
afc31813
VZ
1033/* Define if you have gettimeofday() */
1034#undef HAVE_GETTIMEOFDAY
1035
1036/* Define if you have ftime() */
1037#undef HAVE_FTIME
1038
90dd450c
VZ
1039/* Define if you have support for large (64 bit size) files */
1040#undef HAVE_LARGEFILE_SUPPORT
1041
afc31813
VZ
1042/* Define if you have localtime() */
1043#undef HAVE_LOCALTIME
1044
75ef19df
RR
1045/* Define if you have nanosleep() */
1046#undef HAVE_NANOSLEEP
1047
1048/* Define if you have sched_yield */
1049#undef HAVE_SCHED_YIELD
1050
d9b9876f
VZ
1051/* Define if you have pthread_mutexattr_t and functions to work with it */
1052#undef HAVE_PTHREAD_MUTEXATTR_T
1053
1054/* Define if you have PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP */
1055#undef HAVE_PTHREAD_RECURSIVE_MUTEX_INITIALIZER
1056
75ef19df
RR
1057/* Define if you have pthread_cancel */
1058#undef HAVE_PTHREAD_CANCEL
1059
eb4efbdc
VZ
1060/* Define if you have sigaction() */
1061#undef HAVE_SIGACTION
1062
1063/* Define if you have sigemptyset() */
1064#undef HAVE_SIGEMPTYSET
1065
270a909e
VZ
1066/* Define if you have shl_load() */
1067#undef HAVE_SHL_LOAD
1068
52e8b690
VZ
1069/* define if you have statfs function */
1070#undef HAVE_STATFS
1071
9952adac
VZ
1072/* define if you have statvfs function */
1073#undef HAVE_STATVFS
1074
83307f33
VZ
1075/* Define if you have strptime() */
1076#undef HAVE_STRPTIME
1077
75ef19df
RR
1078/* Define if you have all functions to set thread priority */
1079#undef HAVE_THREAD_PRIORITY_FUNCTIONS
1080
1081/* Define if you can specify exit functions to a thread */
1082#undef HAVE_THREAD_CLEANUP_FUNCTIONS
1083
270a909e
VZ
1084/* Define if you have timegm() function */
1085#undef HAVE_TIMEGM
75ef19df
RR
1086
1087/* Define if you have vsnprintf() */
1088#undef HAVE_VSNPRINTF
1089
ec0d6da3
VZ
1090/* Define if you have vsnprintf() declaration in the header */
1091#undef HAVE_VSNPRINTF_DECL
1092
75ef19df
RR
1093/* Define if you have usleep() */
1094#undef HAVE_USLEEP
1095
1096/* Define if you have wcslen function */
1097#undef HAVE_WCSLEN
1098
1099/* define if you have vsscanf function */
1100#undef HAVE_VSSCANF
1101
1102/* The number of bytes in a char. */
1103#undef SIZEOF_CHAR
1104
6f72b082
OK
1105/* The number of bytes in a wchar_t. */
1106#undef SIZEOF_WCHAR_T
1107
75ef19df
RR
1108/* The number of bytes in a int. */
1109#undef SIZEOF_INT
1110
a369f7c8
VZ
1111/* The number of bytes in a pointer. */
1112#undef SIZEOF_VOID_P
75ef19df
RR
1113
1114/* The number of bytes in a long. */
1115#undef SIZEOF_LONG
1116
1117/* The number of bytes in a long long. */
1118#undef SIZEOF_LONG_LONG
1119
1120/* The number of bytes in a short. */
1121#undef SIZEOF_SHORT
1122
a369f7c8
VZ
1123/* The number of bytes in a size_t. */
1124#undef SIZEOF_SIZE_T
1125
d836ee96
VZ
1126/* Define if size_t on your machine is the same type as unsigned int. */
1127#undef wxSIZE_T_IS_UINT
1128
1129/* Define if size_t on your machine is the same type as unsigned long. */
1130#undef wxSIZE_T_IS_ULONG
1131
75ef19df
RR
1132/* Define if you have the dlopen function. */
1133#undef HAVE_DLOPEN
1134
f6bcfd97
BP
1135/* Define if you have the dlerror function. */
1136#undef HAVE_DLERROR
1137
4f3c5f06
VZ
1138/* Define if you have Posix fnctl() function. */
1139#undef HAVE_FCNTL
1140
1141/* Define if you have BSD flock() function. */
1142#undef HAVE_FLOCK
1143
75ef19df
RR
1144/* Define if you have the gethostname function. */
1145#undef HAVE_GETHOSTNAME
1146
1147/* Define if you have the inet_addr function. */
1148#undef HAVE_INET_ADDR
1149
1150/* Define if you have the inet_aton function. */
1151#undef HAVE_INET_ATON
1152
ade35f11
VZ
1153/* Define if you have the mktemp function. */
1154#undef HAVE_MKTEMP
1155
1156/* Define if you have the mkstemp function. */
1157#undef HAVE_MKSTEMP
1158
75ef19df
RR
1159/* Define if you have the nanosleep function. */
1160#undef HAVE_NANOSLEEP
1161
8fd0d89b
VZ
1162/* Define if you have the putenv function. */
1163#undef HAVE_PUTENV
1164
1165/* Define if you have the setenv function. */
1166#undef HAVE_SETENV
1167
75ef19df
RR
1168/* Define if you have the shl_load function. */
1169#undef HAVE_SHL_LOAD
1170
e90c1d2a
VZ
1171/* Define if you have strtok_r function. */
1172#undef HAVE_STRTOK_R
1173
9ec64fa7 1174/* Define if you have thr_setconcurrency function */
eb4efbdc 1175#undef HAVE_THR_SETCONCURRENCY
9ec64fa7 1176
75ef19df
RR
1177/* Define if you have the uname function. */
1178#undef HAVE_UNAME
1179
1180/* Define if you have the usleep function. */
1181#undef HAVE_USLEEP
1182
75ef19df
RR
1183/* Define if you have the <X11/XKBlib.h> header file. */
1184#undef HAVE_X11_XKBLIB_H
1185
505c8ccd
VS
1186/* Define if you have the <X11/extensions/xf86vmode.h> header file. */
1187#undef HAVE_X11_EXTENSIONS_XF86VMODE_H
1188
f530f862
VZ
1189/* Define if you have the fnmatch() function */
1190#undef HAVE_FNMATCH
1191
75ef19df
RR
1192/* Define if you have the <fnmatch.h> header file. */
1193#undef HAVE_FNMATCH_H
1194
1195/* Define if you have the <iostream> header file. */
1196#undef HAVE_IOSTREAM
1197
1198/* Define if you have the <linux/joystick.h> header file. */
1199#undef HAVE_LINUX_JOYSTICK_H
1200
1201/* Define if you have the <sched.h> header file. */
1202#undef HAVE_SCHED_H
1203
75ef19df
RR
1204/* Define if you have the <unistd.h> header file. */
1205#undef HAVE_UNISTD_H
1206
0fb0dd83
RR
1207/* Define if you have the <fcntl.h> header file. */
1208#undef HAVE_FCNTL_H
1209
75ef19df
RR
1210/* Define if you have the <wchar.h> header file. */
1211#undef HAVE_WCHAR_H
1212
1213/* Define if you have the <wcstr.h> header file. */
1214#undef HAVE_WCSTR_H
1215
0fbb762e
MB
1216/* Define if you have the <wctype.h> header file. */
1217#undef HAVE_WCTYPE_H
1218
b040e242
VS
1219/* Define if you have the <iconv.h> header file and iconv() symbol. */
1220#undef HAVE_ICONV
6f72b082 1221
b040e242
VS
1222/* Define as "const" if the declaration of iconv() needs const. */
1223#undef ICONV_CONST
29f45f85 1224
6f72b082
OK
1225/* Define if you have the <langinfo.h> header file. */
1226#undef HAVE_LANGINFO_H
1227
d4158b5d
VS
1228/* Define if you have the <w32api.h> header file (mingw,cygwin). */
1229#undef HAVE_W32API_H
1230
38d85c64
VS
1231/* Define if you have the <esd.h> header file. */
1232#undef HAVE_ESD_H
1233
f93ca9fd
VS
1234/* Define if you have the <sys/soundcard.h> header file. */
1235#undef HAVE_SYS_SOUNDCARD_H
1236
d19d1899
MB
1237/* Define if you have a CD-ROM interface known to mmedia. */
1238#undef HAVE_KNOWN_CDROM_INTERFACE
1239
b3e8d00a
VZ
1240/* Define if you have wcsrtombs() function */
1241#undef HAVE_WCSRTOMBS
1242
fbe47c7b
VS
1243/* Define this if you have wputc() */
1244#undef HAVE_WPUTC
1245
1246/* Define this if you have wputchar() */
1247#undef HAVE_WPUTCHAR
1248
1249/* Define this if you have putws() */
1250#undef HAVE_PUTWS
1251
1252/* Define this if you have fputws() */
1253#undef HAVE_FPUTWS
d74f4b5a 1254
1c2d1459
VZ
1255/* Define this if you have strcasecmp() function in <string.h> */
1256#undef HAVE_STRCASECMP_IN_STRING_H
1257
1258/* Define this if you have strcasecmp() function in <strings.h> */
1259#undef HAVE_STRCASECMP_IN_STRINGS_H
1260
d74f4b5a
VZ
1261/* Define this if you have wprintf() and related functions */
1262#undef HAVE_WPRINTF
1263
5c6fa7d2
RR
1264/* Define this if you have wprintf() and related functions */
1265#undef HAVE_VSWPRINTF
1266
79668cae
MB
1267/* Define this if you have _vsnwprintf */
1268#undef HAVE__VSNWPRINTF
1269
7799a2d7 1270/* Define this if you are using gtk and gdk contains support for X11R6 XIM */
d84b26a7 1271#undef HAVE_XIM
7799a2d7 1272
0ed330b4 1273/* Define this if you have X11/extensions/shape.h */
f7f78039 1274#undef HAVE_XSHAPE
3a922bb4 1275
0ed330b4
SN
1276/* Define this if you have type SPBCDATA */
1277#undef HAVE_SPBCDATA
1278
304205f1
VS
1279/* Define if you have pango_font_family_is_monospace() (Pango >= 1.3.3) */
1280#undef HAVE_PANGO_FONT_FAMILY_IS_MONOSPACE
1281
1d65a68f
VZ
1282/* -------------------------------------------------------------------------
1283 Win32 adjustments section
1284 ------------------------------------------------------------------------- */
1285
1286#ifdef __WIN32__
1287
1288/* we need to define wxUSE_XPM_IN_MSW for MSW compilation for compatibility
1289 with wx/msw/setup.h */
1290#define wxUSE_XPM_IN_MSW wxUSE_XPM
1291
1292#endif /* __WIN32__ */
1293
3a922bb4
RL
1294/* --------------------------------------------------------*
1295 * This stuff is static, it doesn't get modified directly
1296 * by configure.
1297*/
1298
1299#include "wx/chkconf.h"
1300
1301/*
1302 define some constants identifying wxWindows version in more details than
1303 just the version number
1304 */
1305
1306/* wxLogChain class available */
1307#define wxHAS_LOG_CHAIN
1308
1309/* define this when wxDC::Blit() respects SetDeviceOrigin() in wxGTK */
1310#undef wxHAS_WORKING_GTK_DC_BLIT
1311
1312
75ef19df 1313#endif /* __WX_SETUP_H__ */
3a922bb4 1314