| 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 |
| 6 | // Created: 10/13/04 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) William Osborne |
| 9 | // Licence: wxWindows licence |
| 10 | /////////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_PALM_APPTRAIT_H_ |
| 13 | #define _WX_PALM_APPTRAIT_H_ |
| 14 | |
| 15 | #if wxUSE_TIMER |
| 16 | #include "wx/palmos/private/timer.h" // wxPalmOSTimerImpl |
| 17 | #endif // wxUSE_TIMER |
| 18 | |
| 19 | // ---------------------------------------------------------------------------- |
| 20 | // wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase |
| 21 | // ---------------------------------------------------------------------------- |
| 22 | |
| 23 | class WXDLLIMPEXP_BASE wxConsoleAppTraits : public wxConsoleAppTraitsBase |
| 24 | { |
| 25 | public: |
| 26 | #if wxUSE_CONSOLE_EVENTLOOP |
| 27 | virtual wxEventLoopBase *CreateEventLoop(); |
| 28 | #endif // wxUSE_CONSOLE_EVENTLOOP |
| 29 | virtual void *BeforeChildWaitLoop(); |
| 30 | virtual void AlwaysYield(); |
| 31 | virtual void AfterChildWaitLoop(void *data); |
| 32 | #if wxUSE_TIMER |
| 33 | virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer) { return new wxPalmOSTimerImpl(timer); } |
| 34 | #endif |
| 35 | virtual bool DoMessageFromThreadWait(); |
| 36 | virtual WXDWORD WaitForThread(WXHANDLE hThread); |
| 37 | }; |
| 38 | |
| 39 | #if wxUSE_GUI |
| 40 | |
| 41 | class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase |
| 42 | { |
| 43 | public: |
| 44 | virtual wxEventLoopBase *CreateEventLoop(); |
| 45 | virtual void *BeforeChildWaitLoop(); |
| 46 | virtual void AlwaysYield(); |
| 47 | virtual void AfterChildWaitLoop(void *data); |
| 48 | #if wxUSE_TIMER |
| 49 | // there is no wxTimer support yet |
| 50 | virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer); |
| 51 | #endif |
| 52 | virtual bool DoMessageFromThreadWait(); |
| 53 | virtual wxPortId GetToolkitVersion(int *majVer = NULL, int *minVer = NULL) const; |
| 54 | }; |
| 55 | |
| 56 | #endif // wxUSE_GUI |
| 57 | |
| 58 | #endif // _WX_PALM_APPTRAIT_H_ |
| 59 | |