]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk/app.h
specific workaround for XCODE native
[wxWidgets.git] / include / wx / gtk / app.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/gtk/app.h
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling, Julian Smart
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef __GTKAPPH__
11#define __GTKAPPH__
12
13#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14#pragma interface
15#endif
16
17#include "wx/frame.h"
18#include "wx/icon.h"
19
20//-----------------------------------------------------------------------------
21// classes
22//-----------------------------------------------------------------------------
23
24class wxApp;
25class wxLog;
26
27//-----------------------------------------------------------------------------
28// wxApp
29//-----------------------------------------------------------------------------
30
31class wxApp: public wxAppBase
32{
33public:
34 wxApp();
35 virtual ~wxApp();
36
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(). */
41 virtual bool OnInitGui();
42
43 // override base class (pure) virtuals
44 virtual bool Yield(bool onlyIfNeeded = FALSE);
45 virtual void WakeUpIdle();
46
47 virtual bool Initialize(int& argc, wxChar **argv);
48 virtual void CleanUp();
49
50 static bool InitialzeVisual();
51
52#ifdef __WXDEBUG__
53 virtual void OnAssert(const wxChar *file, int line, const wxChar *cond, const wxChar *msg);
54
55 bool IsInAssert() const { return m_isInAssert; }
56#endif // __WXDEBUG__
57
58 gint m_idleTag;
59#if wxUSE_THREADS
60 gint m_wakeUpTimerTag;
61#endif
62 unsigned char *m_colorCube;
63
64 // Used by the the wxGLApp and wxGLCanvas class for GL-based X visual
65 // selection; this is actually an XVisualInfo*
66 void *m_glVisualInfo;
67 // This returns the current visual: either that used by wxRootWindow
68 // or the XVisualInfo* for SGI.
69 GdkVisual *GetGdkVisual();
70
71private:
72 // true if we're inside an assert modal dialog
73#ifdef __WXDEBUG__
74 bool m_isInAssert;
75#endif // __WXDEBUG__
76
77 DECLARE_DYNAMIC_CLASS(wxApp)
78 DECLARE_EVENT_TABLE()
79};
80
81#endif // __GTKAPPH__