]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/app.h
avoid a bug in Carbon headers
[wxWidgets.git] / include / wx / motif / app.h
CommitLineData
9b6dbb09
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: app.h
3// Purpose: wxApp class
4// Author: Julian Smart
5// Modified by:
6// Created: 17/09/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_APP_H_
13#define _WX_APP_H_
14
15#ifdef __GNUG__
83df96d6 16#pragma interface "app.h"
9b6dbb09
JS
17#endif
18
ee31c392
VZ
19// ----------------------------------------------------------------------------
20// headers
21// ----------------------------------------------------------------------------
22
9b6dbb09
JS
23#include "wx/event.h"
24
ee31c392
VZ
25// ----------------------------------------------------------------------------
26// forward declarations
27// ----------------------------------------------------------------------------
28
9b6dbb09
JS
29class WXDLLEXPORT wxFrame;
30class WXDLLEXPORT wxWindow;
72cdf4c9 31class WXDLLEXPORT wxApp;
9b6dbb09
JS
32class WXDLLEXPORT wxKeyEvent;
33class WXDLLEXPORT wxLog;
7e1bcfa8 34class WXDLLEXPORT wxEventLoop;
9ce8d6a2 35class WXDLLEXPORT wxXVisualInfo;
eb6fa4b4 36class wxPerDisplayDataMap;
9b6dbb09 37
ee31c392
VZ
38// ----------------------------------------------------------------------------
39// the wxApp class for Motif - see wxAppBase for more details
40// ----------------------------------------------------------------------------
9b6dbb09 41
ee31c392 42class WXDLLEXPORT wxApp : public wxAppBase
9b6dbb09 43{
83df96d6
JS
44 DECLARE_DYNAMIC_CLASS(wxApp)
45
ee31c392
VZ
46public:
47 wxApp();
7e1bcfa8 48 virtual ~wxApp();
83df96d6 49
ee31c392
VZ
50 // override base class (pure) virtuals
51 // -----------------------------------
83df96d6 52
ee31c392
VZ
53 virtual int MainLoop();
54 virtual void ExitMainLoop();
55 virtual bool Initialized();
72cdf4c9
VZ
56 virtual bool Pending();
57 virtual void Dispatch();
e2478fde
VZ
58
59 virtual void Exit();
60
8461e4c2 61 virtual bool Yield(bool onlyIfNeeded = FALSE);
e2478fde 62 virtual void WakeUpIdle(); // implemented in motif/evtloop.cpp
83df96d6 63
ee31c392 64 virtual bool OnInitGui();
83df96d6 65
ee31c392
VZ
66 // implementation from now on
67 // --------------------------
83df96d6 68
9b6dbb09 69protected:
ee31c392 70 bool m_showOnInit;
83df96d6 71
9b6dbb09 72public:
ee31c392 73 // Implementation
05e2b077 74 virtual bool Initialize(int& argc, wxChar **argv);
94826170 75 virtual void CleanUp();
83df96d6 76
ee31c392
VZ
77 // Motif-specific
78 WXAppContext GetAppContext() const { return m_appContext; }
eb6fa4b4 79 WXWidget GetTopLevelWidget();
72cdf4c9 80 WXColormap GetMainColormap(WXDisplay* display);
ee31c392 81 WXDisplay* GetInitialDisplay() const { return m_initialDisplay; }
eb6fa4b4
MB
82
83 void SetTopLevelWidget(WXDisplay* display, WXWidget widget);
84
ee31c392
VZ
85 // This handler is called when a property change event occurs
86 virtual void HandlePropertyChange(WXEvent *event);
9ce8d6a2
MB
87
88 wxXVisualInfo* GetVisualInfo(WXDisplay* display);
89
7e1bcfa8 90private:
7e1bcfa8 91 wxEventLoop* m_eventLoop;
83df96d6 92
ee31c392
VZ
93 // Motif-specific
94 WXAppContext m_appContext;
ee31c392
VZ
95 WXColormap m_mainColormap;
96 WXDisplay* m_initialDisplay;
eb6fa4b4 97 wxPerDisplayDataMap* m_perDisplayData;
9ce8d6a2 98
ee31c392 99 DECLARE_EVENT_TABLE()
9b6dbb09
JS
100};
101
9b6dbb09 102#endif
83df96d6 103// _WX_APP_H_
9b6dbb09 104