1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/apptrait.h
3 // Purpose: class implementing wxAppTraits for Palm OS
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_PALM_APPTRAIT_H_
13 #define _WX_PALM_APPTRAIT_H_
15 // ----------------------------------------------------------------------------
16 // wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
17 // ----------------------------------------------------------------------------
19 class WXDLLIMPEXP_BASE wxConsoleAppTraits
: public wxConsoleAppTraitsBase
22 #if wxUSE_CONSOLE_EVENTLOOP
23 virtual wxEventLoopBase
*CreateEventLoop();
24 #endif // wxUSE_CONSOLE_EVENTLOOP
25 virtual void *BeforeChildWaitLoop();
26 virtual void AlwaysYield();
27 virtual void AfterChildWaitLoop(void *data
);
29 virtual wxTimerImpl
*CreateTimerImpl(wxTimer
*timer
) { return new wxPalmOSTimerImpl(timer
); }
31 virtual bool DoMessageFromThreadWait();
32 virtual WXDWORD
WaitForThread(WXHANDLE hThread
);
37 class WXDLLIMPEXP_CORE wxGUIAppTraits
: public wxGUIAppTraitsBase
40 virtual wxEventLoopBase
*CreateEventLoop();
41 virtual void *BeforeChildWaitLoop();
42 virtual void AlwaysYield();
43 virtual void AfterChildWaitLoop(void *data
);
45 // there is no wxTimer support yet
46 virtual wxTimerImpl
*CreateTimerImpl(wxTimer
*timer
);
48 virtual bool DoMessageFromThreadWait();
49 virtual wxPortId
GetToolkitVersion(int *majVer
, int *minVer
) const;
54 #endif // _WX_PALM_APPTRAIT_H_