]> git.saurik.com Git - wxWidgets.git/blame - include/wx/apptrait.h
under compositing windows when using the 'classic' mlte we must remove and reinsert...
[wxWidgets.git] / include / wx / apptrait.h
CommitLineData
e2478fde
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/apptrait.h
3// Purpose: declaration of wxAppTraits and derived classes
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 19.06.2003
7// RCS-ID: $Id$
77ffb593 8// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
65571936 9// Licence: wxWindows licence
e2478fde
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_APPTRAIT_H_
13#define _WX_APPTRAIT_H_
14
a8eaaeb2
VS
15#include "wx/string.h"
16
17class WXDLLIMPEXP_BASE wxObject;
e2478fde
VZ
18class WXDLLEXPORT wxAppTraits;
19#if wxUSE_FONTMAP
20 class WXDLLEXPORT wxFontMapper;
21#endif // wxUSE_FONTMAP
a8eaaeb2
VS
22class WXDLLIMPEXP_BASE wxLog;
23class WXDLLIMPEXP_BASE wxMessageOutput;
f0244295 24class WXDLLEXPORT wxRendererNative;
a8eaaeb2 25class WXDLLIMPEXP_BASE wxString;
a8eaaeb2 26
3e1400ac 27class GSocketGUIFunctionsTable;
38bb138f 28
a8eaaeb2
VS
29// ----------------------------------------------------------------------------
30// toolkit information
31// ----------------------------------------------------------------------------
32
33// Information about the toolkit that the app is running under (e.g. wxMSW):
34struct WXDLLIMPEXP_BASE wxToolkitInfo
35{
36 // Short name of the toolkit (e.g. "msw" or "mswuniv"); empty for console:
37 wxString shortName;
38 // Descriptive name of the toolkit, human readable (e.g. "wxMSW" or
39 // "wxMSW/Universal"); "wxBase" for console apps:
40 wxString name;
41 // Version of the underlying toolkit or of the OS for console apps:
42 int versionMajor, versionMinor;
43 // OS mnenomics, e.g. wxGTK or wxMSW:
44 int os;
45};
46
e2478fde
VZ
47
48// ----------------------------------------------------------------------------
49// wxAppTraits: this class defines various configurable aspects of wxApp
50// ----------------------------------------------------------------------------
51
fc480dc1
DE
52class WXDLLIMPEXP_BASE wxStandardPathsBase;
53
7af1b539 54class WXDLLIMPEXP_BASE wxAppTraitsBase
e2478fde
VZ
55{
56public:
e2478fde
VZ
57 // hooks for creating the global objects, may be overridden by the user
58 // ------------------------------------------------------------------------
59
60#if wxUSE_LOG
61 // create the default log target
62 virtual wxLog *CreateLogTarget() = 0;
63#endif // wxUSE_LOG
64
65 // create the global object used for printing out messages
66 virtual wxMessageOutput *CreateMessageOutput() = 0;
67
68#if wxUSE_FONTMAP
69 // create the global font mapper object used for encodings/charset mapping
70 virtual wxFontMapper *CreateFontMapper() = 0;
71#endif // wxUSE_FONTMAP
72
f0244295
VZ
73 // get the renderer to use for drawing the generic controls (return value
74 // may be NULL in which case the default renderer for the current platform
75 // is used); this is used in GUI only and always returns NULL in console
76 //
77 // NB: returned pointer will be deleted by the caller
78 virtual wxRendererNative *CreateRenderer() = 0;
79
fc480dc1
DE
80 // wxStandardPaths object is normally the same for wxBase and wxGUI
81 // except in the case of wxMac and wxCocoa
4055ed82 82#ifndef __WXPALMOS__
fc480dc1 83 virtual wxStandardPathsBase& GetStandardPaths();
4055ed82 84#endif
e2478fde
VZ
85
86 // functions abstracting differences between GUI and console modes
87 // ------------------------------------------------------------------------
88
89#ifdef __WXDEBUG__
90 // show the assert dialog with the specified message in GUI or just print
91 // the string to stderr in console mode
92 //
93 // base class version has an implementation (in spite of being pure
94 // virtual) in base/appbase.cpp which can be called as last resort.
95 //
96 // return true to suppress subsequent asserts, false to continue as before
97 virtual bool ShowAssertDialog(const wxString& msg) = 0;
98#endif // __WXDEBUG__
99
100 // return true if fprintf(stderr) goes somewhere, false otherwise
101 virtual bool HasStderr() = 0;
102
103 // managing "pending delete" list: in GUI mode we can't immediately delete
104 // some objects because there may be unprocessed events for them and so we
105 // only do it during the next idle loop iteration while this is, of course,
106 // unnecessary in wxBase, so we have a few functions to abstract these
107 // operations
108
109 // add the object to the pending delete list in GUI, delete it immediately
110 // in wxBase
111 virtual void ScheduleForDestroy(wxObject *object) = 0;
112
113 // remove this object from the pending delete list in GUI, do nothing in
114 // wxBase
115 virtual void RemoveFromPendingDelete(wxObject *object) = 0;
2739d4f0 116
38bb138f 117#if wxUSE_SOCKETS
321b8029 118 // return table of GUI callbacks for GSocket code or NULL in wxBase. This
4629016d 119 // is needed because networking classes are in their own library and so
321b8029
VS
120 // they can't directly call GUI functions (the same net library can be
121 // used in both GUI and base apps). To complicate it further, GUI library
122 // ("wxCore") doesn't depend on networking library and so only a functions
123 // table can be passed around
38bb138f
VS
124 virtual GSocketGUIFunctionsTable* GetSocketGUIFunctionsTable() = 0;
125#endif
126
2739d4f0 127
a8eaaeb2
VS
128 // return information about what toolkit is running; we need for two things
129 // that are both contained in wxBase:
130 // - wxGetOsVersion() behaves differently in GUI and non-GUI builds under
131 // Unix: in the former case it returns the information about the toolkit
132 // and in the latter -- about the OS, so we need to virtualize it
133 // - wxDynamicLibrary::CanonicalizePluginName() must embed toolkit
134 // signature in DLL name
324899f6 135 virtual wxToolkitInfo& GetToolkitInfo() = 0;
e2478fde
VZ
136};
137
138// ----------------------------------------------------------------------------
139// include the platform-specific version of the class
140// ----------------------------------------------------------------------------
141
29c99ad3
VZ
142// NB: test for __UNIX__ before __WXMAC__ as under Darwin we want to use the
143// Unix code (and otherwise __UNIX__ wouldn't be defined)
4055ed82 144#if defined(__WXPALMOS__)
ffecfa5a
JS
145 #include "wx/palmos/apptbase.h"
146#elif defined(__WXMSW__)
e2478fde 147 #include "wx/msw/apptbase.h"
621ccd8a 148#elif defined(__UNIX__) && !defined(__EMX__)
2d2d4fc7 149 #include "wx/unix/apptbase.h"
29c99ad3
VZ
150#elif defined(__WXMAC__)
151 #include "wx/mac/apptbase.h"
9fc852b7
SN
152#elif defined(__OS2__)
153 #include "wx/os2/apptbase.h"
46446cc2 154#else // no platform-specific methods to add to wxAppTraits
e2478fde 155 // wxAppTraits must be a class because it was forward declared as class
bb24c68f 156 class WXDLLIMPEXP_BASE wxAppTraits : public wxAppTraitsBase
e2478fde
VZ
157 {
158 };
159#endif // platform
160
161// ============================================================================
162// standard traits for console and GUI applications
163// ============================================================================
164
165// ----------------------------------------------------------------------------
166// wxConsoleAppTraitsBase: wxAppTraits implementation for the console apps
167// ----------------------------------------------------------------------------
168
7af1b539 169class WXDLLIMPEXP_BASE wxConsoleAppTraitsBase : public wxAppTraits
e2478fde
VZ
170{
171public:
172#if wxUSE_LOG
173 virtual wxLog *CreateLogTarget();
174#endif // wxUSE_LOG
175 virtual wxMessageOutput *CreateMessageOutput();
176#if wxUSE_FONTMAP
177 virtual wxFontMapper *CreateFontMapper();
178#endif // wxUSE_FONTMAP
f0244295 179 virtual wxRendererNative *CreateRenderer();
38bb138f
VS
180#if wxUSE_SOCKETS
181 virtual GSocketGUIFunctionsTable* GetSocketGUIFunctionsTable();
182#endif
e2478fde
VZ
183
184#ifdef __WXDEBUG__
185 virtual bool ShowAssertDialog(const wxString& msg);
186#endif // __WXDEBUG__
187 virtual bool HasStderr();
188
189 virtual void ScheduleForDestroy(wxObject *object);
190 virtual void RemoveFromPendingDelete(wxObject *object);
191};
192
193// ----------------------------------------------------------------------------
194// wxGUIAppTraitsBase: wxAppTraits implementation for the GUI apps
195// ----------------------------------------------------------------------------
196
197#if wxUSE_GUI
198
94826170 199class WXDLLEXPORT wxGUIAppTraitsBase : public wxAppTraits
e2478fde
VZ
200{
201public:
202#if wxUSE_LOG
203 virtual wxLog *CreateLogTarget();
204#endif // wxUSE_LOG
205 virtual wxMessageOutput *CreateMessageOutput();
206#if wxUSE_FONTMAP
207 virtual wxFontMapper *CreateFontMapper();
208#endif // wxUSE_FONTMAP
f0244295 209 virtual wxRendererNative *CreateRenderer();
38bb138f
VS
210#if wxUSE_SOCKETS
211 virtual GSocketGUIFunctionsTable* GetSocketGUIFunctionsTable();
212#endif
e2478fde
VZ
213
214#ifdef __WXDEBUG__
215 virtual bool ShowAssertDialog(const wxString& msg);
216#endif // __WXDEBUG__
217 virtual bool HasStderr();
218
219 virtual void ScheduleForDestroy(wxObject *object);
220 virtual void RemoveFromPendingDelete(wxObject *object);
221};
222
223#endif // wxUSE_GUI
224
225// ----------------------------------------------------------------------------
226// include the platform-specific version of the classes above
227// ----------------------------------------------------------------------------
228
4055ed82 229#if defined(__WXPALMOS__)
ffecfa5a
JS
230 #include "wx/palmos/apptrait.h"
231#elif defined(__WXMSW__)
e2478fde 232 #include "wx/msw/apptrait.h"
621ccd8a 233#elif defined(__UNIX__) && !defined(__EMX__)
2d2d4fc7 234 #include "wx/unix/apptrait.h"
29c99ad3
VZ
235#elif defined(__WXMAC__)
236 #include "wx/mac/apptrait.h"
7332d96b 237#elif defined(__WXPM__)
a637417c 238 #include "wx/os2/apptrait.h"
4629016d 239#else
621ccd8a 240 // at least, we need an implementation of GetToolkitInfo !
e2478fde 241 #if wxUSE_GUI
621ccd8a
SN
242 class wxGUIAppTraits : public wxGUIAppTraitsBase
243 {
244 virtual wxToolkitInfo& GetToolkitInfo();
245 };
e2478fde 246 #endif // wxUSE_GUI
4629016d 247 class wxConsoleAppTraits: public wxConsoleAppTraitsBase
621ccd8a
SN
248 {
249 virtual wxToolkitInfo& GetToolkitInfo();
250 };
e2478fde
VZ
251#endif // platform
252
253#endif // _WX_APPTRAIT_H_
254