1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declaration of wxAppTraits and derived classes
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_APPTRAIT_H_
13 #define _WX_APPTRAIT_H_
15 #include "wx/string.h"
17 class WXDLLIMPEXP_BASE wxObject
;
18 class WXDLLEXPORT wxAppTraits
;
20 class WXDLLEXPORT wxFontMapper
;
21 #endif // wxUSE_FONTMAP
22 class WXDLLIMPEXP_BASE wxLog
;
23 class WXDLLIMPEXP_BASE wxMessageOutput
;
24 class WXDLLEXPORT wxRendererNative
;
25 class WXDLLIMPEXP_BASE wxString
;
27 class GSocketGUIFunctionsTable
;
29 // ----------------------------------------------------------------------------
30 // toolkit information
31 // ----------------------------------------------------------------------------
33 // Information about the toolkit that the app is running under (e.g. wxMSW):
34 struct WXDLLIMPEXP_BASE wxToolkitInfo
36 // Short name of the toolkit (e.g. "msw" or "mswuniv"); empty for console:
38 // Descriptive name of the toolkit, human readable (e.g. "wxMSW" or
39 // "wxMSW/Universal"); "wxBase" for console apps:
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:
48 // ----------------------------------------------------------------------------
49 // wxAppTraits: this class defines various configurable aspects of wxApp
50 // ----------------------------------------------------------------------------
52 class WXDLLIMPEXP_BASE wxStandardPathsBase
;
54 class WXDLLIMPEXP_BASE wxAppTraitsBase
57 // needed since this class declares virtual members
58 virtual ~wxAppTraitsBase() { }
60 // hooks for creating the global objects, may be overridden by the user
61 // ------------------------------------------------------------------------
64 // create the default log target
65 virtual wxLog
*CreateLogTarget() = 0;
68 // create the global object used for printing out messages
69 virtual wxMessageOutput
*CreateMessageOutput() = 0;
72 // create the global font mapper object used for encodings/charset mapping
73 virtual wxFontMapper
*CreateFontMapper() = 0;
74 #endif // wxUSE_FONTMAP
76 // get the renderer to use for drawing the generic controls (return value
77 // may be NULL in which case the default renderer for the current platform
78 // is used); this is used in GUI only and always returns NULL in console
80 // NB: returned pointer will be deleted by the caller
81 virtual wxRendererNative
*CreateRenderer() = 0;
83 // wxStandardPaths object is normally the same for wxBase and wxGUI
84 // except in the case of wxMac and wxCocoa
85 virtual wxStandardPathsBase
& GetStandardPaths();
87 // functions abstracting differences between GUI and console modes
88 // ------------------------------------------------------------------------
91 // show the assert dialog with the specified message in GUI or just print
92 // the string to stderr in console mode
94 // base class version has an implementation (in spite of being pure
95 // virtual) in base/appbase.cpp which can be called as last resort.
97 // return true to suppress subsequent asserts, false to continue as before
98 virtual bool ShowAssertDialog(const wxString
& msg
) = 0;
101 // return true if fprintf(stderr) goes somewhere, false otherwise
102 virtual bool HasStderr() = 0;
104 // managing "pending delete" list: in GUI mode we can't immediately delete
105 // some objects because there may be unprocessed events for them and so we
106 // only do it during the next idle loop iteration while this is, of course,
107 // unnecessary in wxBase, so we have a few functions to abstract these
110 // add the object to the pending delete list in GUI, delete it immediately
112 virtual void ScheduleForDestroy(wxObject
*object
) = 0;
114 // remove this object from the pending delete list in GUI, do nothing in
116 virtual void RemoveFromPendingDelete(wxObject
*object
) = 0;
119 // return table of GUI callbacks for GSocket code or NULL in wxBase. This
120 // is needed because networking classes are in their own library and so
121 // they can't directly call GUI functions (the same net library can be
122 // used in both GUI and base apps). To complicate it further, GUI library
123 // ("wxCore") doesn't depend on networking library and so only a functions
124 // table can be passed around
125 virtual GSocketGUIFunctionsTable
* GetSocketGUIFunctionsTable() = 0;
129 // return information about what toolkit is running; we need for two things
130 // that are both contained in wxBase:
131 // - wxGetOsVersion() behaves differently in GUI and non-GUI builds under
132 // Unix: in the former case it returns the information about the toolkit
133 // and in the latter -- about the OS, so we need to virtualize it
134 // - wxDynamicLibrary::CanonicalizePluginName() must embed toolkit
135 // signature in DLL name
136 virtual wxToolkitInfo
& GetToolkitInfo() = 0;
139 // ----------------------------------------------------------------------------
140 // include the platform-specific version of the class
141 // ----------------------------------------------------------------------------
143 // NB: test for __UNIX__ before __WXMAC__ as under Darwin we want to use the
144 // Unix code (and otherwise __UNIX__ wouldn't be defined)
145 #if defined(__WXPALMOS__)
146 #include "wx/palmos/apptbase.h"
147 #elif defined(__WXMSW__)
148 #include "wx/msw/apptbase.h"
149 #elif defined(__UNIX__) && !defined(__EMX__)
150 #include "wx/unix/apptbase.h"
151 #elif defined(__WXMAC__)
152 #include "wx/mac/apptbase.h"
153 #elif defined(__OS2__)
154 #include "wx/os2/apptbase.h"
155 #else // no platform-specific methods to add to wxAppTraits
156 // wxAppTraits must be a class because it was forward declared as class
157 class WXDLLIMPEXP_BASE wxAppTraits
: public wxAppTraitsBase
162 // ============================================================================
163 // standard traits for console and GUI applications
164 // ============================================================================
166 // ----------------------------------------------------------------------------
167 // wxConsoleAppTraitsBase: wxAppTraits implementation for the console apps
168 // ----------------------------------------------------------------------------
170 class WXDLLIMPEXP_BASE wxConsoleAppTraitsBase
: public wxAppTraits
174 virtual wxLog
*CreateLogTarget();
176 virtual wxMessageOutput
*CreateMessageOutput();
178 virtual wxFontMapper
*CreateFontMapper();
179 #endif // wxUSE_FONTMAP
180 virtual wxRendererNative
*CreateRenderer();
182 virtual GSocketGUIFunctionsTable
* GetSocketGUIFunctionsTable();
186 virtual bool ShowAssertDialog(const wxString
& msg
);
187 #endif // __WXDEBUG__
188 virtual bool HasStderr();
190 virtual void ScheduleForDestroy(wxObject
*object
);
191 virtual void RemoveFromPendingDelete(wxObject
*object
);
194 // ----------------------------------------------------------------------------
195 // wxGUIAppTraitsBase: wxAppTraits implementation for the GUI apps
196 // ----------------------------------------------------------------------------
200 class WXDLLEXPORT wxGUIAppTraitsBase
: public wxAppTraits
204 virtual wxLog
*CreateLogTarget();
206 virtual wxMessageOutput
*CreateMessageOutput();
208 virtual wxFontMapper
*CreateFontMapper();
209 #endif // wxUSE_FONTMAP
210 virtual wxRendererNative
*CreateRenderer();
212 virtual GSocketGUIFunctionsTable
* GetSocketGUIFunctionsTable();
216 virtual bool ShowAssertDialog(const wxString
& msg
);
217 #endif // __WXDEBUG__
218 virtual bool HasStderr();
220 virtual void ScheduleForDestroy(wxObject
*object
);
221 virtual void RemoveFromPendingDelete(wxObject
*object
);
226 // ----------------------------------------------------------------------------
227 // include the platform-specific version of the classes above
228 // ----------------------------------------------------------------------------
230 #if defined(__WXPALMOS__)
231 #include "wx/palmos/apptrait.h"
232 #elif defined(__WXMSW__)
233 #include "wx/msw/apptrait.h"
234 #elif defined(__UNIX__) && !defined(__EMX__)
235 #include "wx/unix/apptrait.h"
236 #elif defined(__WXMAC__)
237 #include "wx/mac/apptrait.h"
238 #elif defined(__WXPM__)
239 #include "wx/os2/apptrait.h"
241 // at least, we need an implementation of GetToolkitInfo !
243 class wxGUIAppTraits
: public wxGUIAppTraitsBase
245 virtual wxToolkitInfo
& GetToolkitInfo();
248 class wxConsoleAppTraits
: public wxConsoleAppTraitsBase
250 virtual wxToolkitInfo
& GetToolkitInfo();
254 #endif // _WX_APPTRAIT_H_