2004-10-19 09:40:30 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/palmos/apptrait.h
|
|
|
|
// Purpose: class implementing wxAppTraits for Palm OS
|
2005-01-18 16:14:27 -05:00
|
|
|
// Author: William Osborne - minimal working wxPalmOS port
|
2004-10-19 09:40:30 -04:00
|
|
|
// Modified by:
|
|
|
|
// Created: 10/13/04
|
2005-01-18 16:14:27 -05:00
|
|
|
// RCS-ID: $Id$
|
2004-10-19 09:40:30 -04:00
|
|
|
// Copyright: (c) William Osborne
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2004-12-27 03:36:21 -05:00
|
|
|
#ifndef _WX_PALM_APPTRAIT_H_
|
|
|
|
#define _WX_PALM_APPTRAIT_H_
|
2004-10-19 09:40:30 -04:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxGUI/ConsoleAppTraits: must derive from wxAppTraits, not wxAppTraitsBase
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_BASE wxConsoleAppTraits : public wxConsoleAppTraitsBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void *BeforeChildWaitLoop();
|
|
|
|
virtual void AlwaysYield();
|
|
|
|
virtual void AfterChildWaitLoop(void *data);
|
2007-04-19 21:29:16 -04:00
|
|
|
#if wxUSE_TIMER
|
|
|
|
virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer) { return NULL; };
|
|
|
|
#endif
|
2004-10-19 09:40:30 -04:00
|
|
|
virtual bool DoMessageFromThreadWait();
|
|
|
|
};
|
|
|
|
|
|
|
|
#if wxUSE_GUI
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void *BeforeChildWaitLoop();
|
|
|
|
virtual void AlwaysYield();
|
|
|
|
virtual void AfterChildWaitLoop(void *data);
|
2007-04-19 21:29:16 -04:00
|
|
|
#if wxUSE_TIMER
|
|
|
|
// there is no wxTimer support yet
|
|
|
|
virtual wxTimerImpl *CreateTimerImpl(wxTimer *timer);
|
|
|
|
#endif
|
2004-10-19 09:40:30 -04:00
|
|
|
virtual bool DoMessageFromThreadWait();
|
2006-08-13 17:00:32 -04:00
|
|
|
virtual wxPortId GetToolkitVersion(int *majVer, int *minVer) const;
|
2004-10-19 09:40:30 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_GUI
|
|
|
|
|
2004-12-27 03:36:21 -05:00
|
|
|
#endif // _WX_PALM_APPTRAIT_H_
|
2004-10-19 09:40:30 -04:00
|
|
|
|