1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: app.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 10:56:58 +00:00
|
|
|
// Id: $Id$
|
1998-10-24 17:12:05 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling, Julian Smart
|
1998-08-07 15:09:04 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKAPPH__
|
|
|
|
#define __GTKAPPH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/frame.h"
|
1999-07-05 11:22:45 +00:00
|
|
|
#include "wx/icon.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxApp;
|
|
|
|
class wxLog;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxApp
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
class wxApp: public wxAppBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-07-06 00:44:26 +00:00
|
|
|
public:
|
1999-01-08 20:33:18 +00:00
|
|
|
wxApp();
|
|
|
|
~wxApp();
|
1998-08-07 15:09:04 +00:00
|
|
|
|
1999-07-06 00:44:26 +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(). */
|
1999-01-08 20:33:18 +00:00
|
|
|
virtual bool OnInitGui();
|
1999-07-06 00:44:26 +00:00
|
|
|
|
|
|
|
// override base class (pure) virtuals
|
1999-01-08 20:33:18 +00:00
|
|
|
virtual int MainLoop();
|
1999-07-06 00:44:26 +00:00
|
|
|
virtual void ExitMainLoop();
|
|
|
|
virtual bool Initialized();
|
1999-01-08 20:33:18 +00:00
|
|
|
virtual bool Pending();
|
|
|
|
virtual void Dispatch();
|
1998-06-03 19:06:13 +00:00
|
|
|
|
1999-07-05 11:22:45 +00:00
|
|
|
virtual wxIcon GetStdIcon(int which) const;
|
1998-06-03 19:06:13 +00:00
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
// implementation only from now on
|
1998-08-07 15:09:04 +00:00
|
|
|
void OnIdle( wxIdleEvent &event );
|
1999-01-08 20:33:18 +00:00
|
|
|
bool SendIdleEvents();
|
1998-06-03 19:06:13 +00:00
|
|
|
bool SendIdleEvents( wxWindow* win );
|
1998-08-07 15:09:04 +00:00
|
|
|
|
1999-01-19 16:33:16 +00:00
|
|
|
static bool Initialize();
|
|
|
|
static bool InitialzeVisual();
|
|
|
|
static void CleanUp();
|
1998-08-07 15:09:04 +00:00
|
|
|
|
1999-01-08 20:33:18 +00:00
|
|
|
bool ProcessIdle();
|
1999-03-27 18:50:54 +00:00
|
|
|
#if wxUSE_THREADS
|
|
|
|
void ProcessPendingEvents();
|
|
|
|
#endif
|
1999-01-08 20:33:18 +00:00
|
|
|
void DeletePendingObjects();
|
1998-08-07 15:09:04 +00:00
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
// This can be used to suppress the generation of Idle events.
|
|
|
|
void SuppressIdleEvents(bool arg = TRUE) { m_suppressIdleEvents = arg; }
|
|
|
|
bool GetSuppressIdleEvents() const { return m_suppressIdleEvents; }
|
|
|
|
|
1999-01-12 17:53:45 +00:00
|
|
|
bool m_initialized;
|
1999-07-06 00:44:26 +00:00
|
|
|
|
1999-01-12 17:53:45 +00:00
|
|
|
gint m_idleTag;
|
1999-05-22 10:11:03 +00:00
|
|
|
#if wxUSE_THREADS
|
1999-05-22 08:01:17 +00:00
|
|
|
gint m_wakeUpTimerTag;
|
1999-05-22 10:11:03 +00:00
|
|
|
#endif
|
1999-01-12 17:53:45 +00:00
|
|
|
unsigned char *m_colorCube;
|
1998-08-07 15:09:04 +00:00
|
|
|
|
1999-07-06 00:44:26 +00:00
|
|
|
private:
|
1999-04-08 20:51:00 +00:00
|
|
|
/// Set to TRUE while we are in wxYield().
|
|
|
|
bool m_suppressIdleEvents;
|
1999-07-06 00:44:26 +00:00
|
|
|
|
1999-10-11 10:05:36 +00:00
|
|
|
private:
|
1999-08-24 20:26:06 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxApp)
|
1999-07-06 00:44:26 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKAPPH__
|