1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: declaration of wxAppTraits and derived classes
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_APPTRAIT_H_
13 #define _WX_APPTRAIT_H_
15 class WXDLLEXPORT wxObject
;
16 class WXDLLEXPORT wxAppTraits
;
18 class WXDLLEXPORT wxFontMapper
;
19 #endif // wxUSE_FONTMAP
20 class WXDLLEXPORT wxLog
;
21 class WXDLLEXPORT wxMessageOutput
;
22 class WXDLLEXPORT wxString
;
24 // ----------------------------------------------------------------------------
25 // wxAppTraits: this class defines various configurable aspects of wxApp
26 // ----------------------------------------------------------------------------
28 class WXDLLIMPEXP_BASE wxAppTraitsBase
31 // hooks for creating the global objects, may be overridden by the user
32 // ------------------------------------------------------------------------
35 // create the default log target
36 virtual wxLog
*CreateLogTarget() = 0;
39 // create the global object used for printing out messages
40 virtual wxMessageOutput
*CreateMessageOutput() = 0;
43 // create the global font mapper object used for encodings/charset mapping
44 virtual wxFontMapper
*CreateFontMapper() = 0;
45 #endif // wxUSE_FONTMAP
48 // functions abstracting differences between GUI and console modes
49 // ------------------------------------------------------------------------
52 // show the assert dialog with the specified message in GUI or just print
53 // the string to stderr in console mode
55 // base class version has an implementation (in spite of being pure
56 // virtual) in base/appbase.cpp which can be called as last resort.
58 // return true to suppress subsequent asserts, false to continue as before
59 virtual bool ShowAssertDialog(const wxString
& msg
) = 0;
62 // return true if fprintf(stderr) goes somewhere, false otherwise
63 virtual bool HasStderr() = 0;
65 // managing "pending delete" list: in GUI mode we can't immediately delete
66 // some objects because there may be unprocessed events for them and so we
67 // only do it during the next idle loop iteration while this is, of course,
68 // unnecessary in wxBase, so we have a few functions to abstract these
71 // add the object to the pending delete list in GUI, delete it immediately
73 virtual void ScheduleForDestroy(wxObject
*object
) = 0;
75 // remove this object from the pending delete list in GUI, do nothing in
77 virtual void RemoveFromPendingDelete(wxObject
*object
) = 0;
80 // other miscellaneous helpers
81 // ---------------------------
83 // wxGetOsVersion() behaves differently in GUI and non-GUI builds under
84 // Unix: in the former case it returns the information about the toolkit
85 // and in the latter -- about the OS, so we need to virtualize it
86 virtual int GetOSVersion(int *verMaj
, int *verMin
) = 0;
89 // ----------------------------------------------------------------------------
90 // include the platform-specific version of the class
91 // ----------------------------------------------------------------------------
93 // NB: test for __UNIX__ before __WXMAC__ as under Darwin we want to use the
94 // Unix code (and otherwise __UNIX__ wouldn't be defined)
95 #if defined(__WXMSW__)
96 #include "wx/msw/apptbase.h"
97 #elif defined(__UNIX__)
98 #include "wx/unix/apptbase.h"
99 #elif defined(__WXMAC__)
100 #include "wx/mac/apptbase.h"
101 #else // no platform-specific methods to add to wxAppTraits
102 // wxAppTraits must be a class because it was forward declared as class
103 class WXDLLIMPEXP_BASE wxAppTraits
: public wxAppTraitsBase
108 // ============================================================================
109 // standard traits for console and GUI applications
110 // ============================================================================
112 // ----------------------------------------------------------------------------
113 // wxConsoleAppTraitsBase: wxAppTraits implementation for the console apps
114 // ----------------------------------------------------------------------------
116 class WXDLLIMPEXP_BASE wxConsoleAppTraitsBase
: public wxAppTraits
120 virtual wxLog
*CreateLogTarget();
122 virtual wxMessageOutput
*CreateMessageOutput();
124 virtual wxFontMapper
*CreateFontMapper();
125 #endif // wxUSE_FONTMAP
128 virtual bool ShowAssertDialog(const wxString
& msg
);
129 #endif // __WXDEBUG__
130 virtual bool HasStderr();
132 virtual void ScheduleForDestroy(wxObject
*object
);
133 virtual void RemoveFromPendingDelete(wxObject
*object
);
136 // ----------------------------------------------------------------------------
137 // wxGUIAppTraitsBase: wxAppTraits implementation for the GUI apps
138 // ----------------------------------------------------------------------------
142 class WXDLLEXPORT wxGUIAppTraitsBase
: public wxAppTraits
146 virtual wxLog
*CreateLogTarget();
148 virtual wxMessageOutput
*CreateMessageOutput();
150 virtual wxFontMapper
*CreateFontMapper();
151 #endif // wxUSE_FONTMAP
154 virtual bool ShowAssertDialog(const wxString
& msg
);
155 #endif // __WXDEBUG__
156 virtual bool HasStderr();
158 virtual void ScheduleForDestroy(wxObject
*object
);
159 virtual void RemoveFromPendingDelete(wxObject
*object
);
164 // ----------------------------------------------------------------------------
165 // include the platform-specific version of the classes above
166 // ----------------------------------------------------------------------------
168 #if defined(__WXMSW__)
169 #include "wx/msw/apptrait.h"
170 #elif defined(__UNIX__)
171 #include "wx/unix/apptrait.h"
172 #elif defined(__WXMAC__)
173 #include "wx/mac/apptrait.h"
174 #else // no platform-specific methods to add to wxAppTraits
176 typedef wxGUIAppTraitsBase wxGUIAppTraits
;
178 typedef wxConsoleAppTraitsBase wxConsoleAppTraits
;
181 #endif // _WX_APPTRAIT_H_