]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/app.h
doubleclick selects word
[wxWidgets.git] / include / wx / motif / app.h
index b8e43947c4cf631ce095ea077b88c3f87c93586c..95c087af986c550a7e8b8add6a3d02cff771e641 100644 (file)
@@ -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()
 };