]>
Commit | Line | Data |
---|---|---|
e2478fde VZ |
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$ | |
77ffb593 | 8 | // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org> |
65571936 | 9 | // Licence: wxWindows licence |
e2478fde VZ |
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 | ||
bb24c68f | 19 | class WXDLLIMPEXP_BASE wxConsoleAppTraits : public wxConsoleAppTraitsBase |
e2478fde VZ |
20 | { |
21 | public: | |
2ddff00c | 22 | virtual wxEventLoopBase *CreateEventLoop(); |
e2478fde VZ |
23 | virtual void *BeforeChildWaitLoop(); |
24 | virtual void AlwaysYield(); | |
25 | virtual void AfterChildWaitLoop(void *data); | |
c2ca375c VZ |
26 | #if wxUSE_TIMER |
27 | virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer); | |
28 | #endif | |
e2478fde | 29 | virtual bool DoMessageFromThreadWait(); |
e570a44b | 30 | virtual WXDWORD WaitForThread(WXHANDLE hThread); |
784ee7d5 VZ |
31 | #ifndef __WXWINCE__ |
32 | virtual bool CanUseStderr() { return true; } | |
33 | virtual bool WriteToStderr(const wxString& text); | |
34 | #endif // !__WXWINCE__ | |
e2478fde VZ |
35 | }; |
36 | ||
37 | #if wxUSE_GUI | |
38 | ||
bb24c68f | 39 | class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase |
e2478fde VZ |
40 | { |
41 | public: | |
2ddff00c | 42 | virtual wxEventLoopBase *CreateEventLoop(); |
e2478fde VZ |
43 | virtual void *BeforeChildWaitLoop(); |
44 | virtual void AlwaysYield(); | |
45 | virtual void AfterChildWaitLoop(void *data); | |
c2ca375c VZ |
46 | #if wxUSE_TIMER |
47 | virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer); | |
48 | #endif | |
e2478fde | 49 | virtual bool DoMessageFromThreadWait(); |
1f5c6629 | 50 | virtual wxPortId GetToolkitVersion(int *majVer = NULL, int *minVer = NULL) const; |
e570a44b | 51 | virtual WXDWORD WaitForThread(WXHANDLE hThread); |
784ee7d5 VZ |
52 | |
53 | #ifndef __WXWINCE__ | |
54 | virtual bool CanUseStderr(); | |
55 | virtual bool WriteToStderr(const wxString& text); | |
56 | #endif // !__WXWINCE__ | |
e2478fde VZ |
57 | }; |
58 | ||
59 | #endif // wxUSE_GUI | |
60 | ||
61 | #endif // _WX_MSW_APPTRAIT_H_ |