]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk1/app.h
Add XRC handler for wxToolbook.
[wxWidgets.git] / include / wx / gtk1 / app.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/gtk1/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
21class WXDLLIMPEXP_FWD_CORE wxApp;
22class WXDLLIMPEXP_FWD_BASE wxLog;
23
24//-----------------------------------------------------------------------------
25// wxApp
26//-----------------------------------------------------------------------------
27
28class WXDLLIMPEXP_CORE wxApp: public wxAppBase
29{
30public:
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 void WakeUpIdle();
42
43 virtual bool Initialize(int& argc, wxChar **argv);
44 virtual void CleanUp();
45
46 static bool InitialzeVisual();
47
48 virtual void OnAssertFailure(const wxChar *file,
49 int line,
50 const wxChar *func,
51 const wxChar *cond,
52 const wxChar *msg);
53
54 bool IsInAssert() const { return m_isInAssert; }
55
56 gint m_idleTag;
57 void RemoveIdleTag();
58
59 unsigned char *m_colorCube;
60
61 // Used by the the wxGLApp and wxGLCanvas class for GL-based X visual
62 // selection.
63 void *m_glVisualInfo; // this is actually an XVisualInfo*
64 void *m_glFBCInfo; // this is actually an GLXFBConfig*
65 // This returns the current visual: either that used by wxRootWindow
66 // or the XVisualInfo* for SGI.
67 GdkVisual *GetGdkVisual();
68
69private:
70 // true if we're inside an assert modal dialog
71 bool m_isInAssert;
72
73 DECLARE_DYNAMIC_CLASS(wxApp)
74};
75
76#endif // __GTKAPPH__