]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/frame.h
Support for Cygwin 1.0 (thought it worked before, but...)
[wxWidgets.git] / include / wx / gtk1 / frame.h
index 5435810ab1ff21d250503397a2db31fb70349849..99aff948e1acb3607a8e95b467e5b9e874b8d14f 100644 (file)
@@ -99,13 +99,16 @@ public:
     // --------------------------
 
     // move the window to the specified location and resize it: this is called
     // --------------------------
 
     // move the window to the specified location and resize it: this is called
-    // from both DoSetSize() and DoSetClientSize() 
+    // from both DoSetSize() and DoSetClientSize()
     virtual void DoMoveWindow(int x, int y, int width, int height);
     virtual void DoMoveWindow(int x, int y, int width, int height);
-    
+
     // GTK callbacks
     virtual void GtkOnSize( int x, int y, int width, int height );
     virtual void OnInternalIdle();
 
     // GTK callbacks
     virtual void GtkOnSize( int x, int y, int width, int height );
     virtual void OnInternalIdle();
 
+    // do *not* call this to iconize the frame, this is a private function!
+    void SetIconizeState(bool iconic);
+
     wxString      m_title;
     int           m_miniEdge,
                   m_miniTitle;
     wxString      m_title;
     int           m_miniEdge,
                   m_miniTitle;
@@ -131,6 +134,9 @@ protected:
     virtual void DoSetClientSize(int width, int height);
     virtual void DoGetClientSize( int *width, int *height ) const;
 
     virtual void DoSetClientSize(int width, int height);
     virtual void DoGetClientSize( int *width, int *height ) const;
 
+    // is the frame currently iconized?
+    bool          m_isIconized;
+
 private:
     DECLARE_DYNAMIC_CLASS(wxFrame)
 };
 private:
     DECLARE_DYNAMIC_CLASS(wxFrame)
 };