]>
Commit | Line | Data |
---|---|---|
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 |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
10 | #ifndef __GTKAPPH__ | |
11 | #define __GTKAPPH__ | |
12 | ||
c801d85f | 13 | #include "wx/frame.h" |
ebea0891 | 14 | #include "wx/icon.h" |
66bf0099 | 15 | #include "wx/strconv.h" |
c801d85f KB |
16 | |
17 | //----------------------------------------------------------------------------- | |
18 | // classes | |
19 | //----------------------------------------------------------------------------- | |
20 | ||
20123d49 MW |
21 | class WXDLLIMPEXP_CORE wxApp; |
22 | class WXDLLIMPEXP_BASE wxLog; | |
c801d85f | 23 | |
c801d85f KB |
24 | //----------------------------------------------------------------------------- |
25 | // wxApp | |
26 | //----------------------------------------------------------------------------- | |
27 | ||
20123d49 | 28 | class WXDLLIMPEXP_CORE wxApp: public wxAppBase |
c801d85f | 29 | { |
094637f6 | 30 | public: |
bbe0af5b | 31 | wxApp(); |
a6f5aa49 | 32 | virtual ~wxApp(); |
a3622daa | 33 | |
094637f6 VZ |
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(). */ | |
bbe0af5b | 38 | virtual bool OnInitGui(); |
094637f6 VZ |
39 | |
40 | // override base class (pure) virtuals | |
8461e4c2 | 41 | virtual bool Yield(bool onlyIfNeeded = FALSE); |
e2478fde | 42 | virtual void WakeUpIdle(); |
53010e52 | 43 | |
05e2b077 | 44 | virtual bool Initialize(int& argc, wxChar **argv); |
94826170 | 45 | virtual void CleanUp(); |
a3622daa | 46 | |
94826170 | 47 | static bool InitialzeVisual(); |
a3622daa | 48 | |
a5f1fd3e | 49 | #ifdef __WXDEBUG__ |
be88a6ad | 50 | virtual void OnAssert(const wxChar *file, int line, const wxChar *cond, const wxChar *msg); |
a5f1fd3e VZ |
51 | |
52 | bool IsInAssert() const { return m_isInAssert; } | |
53 | #endif // __WXDEBUG__ | |
094637f6 | 54 | |
f6fcbb63 | 55 | gint m_idleTag; |
fe593cc5 | 56 | void RemoveIdleTag(); |
a3622daa | 57 | |
005f5d18 | 58 | // Used by the the wxGLApp and wxGLCanvas class for GL-based X visual |
34a34b02 VZ |
59 | // selection. |
60 | void *m_glVisualInfo; // this is actually an XVisualInfo* | |
61 | void *m_glFBCInfo; // this is actually an GLXFBConfig* | |
005f5d18 RR |
62 | // This returns the current visual: either that used by wxRootWindow |
63 | // or the XVisualInfo* for SGI. | |
64 | GdkVisual *GetGdkVisual(); | |
66bf0099 | 65 | |
094637f6 | 66 | private: |
a5f1fd3e VZ |
67 | // true if we're inside an assert modal dialog |
68 | #ifdef __WXDEBUG__ | |
69 | bool m_isInAssert; | |
70 | #endif // __WXDEBUG__ | |
094637f6 | 71 | |
8636aed8 | 72 | DECLARE_DYNAMIC_CLASS(wxApp) |
094637f6 | 73 | DECLARE_EVENT_TABLE() |
c801d85f KB |
74 | }; |
75 | ||
76 | #endif // __GTKAPPH__ |