/////////////////////////////////////////////////////////////////////////////
// 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
*
*/
+#define wxUSE_GEOMETRY 1
#define WORDS_BIGENDIAN 1
#define wxUSE_CONFIG 1
// 0 for no Metafile and metafile device context
#define wxUSE_IPC 0
// 0 for no interprocess comms
-#define wxUSE_HELP 0
+#define wxUSE_HELP 1
// 0 for no help facility
#define wxUSE_RESOURCES 1
// 0 for no wxGetResource/wxWriteResource
// 0 for no drag and drop
#define wxUSE_TOOLBAR 1
+#define wxUSE_TOOLBAR_NATIVE 1
// Define 1 to use toolbar classes
#define wxUSE_BUTTONBAR 1
// Define 1 to use buttonbar classes (enhanced toolbar
// 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)?
// wxObject::delete *IF* __WXDEBUG__ is also defined.
// WARNING: this code may not work with all architectures, especially
// if alignment is an issue.
+#ifndef __MWERKS__
+#define wxUSE_DEBUG_CONTEXT 0
+#else
#define wxUSE_DEBUG_CONTEXT 1
+#endif
// If 1, enables wxDebugContext, for
// writing error messages to file, etc.
// If __WXDEBUG__ is not defined, will still use
// Set this to 0 if your compiler can't cope
// with omission of prototype parameters.
-#define wxUSE_ODBC 1
+#define wxUSE_ODBC 0
// Define 1 to use ODBC classes
#define wxUSE_STREAMS 1
// If enabled (1), compiles wxWindows streams classes
+#ifndef __MWERKS__
+#define wxUSE_STD_IOSTREAM 0
+#else
#define wxUSE_STD_IOSTREAM 1
// Use standard C++ streams if 1. If 0, use wxWin
// streams implementation.
+#endif
#define wxUSE_WXCONFIG 1
// 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 0
+#define wxUSE_LIBJPEG 1
// Use JPEG bitmap code
+#define wxUSE_LIBTIFF 1
+ // Use TIFF bitmap code
+#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
// Define to use wxToolTip class and
// wxWindow::SetToolTip() method
-#define wxUSE_SOCKETS 0 // 0
+#define wxUSE_SOCKETS 1 // 0
// Set to 1 to use socket classes
#define wxUSE_HTML 1 // 0
// Set to 1 to use wxHTML sub-library
+#define wxUSE_FILESYSTEM 1
+
#define wxUSE_FS_ZIP 1 // 0
#define wxUSE_FS_INET 1 // 0 // Set to 1 to enable virtual file systems
#define wxUSE_ZIPSTREAM 1 // 0
// input stream for reading from zip archives
+// OpenGL canvas
+#define wxUSE_GLCANVAS 1
/*
* Finer detail
*
// 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
// text entry dialog and wxGetTextFromUser function
#define wxUSE_TEXTDLG 1
-// wxToolBar class
-#define wxUSE_TOOLBAR 1
-
// wxStatusBar class
#define wxUSE_STATUSBAR 1