1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/apptrait.h
3 // Purpose: class implementing wxAppTraits for Palm OS
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Yunhui Fu
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PALM_APPTRAIT_H_
13 #define _WX_PALM_APPTRAIT_H_
16 #include "wx/palmos/private/timer.h" // wxPalmOSTimerImpl
19 // ----------------------------------------------------------------------------
20 // wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
21 // ----------------------------------------------------------------------------
23 class WXDLLIMPEXP_BASE wxConsoleAppTraits
: public wxConsoleAppTraitsBase
26 #if wxUSE_CONSOLE_EVENTLOOP
27 virtual wxEventLoopBase
*CreateEventLoop();
28 #endif // wxUSE_CONSOLE_EVENTLOOP
29 virtual void *BeforeChildWaitLoop();
30 virtual void AfterChildWaitLoop(void *data
);
32 virtual wxTimerImpl
*CreateTimerImpl(wxTimer
*timer
) { return new wxPalmOSTimerImpl(timer
); }
34 virtual bool DoMessageFromThreadWait();
35 virtual WXDWORD
WaitForThread(WXHANDLE hThread
);
40 class WXDLLIMPEXP_CORE wxGUIAppTraits
: public wxGUIAppTraitsBase
43 virtual wxEventLoopBase
*CreateEventLoop();
44 virtual void *BeforeChildWaitLoop();
45 virtual void AfterChildWaitLoop(void *data
);
47 // there is no wxTimer support yet
48 virtual wxTimerImpl
*CreateTimerImpl(wxTimer
*timer
);
50 virtual bool DoMessageFromThreadWait();
51 virtual wxPortId
GetToolkitVersion(int *majVer
= NULL
, int *minVer
= NULL
) const;
56 #endif // _WX_PALM_APPTRAIT_H_