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 // hooks for creating the global objects, may be overridden by the user
58 // ------------------------------------------------------------------------
61 // create the default log target
62 virtual wxLog
*CreateLogTarget() = 0;
65 // create the global object used for printing out messages
66 virtual wxMessageOutput
*CreateMessageOutput() = 0;
69 // create the global font mapper object used for encodings/charset mapping
70 virtual wxFontMapper
*CreateFontMapper() = 0;
71 #endif // wxUSE_FONTMAP
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
77 // NB: returned pointer will be deleted by the caller
78 virtual wxRendererNative
*CreateRenderer() = 0;
80 // wxStandardPaths object is normally the same for wxBase and wxGUI
81 // except in the case of wxMac and wxCocoa
83 virtual wxStandardPathsBase
& GetStandardPaths();
86 // functions abstracting differences between GUI and console modes
87 // ------------------------------------------------------------------------
90 // show the assert dialog with the specified message in GUI or just print
91 // the string to stderr in console mode
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.
96 // return true to suppress subsequent asserts, false to continue as before
97 virtual bool ShowAssertDialog(const wxString
& msg
) = 0;
100 // return true if fprintf(stderr) goes somewhere, false otherwise
101 virtual bool HasStderr() = 0;
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
109 // add the object to the pending delete list in GUI, delete it immediately
111 virtual void ScheduleForDestroy(wxObject
*object
) = 0;
113 // remove this object from the pending delete list in GUI, do nothing in
115 virtual void RemoveFromPendingDelete(wxObject
*object
) = 0;
118 // return table of GUI callbacks for GSocket code or NULL in wxBase. This
119 // is needed because networking classes are in their own library and so
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
124 virtual GSocketGUIFunctionsTable
* GetSocketGUIFunctionsTable() = 0;
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
135 virtual wxToolkitInfo
& GetToolkitInfo() = 0;
138 // ----------------------------------------------------------------------------
139 // include the platform-specific version of the class
140 // ----------------------------------------------------------------------------
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)
144 #if defined(__WXPALMOS__)
145 #include "wx/palmos/apptbase.h"
146 #elif defined(__WXMSW__)
147 #include "wx/msw/apptbase.h"
148 #elif defined(__UNIX__) && !defined(__EMX__)
149 #include "wx/unix/apptbase.h"
150 #elif defined(__WXMAC__)
151 #include "wx/mac/apptbase.h"
152 #elif defined(__OS2__)
153 #include "wx/os2/apptbase.h"
154 #else // no platform-specific methods to add to wxAppTraits
155 // wxAppTraits must be a class because it was forward declared as class
156 class WXDLLIMPEXP_BASE wxAppTraits
: public wxAppTraitsBase
161 // ============================================================================
162 // standard traits for console and GUI applications
163 // ============================================================================
165 // ----------------------------------------------------------------------------
166 // wxConsoleAppTraitsBase: wxAppTraits implementation for the console apps
167 // ----------------------------------------------------------------------------
169 class WXDLLIMPEXP_BASE wxConsoleAppTraitsBase
: public wxAppTraits
173 virtual wxLog
*CreateLogTarget();
175 virtual wxMessageOutput
*CreateMessageOutput();
177 virtual wxFontMapper
*CreateFontMapper();
178 #endif // wxUSE_FONTMAP
179 virtual wxRendererNative
*CreateRenderer();
181 virtual GSocketGUIFunctionsTable
* GetSocketGUIFunctionsTable();
185 virtual bool ShowAssertDialog(const wxString
& msg
);
186 #endif // __WXDEBUG__
187 virtual bool HasStderr();
189 virtual void ScheduleForDestroy(wxObject
*object
);
190 virtual void RemoveFromPendingDelete(wxObject
*object
);
193 // ----------------------------------------------------------------------------
194 // wxGUIAppTraitsBase: wxAppTraits implementation for the GUI apps
195 // ----------------------------------------------------------------------------
199 class WXDLLEXPORT wxGUIAppTraitsBase
: public wxAppTraits
203 virtual wxLog
*CreateLogTarget();
205 virtual wxMessageOutput
*CreateMessageOutput();
207 virtual wxFontMapper
*CreateFontMapper();
208 #endif // wxUSE_FONTMAP
209 virtual wxRendererNative
*CreateRenderer();
211 virtual GSocketGUIFunctionsTable
* GetSocketGUIFunctionsTable();
215 virtual bool ShowAssertDialog(const wxString
& msg
);
216 #endif // __WXDEBUG__
217 virtual bool HasStderr();
219 virtual void ScheduleForDestroy(wxObject
*object
);
220 virtual void RemoveFromPendingDelete(wxObject
*object
);
225 // ----------------------------------------------------------------------------
226 // include the platform-specific version of the classes above
227 // ----------------------------------------------------------------------------
229 #if defined(__WXPALMOS__)
230 #include "wx/palmos/apptrait.h"
231 #elif defined(__WXMSW__)
232 #include "wx/msw/apptrait.h"
233 #elif defined(__UNIX__) && !defined(__EMX__)
234 #include "wx/unix/apptrait.h"
235 #elif defined(__WXMAC__)
236 #include "wx/mac/apptrait.h"
237 #elif defined(__WXPM__)
238 #include "wx/os2/apptrait.h"
240 // at least, we need an implementation of GetToolkitInfo !
242 class wxGUIAppTraits
: public wxGUIAppTraitsBase
244 virtual wxToolkitInfo
& GetToolkitInfo();
247 class wxConsoleAppTraits
: public wxConsoleAppTraitsBase
249 virtual wxToolkitInfo
& GetToolkitInfo();
253 #endif // _WX_APPTRAIT_H_