]> git.saurik.com Git - wxWidgets.git/blame - include/wx/palmos/apptrait.h
Made wxBORDER_THEME the same as wxBORDER_DEFAULT
[wxWidgets.git] / include / wx / palmos / apptrait.h
CommitLineData
ffecfa5a
JS
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/palmos/apptrait.h
3// Purpose: class implementing wxAppTraits for Palm OS
e1d63b79 4// Author: William Osborne - minimal working wxPalmOS port
ffecfa5a
JS
5// Modified by:
6// Created: 10/13/04
e1d63b79 7// RCS-ID: $Id$
ffecfa5a
JS
8// Copyright: (c) William Osborne
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
5445a26c
WS
12#ifndef _WX_PALM_APPTRAIT_H_
13#define _WX_PALM_APPTRAIT_H_
ffecfa5a
JS
14
15// ----------------------------------------------------------------------------
16// wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
17// ----------------------------------------------------------------------------
18
19class WXDLLIMPEXP_BASE wxConsoleAppTraits : public wxConsoleAppTraitsBase
20{
21public:
22 virtual void *BeforeChildWaitLoop();
23 virtual void AlwaysYield();
24 virtual void AfterChildWaitLoop(void *data);
c2ca375c
VZ
25#if wxUSE_TIMER
26 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer) { return NULL; };
27#endif
ffecfa5a
JS
28 virtual bool DoMessageFromThreadWait();
29};
30
31#if wxUSE_GUI
32
33class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
34{
35public:
36 virtual void *BeforeChildWaitLoop();
37 virtual void AlwaysYield();
38 virtual void AfterChildWaitLoop(void *data);
c2ca375c
VZ
39#if wxUSE_TIMER
40 // there is no wxTimer support yet
41 virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
42#endif
ffecfa5a 43 virtual bool DoMessageFromThreadWait();
8bb6b2c0 44 virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const;
ffecfa5a
JS
45};
46
47#endif // wxUSE_GUI
48
5445a26c 49#endif // _WX_PALM_APPTRAIT_H_
ffecfa5a 50