]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/palmos/apptrait.h
Avoid warnings in the Objective-C uniquifying code when running in GC mode.
[wxWidgets.git] / include / wx / palmos / apptrait.h
... / ...
CommitLineData
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:
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// ----------------------------------------------------------------------------
16// wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
17// ----------------------------------------------------------------------------
18
19class WXDLLIMPEXP_BASE wxConsoleAppTraits : public wxConsoleAppTraitsBase
20{
21public:
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);
28#if wxUSE_TIMER
29 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer) { return new wxPalmOSTimerImpl(timer); }
30#endif
31 virtual bool DoMessageFromThreadWait();
32 virtual WXDWORD WaitForThread(WXHANDLE hThread);
33};
34
35#if wxUSE_GUI
36
37class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
38{
39public:
40 virtual wxEventLoopBase *CreateEventLoop();
41 virtual void *BeforeChildWaitLoop();
42 virtual void AlwaysYield();
43 virtual void AfterChildWaitLoop(void *data);
44#if wxUSE_TIMER
45 // there is no wxTimer support yet
46 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
47#endif
48 virtual bool DoMessageFromThreadWait();
49 virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const;
50};
51
52#endif // wxUSE_GUI
53
54#endif // _WX_PALM_APPTRAIT_H_
55