2001-06-26 17:05:06 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: app.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Id: $Id$
|
2002-02-14 15:30:34 -05:00
|
|
|
// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
|
2001-06-26 17:05:06 -04:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __WX_APP_H__
|
|
|
|
#define __WX_APP_H__
|
|
|
|
|
2003-08-09 08:38:21 -04:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2001-06-26 17:05:06 -04:00
|
|
|
#pragma interface "app.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/frame.h"
|
|
|
|
#include "wx/icon.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2001-08-09 18:40:39 -04:00
|
|
|
class WXDLLEXPORT wxApp;
|
|
|
|
class WXDLLEXPORT wxLog;
|
2001-08-15 19:48:31 -04:00
|
|
|
class WXDLLEXPORT wxEventLoop;
|
2001-06-26 17:05:06 -04:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxApp
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxApp: public wxAppBase
|
|
|
|
{
|
|
|
|
public:
|
2001-08-09 18:40:39 -04:00
|
|
|
wxApp();
|
|
|
|
~wxApp();
|
2001-06-26 17:05:06 -04:00
|
|
|
|
|
|
|
/* override for altering the way wxGTK intializes the GUI
|
|
|
|
* (palette/visual/colorcube). under wxMSW, OnInitGui() does nothing by
|
|
|
|
* default. when overriding this method, the code in it is likely to be
|
|
|
|
* platform dependent, otherwise use OnInit(). */
|
2001-08-09 18:40:39 -04:00
|
|
|
virtual bool OnInitGui();
|
2001-06-26 17:05:06 -04:00
|
|
|
|
|
|
|
// override base class (pure) virtuals
|
2003-06-30 16:02:05 -04:00
|
|
|
virtual bool Initialize(int& argc, wxChar **argv);
|
2003-06-30 14:43:09 -04:00
|
|
|
virtual void CleanUp();
|
2003-09-18 06:01:59 -04:00
|
|
|
|
|
|
|
virtual void Exit();
|
|
|
|
virtual void WakeUpIdle();
|
2001-10-20 18:07:13 -04:00
|
|
|
virtual bool Yield(bool onlyIfNeeded = FALSE);
|
|
|
|
|
2003-09-27 08:55:46 -04:00
|
|
|
virtual wxVideoMode GetDisplayMode() const { return m_displayMode; }
|
|
|
|
virtual bool SetDisplayMode(const wxVideoMode& mode);
|
2001-11-03 19:00:36 -05:00
|
|
|
|
2001-06-26 17:05:06 -04:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxApp)
|
|
|
|
DECLARE_EVENT_TABLE()
|
2003-09-15 15:48:16 -04:00
|
|
|
|
2003-09-27 08:55:46 -04:00
|
|
|
wxVideoMode m_displayMode;
|
2001-06-26 17:05:06 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __WX_APP_H__
|
2003-06-30 17:01:48 -04:00
|
|
|
|