override OnAssertFailure(), not OnAssert() which is not called by wxOnAssert() any...
[wxWidgets.git] / include / wx / gtk / app.h
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 #include "wx/frame.h"
14 #include "wx/icon.h"
15 #include "wx/strconv.h"
16
17 //-----------------------------------------------------------------------------
18 // classes
19 //-----------------------------------------------------------------------------
20
21 class WXDLLIMPEXP_CORE wxApp;
22 class WXDLLIMPEXP_BASE wxLog;
23
24 //-----------------------------------------------------------------------------
25 // wxApp
26 //-----------------------------------------------------------------------------
27
28 class WXDLLIMPEXP_CORE wxApp: public wxAppBase
29 {
30 public:
31 wxApp();
32 virtual ~wxApp();
33
34 /* override for altering the way wxGTK intializes the GUI
35 * (palette/visual/colorcube). under wxMSW, OnInitGui() does nothing by
36 * default. when overriding this method, the code in it is likely to be
37 * platform dependent, otherwise use OnInit(). */
38 virtual bool OnInitGui();
39
40 // override base class (pure) virtuals
41 virtual bool Yield(bool onlyIfNeeded = FALSE);
42 virtual void WakeUpIdle();
43
44 virtual bool Initialize(int& argc, wxChar **argv);
45 virtual void CleanUp();
46
47 static bool InitialzeVisual();
48
49 #ifdef __WXDEBUG__
50 virtual void OnAssertFailure(const wxChar *file,
51 int line,
52 const wxChar *func,
53 const wxChar *cond,
54 const wxChar *msg);
55
56 bool IsInAssert() const { return m_isInAssert; }
57 #endif // __WXDEBUG__
58
59 gint m_idleTag;
60 void RemoveIdleTag();
61
62 // Used by the the wxGLApp and wxGLCanvas class for GL-based X visual
63 // selection.
64 void *m_glVisualInfo; // this is actually an XVisualInfo*
65 void *m_glFBCInfo; // this is actually an GLXFBConfig*
66 // This returns the current visual: either that used by wxRootWindow
67 // or the XVisualInfo* for SGI.
68 GdkVisual *GetGdkVisual();
69
70 private:
71 // true if we're inside an assert modal dialog
72 #ifdef __WXDEBUG__
73 bool m_isInAssert;
74 #endif // __WXDEBUG__
75
76 DECLARE_DYNAMIC_CLASS(wxApp)
77 DECLARE_EVENT_TABLE()
78 };
79
80 #endif // __GTKAPPH__