]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/apptrait.h
make various control names constants of type char, not wxChar, as this is more compat...
[wxWidgets.git] / include / wx / msw / apptrait.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/apptrait.h
3 // Purpose: class implementing wxAppTraits for MSW
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 21.06.2003
7 // RCS-ID: $Id$
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_MSW_APPTRAIT_H_
13 #define _WX_MSW_APPTRAIT_H_
14
15 // ----------------------------------------------------------------------------
16 // wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
17 // ----------------------------------------------------------------------------
18
19 class WXDLLIMPEXP_BASE wxConsoleAppTraits : public wxConsoleAppTraitsBase
20 {
21 public:
22 virtual wxEventLoopBase *CreateEventLoop();
23 virtual void *BeforeChildWaitLoop();
24 virtual void AlwaysYield();
25 virtual void AfterChildWaitLoop(void *data);
26 #if wxUSE_TIMER
27 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
28 #endif
29 virtual bool DoMessageFromThreadWait();
30 virtual WXDWORD WaitForThread(WXHANDLE hThread);
31 };
32
33 #if wxUSE_GUI
34
35 class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
36 {
37 public:
38 virtual wxEventLoopBase *CreateEventLoop();
39 virtual void *BeforeChildWaitLoop();
40 virtual void AlwaysYield();
41 virtual void AfterChildWaitLoop(void *data);
42 #if wxUSE_TIMER
43 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
44 #endif
45 virtual bool DoMessageFromThreadWait();
46 virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const;
47 virtual WXDWORD WaitForThread(WXHANDLE hThread);
48 };
49
50 #endif // wxUSE_GUI
51
52 #endif // _WX_MSW_APPTRAIT_H_
53