]>
Commit | Line | Data |
---|---|---|
a637417c SN |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/os2/apptrait.h | |
3 | // Purpose: class implementing wxAppTraits for OS/2 | |
4 | // Author: Stefan Neis | |
5 | // Modified by: | |
6 | // Created: 22.09.2003 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2003 Stefan Neis <Stefan.Neis@t-online.de> | |
65571936 | 9 | // Licence: wxWindows licence |
a637417c SN |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_OS2_APPTRAIT_H_ | |
13 | #define _WX_OS2_APPTRAIT_H_ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
19 | class WXDLLIMPEXP_BASE wxConsoleAppTraits : public wxConsoleAppTraitsBase | |
20 | { | |
21 | public: | |
a637417c SN |
22 | }; |
23 | ||
24 | #if wxUSE_GUI | |
25 | ||
26 | class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase | |
27 | { | |
28 | public: | |
8bb6b2c0 | 29 | virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const; |
a637417c SN |
30 | |
31 | // wxThread helpers | |
32 | // ---------------- | |
33 | ||
34 | // Initialize PM facilities to enable GUI access | |
35 | virtual void InitializeGui(unsigned long &ulHab); | |
36 | ||
37 | // Clean up message queue. | |
38 | virtual void TerminateGui(unsigned long ulHab); | |
39 | }; | |
40 | ||
41 | #endif // wxUSE_GUI | |
42 | ||
43 | #endif // _WX_OS2_APPTRAIT_H_ |