X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7e1bcfa80e19ac853b8bc7084075fe3b01e63f03..31eefb998d894e3b566e13714fa53186101829a1:/include/wx/motif/app.h diff --git a/include/wx/motif/app.h b/include/wx/motif/app.h index b8e43947c4..95c087af98 100644 --- a/include/wx/motif/app.h +++ b/include/wx/motif/app.h @@ -32,6 +32,8 @@ class WXDLLEXPORT wxApp; class WXDLLEXPORT wxKeyEvent; class WXDLLEXPORT wxLog; class WXDLLEXPORT wxEventLoop; +class WXDLLEXPORT wxXVisualInfo; +class wxPerDisplayDataMap; // ---------------------------------------------------------------------------- // the wxApp class for Motif - see wxAppBase for more details @@ -83,27 +85,26 @@ public: // Motif-specific WXAppContext GetAppContext() const { return m_appContext; } - WXWidget GetTopLevelWidget() const { return m_topLevelWidget; } + WXWidget GetTopLevelWidget(); WXColormap GetMainColormap(WXDisplay* display); WXDisplay* GetInitialDisplay() const { return m_initialDisplay; } - long GetMaxRequestSize() const { return m_maxRequestSize; } - + + void SetTopLevelWidget(WXDisplay* display, WXWidget widget); + // This handler is called when a property change event occurs virtual void HandlePropertyChange(WXEvent *event); - -private: - static long sm_lastMessageTime; - int m_nCmdShow; + wxXVisualInfo* GetVisualInfo(WXDisplay* display); + +private: wxEventLoop* m_eventLoop; // Motif-specific WXAppContext m_appContext; - WXWidget m_topLevelWidget; WXColormap m_mainColormap; WXDisplay* m_initialDisplay; - long m_maxRequestSize; - + wxPerDisplayDataMap* m_perDisplayData; + DECLARE_EVENT_TABLE() };