]>
Commit | Line | Data |
---|---|---|
9fc852b7 SN |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/os2/apptbase.h | |
a637417c | 3 | // Purpose: declaration of wxAppTraits for OS2 |
9fc852b7 SN |
4 | // Author: Stefan Neis |
5 | // Modified by: | |
6 | // Created: 22.09.2003 | |
9fc852b7 | 7 | // Copyright: (c) 2003 Stefan Neis <Stefan.Neis@t-online.de> |
65571936 | 8 | // Licence: wxWindows licence |
9fc852b7 SN |
9 | /////////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | #ifndef _WX_OS2_APPTBASE_H_ | |
12 | #define _WX_OS2_APPTBASE_H_ | |
13 | ||
14 | // ---------------------------------------------------------------------------- | |
15 | // wxAppTraits: the OS2 version adds extra hooks needed by OS2-only code | |
16 | // ---------------------------------------------------------------------------- | |
17 | ||
18 | class WXDLLIMPEXP_BASE wxAppTraits : public wxAppTraitsBase | |
19 | { | |
20 | public: | |
21 | // wxThread helpers | |
22 | // ---------------- | |
23 | ||
24 | // Initialize PM facilities to enable GUI access | |
25 | virtual void InitializeGui(unsigned long &ulHab); | |
26 | ||
27 | // Clean up message queue. | |
28 | virtual void TerminateGui(unsigned long ulHab); | |
6bcc1145 | 29 | |
f90913e2 | 30 | #if wxUSE_SOCKETS |
6bcc1145 | 31 | virtual wxFDIOManager *GetFDIOManager(); |
f90913e2 | 32 | #endif |
9fc852b7 SN |
33 | }; |
34 | ||
35 | #endif // _WX_OS2_APPTBASE_H_ |