]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/x11/toplevel.h
Fixed bug [ 865999 ] wxRETAINED windows appear blank on MSW.
[wxWidgets.git] / include / wx / x11 / toplevel.h
index 74f7411c4f9fa7bb0df54c90e8b9424cda6b69ad..63ac8769fd5733616e5f4628dcbf27df3db0cdd7 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_X11_TOPLEVEL_H_
 #define _WX_X11_TOPLEVEL_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "toplevel.h"
 #endif
 
@@ -67,7 +67,12 @@ public:
     virtual wxString GetTitle() const;
     
     // implementation
-    void SetNeedResizeInIdle( bool set = TRUE ) { m_needResizeInIdle = set; }
+    void SetNeedResizeInIdle( bool set = TRUE )
+        { m_needResizeInIdle = set; }
+    void SetConfigureGeometry( int x, int y, int width, int height )
+        { m_x = x; m_y = y; m_width = width; m_height = height; }
+
+    virtual bool SetShape(const wxRegion& region);
     
 protected:
     // common part of all ctors
@@ -85,6 +90,7 @@ protected:
     virtual void OnInternalIdle();
 
     virtual void DoGetClientSize( int *width, int *height ) const;
+    virtual void DoGetSize( int *width, int *height ) const;
     virtual void DoSetClientSize(int width, int height);
     virtual void DoSetSize(int x, int y,
         int width, int height,
@@ -104,6 +110,9 @@ protected:
     bool                  m_fsIsMaximized;
     bool                  m_fsIsShowing;
     wxString              m_title;
+    
+    // Geometry
+    int                   m_x,m_y,m_width,m_height;
 };
 
 // list of all frames and modeless dialogs