2001-06-26 21:05:06 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: app.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Id: $Id$
|
2002-02-14 20:30:34 +00:00
|
|
|
// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
|
2001-06-26 21:05:06 +00:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __WX_APP_H__
|
|
|
|
#define __WX_APP_H__
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
2001-06-26 21:05:06 +00:00
|
|
|
#pragma interface "app.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/frame.h"
|
|
|
|
#include "wx/icon.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2001-08-09 22:40:39 +00:00
|
|
|
class WXDLLEXPORT wxApp;
|
|
|
|
class WXDLLEXPORT wxLog;
|
2001-08-15 23:48:31 +00:00
|
|
|
class WXDLLEXPORT wxEventLoop;
|
2001-06-26 21:05:06 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxApp
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxApp: public wxAppBase
|
|
|
|
{
|
|
|
|
public:
|
2001-08-09 22:40:39 +00:00
|
|
|
wxApp();
|
|
|
|
~wxApp();
|
2001-06-26 21:05:06 +00: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 22:40:39 +00:00
|
|
|
virtual bool OnInitGui();
|
2001-06-26 21:05:06 +00:00
|
|
|
|
|
|
|
// override base class (pure) virtuals
|
2001-08-09 22:40:39 +00:00
|
|
|
virtual bool Initialized();
|
2001-06-26 21:05:06 +00:00
|
|
|
|
2003-06-30 20:02:05 +00:00
|
|
|
virtual bool Initialize(int& argc, wxChar **argv);
|
2003-06-30 18:43:09 +00:00
|
|
|
virtual void CleanUp();
|
2001-06-26 21:05:06 +00:00
|
|
|
|
2001-10-20 22:07:13 +00:00
|
|
|
virtual bool Yield(bool onlyIfNeeded = FALSE);
|
|
|
|
|
2001-11-04 00:00:36 +00:00
|
|
|
virtual wxDisplayModeInfo GetDisplayMode() const { return m_displayMode; }
|
|
|
|
virtual bool SetDisplayMode(const wxDisplayModeInfo& mode);
|
|
|
|
|
2001-06-26 21:05:06 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxApp)
|
|
|
|
DECLARE_EVENT_TABLE()
|
2003-09-15 19:48:16 +00:00
|
|
|
|
2001-11-04 00:00:36 +00:00
|
|
|
wxDisplayModeInfo m_displayMode;
|
2001-06-26 21:05:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __WX_APP_H__
|
2003-06-30 21:01:48 +00:00
|
|
|
|