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);
|
|
|
|
|
|
|
|
virtual bool DoMessageFromThreadWait();
|
|
|
|
};
|
|
|
|
|
|
|
|
#if wxUSE_GUI
|
|
|
|
|
|
|
|
class WXDLLIMPEXP_CORE wxGUIAppTraits : public wxGUIAppTraitsBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void *BeforeChildWaitLoop();
|
|
|
|
virtual void AlwaysYield();
|
|
|
|
virtual void AfterChildWaitLoop(void *data);
|
|
|
|
|
|
|
|
virtual bool DoMessageFromThreadWait();
|
|
|
|
virtual wxToolkitInfo& GetToolkitInfo();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_GUI
|
|
|
|
|
2004-12-27 03:36:21 -05:00
|
|
|
#endif // _WX_PALM_APPTRAIT_H_
|
2004-10-19 09:40:30 -04:00
|
|
|
|