]> git.saurik.com Git - wxWidgets.git/blob - include/wx/os2/apptrait.h
don't use implicit wxString->char*/wchar_t* conversion, it will not be available...
[wxWidgets.git] / include / wx / os2 / apptrait.h
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>
9 // Licence: wxWindows licence
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:
22 virtual wxEventLoopBase *CreateEventLoop();
23 #if wxUSE_TIMER
24 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer) { return NULL; };
25 #endif
26 };
27
28 #if wxUSE_GUI
29
30 class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
31 {
32 public:
33 virtual wxEventLoopBase *CreateEventLoop();
34 #if wxUSE_TIMER
35 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
36 #endif
37 virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const;
38
39 // wxThread helpers
40 // ----------------
41
42 // Initialize PM facilities to enable GUI access
43 virtual void InitializeGui(unsigned long &ulHab);
44
45 // Clean up message queue.
46 virtual void TerminateGui(unsigned long ulHab);
47 #ifdef __WXGTK__
48 virtual wxString GetDesktopEnvironment() const;
49 #endif
50 };
51
52 #endif // wxUSE_GUI
53
54 #endif // _WX_OS2_APPTRAIT_H_