X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/05adb9d2fdc40d8620730be490bf406b8e367cf8..38caaa61b154f60871cb6ec82040362762dd2dba:/include/wx/mac/setup.h diff --git a/include/wx/mac/setup.h b/include/wx/mac/setup.h index bdbcba2aff..372737214d 100644 --- a/include/wx/mac/setup.h +++ b/include/wx/mac/setup.h @@ -1,8 +1,8 @@ ///////////////////////////////////////////////////////////////////////////// // Name: setup.h // Purpose: Configuration for the library -// Author: AUTHOR -// Modified by: +// Author: Stefan Csomor +// Modified by: Stefan Csomor // Created: ??/??/98 // RCS-ID: $Id$ // Copyright: (c) AUTHOR @@ -84,6 +84,10 @@ // Define 1 to compile listbox #define wxUSE_SPINBTN 1 + +#define wxUSE_SPINCTRL 1 + +#define wxUSE_NOTEBOOK 1 // Define 1 to compile spin button // use wxStaticLine class (separator line in the dialog)? @@ -199,12 +203,28 @@ // if enabled, compiles built-in OS independent wxConfig // class and it's file (any platform) and registry (Win) // based implementations -#define wxUSE_THREADS 0 +#define wxUSE_THREADS 1 // support for multithreaded applications: if // 1, compile in thread classes (thread.h) // and make the library thread safe #define wxUSE_ZLIB 1 // Use zlib for compression in streams and PNG code + +// ---------------------------------------------------------------------------- +// image format support +// ---------------------------------------------------------------------------- + +// wxImage supports many different image formats which can be configured at +// compile-time. BMP is always supported, others are optional and can be safely +// disabled if you don't plan to use images in such format sometimes saving +// substantial amount of code in the final library. +// +// Some formats require an extra library which is included in wxWin sources +// which is mentioned if it is the case. + +// Set to 1 for wxImage support (recommended). +#define wxUSE_IMAGE 1 + #define wxUSE_LIBPNG 1 // Use PNG bitmap code #define wxUSE_LIBJPEG 1 @@ -214,9 +234,18 @@ #define wxUSE_GIF 1 // Use GIF bitmap code +// Set to 1 for PNM format support +#define wxUSE_PNM 1 + +// Set to 1 for PCX format support +#define wxUSE_PCX 1 + +// Set to 1 for XPM format support +#define wxUSE_XPM 1 + #define wxUSE_SERIAL 0 // Use serialization (requires utils/serialize) -#define wxUSE_DYNLIB_CLASS 0 +#define wxUSE_DYNLIB_CLASS 1 // Compile in wxLibrary class for run-time // DLL loading and function calling #define wxUSE_TOOLTIPS 1 @@ -238,6 +267,8 @@ #define wxUSE_ZIPSTREAM 1 // 0 // input stream for reading from zip archives +// OpenGL canvas +#define wxUSE_GLCANVAS 1 /* * Finer detail * @@ -254,7 +285,7 @@ // use wxTextFile class: requires wxFile, required by wxConfig #define wxUSE_TEXTFILE 1 -// i18n support: _() macro, wxLocale class. Requires wxFile +// i18n support: _() macro, wxLocale class. Requires wxTextFile. #define wxUSE_INTL 1 // wxLogXXX functions - highly recommended