]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/app.h
Check for and allow zero length files
[wxWidgets.git] / include / wx / gtk1 / app.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
8461e4c2 2// Name: wx/gtk/app.h
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
dbf858b5 5// Id: $Id$
01111366 6// Copyright: (c) 1998 Robert Roebling, Julian Smart
a3622daa 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef __GTKAPPH__
11#define __GTKAPPH__
12
ab7ce33c 13#if defined(__GNUG__) && !defined(__APPLE__)
c801d85f
KB
14#pragma interface
15#endif
16
c801d85f 17#include "wx/frame.h"
ebea0891 18#include "wx/icon.h"
c801d85f
KB
19
20//-----------------------------------------------------------------------------
21// classes
22//-----------------------------------------------------------------------------
23
24class wxApp;
25class wxLog;
26
c801d85f
KB
27//-----------------------------------------------------------------------------
28// wxApp
29//-----------------------------------------------------------------------------
30
094637f6 31class wxApp: public wxAppBase
c801d85f 32{
094637f6 33public:
bbe0af5b 34 wxApp();
a6f5aa49 35 virtual ~wxApp();
a3622daa 36
094637f6
VZ
37 /* override for altering the way wxGTK intializes the GUI
38 * (palette/visual/colorcube). under wxMSW, OnInitGui() does nothing by
39 * default. when overriding this method, the code in it is likely to be
40 * platform dependent, otherwise use OnInit(). */
bbe0af5b 41 virtual bool OnInitGui();
094637f6
VZ
42
43 // override base class (pure) virtuals
bbe0af5b 44 virtual int MainLoop();
094637f6
VZ
45 virtual void ExitMainLoop();
46 virtual bool Initialized();
bbe0af5b
RR
47 virtual bool Pending();
48 virtual void Dispatch();
e2478fde
VZ
49
50 virtual void Exit();
51
8461e4c2 52 virtual bool Yield(bool onlyIfNeeded = FALSE);
90a1a975 53 virtual bool ProcessIdle();
e2478fde 54 virtual void WakeUpIdle();
53010e52 55
094637f6 56 // implementation only from now on
a3622daa 57 void OnIdle( wxIdleEvent &event );
bbe0af5b 58 bool SendIdleEvents();
53010e52 59 bool SendIdleEvents( wxWindow* win );
a3622daa 60
0d2a2b60
RR
61 static bool Initialize();
62 static bool InitialzeVisual();
63 static void CleanUp();
a3622daa 64
bbe0af5b 65 void DeletePendingObjects();
a3622daa 66
a5f1fd3e 67#ifdef __WXDEBUG__
be88a6ad 68 virtual void OnAssert(const wxChar *file, int line, const wxChar *cond, const wxChar *msg);
a5f1fd3e
VZ
69
70 bool IsInAssert() const { return m_isInAssert; }
71#endif // __WXDEBUG__
094637f6 72
f6fcbb63 73 bool m_initialized;
094637f6 74
f6fcbb63 75 gint m_idleTag;
6b3eb77a 76#if wxUSE_THREADS
7b90a8f2 77 gint m_wakeUpTimerTag;
6b3eb77a 78#endif
f6fcbb63 79 unsigned char *m_colorCube;
a3622daa 80
005f5d18 81 // Used by the the wxGLApp and wxGLCanvas class for GL-based X visual
a6f5aa49
VZ
82 // selection; this is actually an XVisualInfo*
83 void *m_glVisualInfo;
005f5d18
RR
84 // This returns the current visual: either that used by wxRootWindow
85 // or the XVisualInfo* for SGI.
86 GdkVisual *GetGdkVisual();
be88a6ad 87
094637f6 88private:
a5f1fd3e
VZ
89 // true if we're inside an assert modal dialog
90#ifdef __WXDEBUG__
91 bool m_isInAssert;
92#endif // __WXDEBUG__
094637f6 93
010afced 94 bool CallInternalIdle( wxWindow* win );
be88a6ad 95
8636aed8 96 DECLARE_DYNAMIC_CLASS(wxApp)
094637f6 97 DECLARE_EVENT_TABLE()
c801d85f
KB
98};
99
f9201144
JJ
100int WXDLLEXPORT wxEntry( int argc, char *argv[] );
101
c801d85f 102#endif // __GTKAPPH__