]> git.saurik.com Git - wxWidgets.git/blob - include/wx/palmos/apptrait.h
Fix bug with using uninitialized flags in GetParentForModalDialog().
[wxWidgets.git] / include / wx / palmos / apptrait.h
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 AfterChildWaitLoop(void *data);
31 #if wxUSE_TIMER
32 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer) { return new wxPalmOSTimerImpl(timer); }
33 #endif
34 virtual bool DoMessageFromThreadWait();
35 virtual WXDWORD WaitForThread(WXHANDLE hThread);
36 };
37
38 #if wxUSE_GUI
39
40 class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
41 {
42 public:
43 virtual wxEventLoopBase *CreateEventLoop();
44 virtual void *BeforeChildWaitLoop();
45 virtual void AfterChildWaitLoop(void *data);
46 #if wxUSE_TIMER
47 // there is no wxTimer support yet
48 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
49 #endif
50 virtual bool DoMessageFromThreadWait();
51 virtual wxPortId GetToolkitVersion(int *majVer = NULL, int *minVer = NULL) const;
52 };
53
54 #endif // wxUSE_GUI
55
56 #endif // _WX_PALM_APPTRAIT_H_
57