1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/os2/apptrait.h
3 // Purpose: class implementing wxAppTraits for OS/2
8 // Copyright: (c) 2003 Stefan Neis <Stefan.Neis@t-online.de>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_OS2_APPTRAIT_H_
13 #define _WX_OS2_APPTRAIT_H_
15 // ----------------------------------------------------------------------------
16 // wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
17 // ----------------------------------------------------------------------------
19 class WXDLLIMPEXP_BASE wxConsoleAppTraits
: public wxConsoleAppTraitsBase
26 class WXDLLIMPEXP_CORE wxGUIAppTraits
: public wxGUIAppTraitsBase
29 virtual wxPortId
GetToolkitVersion(int *majVer
, int *minVer
) const;
34 // Initialize PM facilities to enable GUI access
35 virtual void InitializeGui(unsigned long &ulHab
);
37 // Clean up message queue.
38 virtual void TerminateGui(unsigned long ulHab
);
40 virtual wxString
GetDesktopEnvironment() const;
46 #endif // _WX_OS2_APPTRAIT_H_