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