]> git.saurik.com Git - wxWidgets.git/blame - include/wx/motif/app.h
removed obsolete build files which are likely to confuse more than help people now
[wxWidgets.git] / include / wx / motif / app.h
CommitLineData
9b6dbb09 1/////////////////////////////////////////////////////////////////////////////
925f7740 2// Name: wx/motif/app.h
9b6dbb09
JS
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
65571936 9// Licence: wxWindows licence
9b6dbb09
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_APP_H_
13#define _WX_APP_H_
14
ee31c392
VZ
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
9b6dbb09 19#include "wx/event.h"
bdcade0a 20#include "wx/hashmap.h"
9b6dbb09 21
ee31c392
VZ
22// ----------------------------------------------------------------------------
23// forward declarations
24// ----------------------------------------------------------------------------
25
9b6dbb09
JS
26class WXDLLEXPORT wxFrame;
27class WXDLLEXPORT wxWindow;
72cdf4c9 28class WXDLLEXPORT wxApp;
9b6dbb09
JS
29class WXDLLEXPORT wxKeyEvent;
30class WXDLLEXPORT wxLog;
7e1bcfa8 31class WXDLLEXPORT wxEventLoop;
9ce8d6a2 32class WXDLLEXPORT wxXVisualInfo;
bdcade0a 33class WXDLLEXPORT wxPerDisplayData;
9b6dbb09 34
ee31c392
VZ
35// ----------------------------------------------------------------------------
36// the wxApp class for Motif - see wxAppBase for more details
37// ----------------------------------------------------------------------------
9b6dbb09 38
bdcade0a
MB
39WX_DECLARE_VOIDPTR_HASH_MAP( wxPerDisplayData*, wxPerDisplayDataMap );
40
ee31c392 41class WXDLLEXPORT wxApp : public wxAppBase
9b6dbb09 42{
83df96d6 43 DECLARE_DYNAMIC_CLASS(wxApp)
925f7740 44
ee31c392
VZ
45public:
46 wxApp();
7e1bcfa8 47 virtual ~wxApp();
925f7740 48
ee31c392
VZ
49 // override base class (pure) virtuals
50 // -----------------------------------
925f7740 51
ee31c392 52 virtual int MainLoop();
e2478fde
VZ
53
54 virtual void Exit();
55
96be256b 56 virtual bool Yield(bool onlyIfNeeded = false);
e2478fde 57 virtual void WakeUpIdle(); // implemented in motif/evtloop.cpp
925f7740 58
ee31c392 59 virtual bool OnInitGui();
925f7740 60
ee31c392
VZ
61 // implementation from now on
62 // --------------------------
925f7740 63
9b6dbb09 64protected:
ee31c392 65 bool m_showOnInit;
925f7740 66
9b6dbb09 67public:
ee31c392 68 // Implementation
05e2b077 69 virtual bool Initialize(int& argc, wxChar **argv);
94826170 70 virtual void CleanUp();
925f7740 71
ee31c392
VZ
72 // Motif-specific
73 WXAppContext GetAppContext() const { return m_appContext; }
eb6fa4b4 74 WXWidget GetTopLevelWidget();
5a2e3d8c 75 WXWidget GetTopLevelRealizedWidget();
72cdf4c9 76 WXColormap GetMainColormap(WXDisplay* display);
ee31c392 77 WXDisplay* GetInitialDisplay() const { return m_initialDisplay; }
eb6fa4b4
MB
78
79 void SetTopLevelWidget(WXDisplay* display, WXWidget widget);
5a2e3d8c
MB
80 void SetTopLevelRealizedWidget(WXDisplay* display,
81 WXWidget widget);
eb6fa4b4 82
ee31c392
VZ
83 // This handler is called when a property change event occurs
84 virtual void HandlePropertyChange(WXEvent *event);
9ce8d6a2
MB
85
86 wxXVisualInfo* GetVisualInfo(WXDisplay* display);
87
7e1bcfa8 88private:
ee31c392
VZ
89 // Motif-specific
90 WXAppContext m_appContext;
ee31c392
VZ
91 WXColormap m_mainColormap;
92 WXDisplay* m_initialDisplay;
eb6fa4b4 93 wxPerDisplayDataMap* m_perDisplayData;
9ce8d6a2 94
ee31c392 95 DECLARE_EVENT_TABLE()
9b6dbb09
JS
96};
97
9b6dbb09 98#endif
83df96d6 99// _WX_APP_H_