]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/mdi.h
Added a few files; fixed some warnings and wxMotif compile problems
[wxWidgets.git] / include / wx / motif / mdi.h
index 74b483d5fa85b6970dc7354ccff383b265ccf4b3..a45aa1e434239b2b675ab4ecc61f53e40d5cb5ec 100644 (file)
@@ -155,6 +155,7 @@ public:
   virtual void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
     { wxWindow::SetSize(rect, sizeFlags); }
   virtual void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
+  virtual void SetSize(int width, int height) { SetSize(-1, -1, width, height, wxSIZE_USE_EXISTING); }
 
   void GetSize(int *width, int *height) const;
   wxSize GetSize() const { return wxWindow::GetSize(); }
@@ -180,6 +181,10 @@ public:
   virtual void Activate();
   virtual bool IsIconized() const ;
 
+  // Is the frame maximized? Returns TRUE for
+  // wxMDIChildFrame due to the tabbed implementation.
+  virtual bool IsMaximized(void) const ;
+
   bool Show(bool show);
 
   inline WXWidget GetMainWidget() const { return m_mainWidget; };
@@ -222,6 +227,7 @@ class WXDLLEXPORT wxMDIClientWindow: public wxNotebook
    void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
     { wxWindow::SetSize(rect, sizeFlags); }
    void SetSize(const wxSize& size) { wxWindow::SetSize(size); }
+  virtual void SetSize(int width, int height) { SetSize(-1, -1, width, height, wxSIZE_USE_EXISTING); }
 
    void SetClientSize(int width, int height);
    void SetClientSize(const wxSize& size) { wxWindow::SetClientSize(size); }