]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/statbox.h
Some corrections for BC++ compilation; Latex doc corrections
[wxWidgets.git] / include / wx / motif / statbox.h
index 375c0001957fd13023a4a6e7c651d1deece90218..5ebf48dd4e031f35004eb7ef4b602a50a45fc590 100644 (file)
@@ -36,6 +36,7 @@ class WXDLLEXPORT wxStaticBox: public wxControl
   {
     Create(parent, id, label, pos, size, style, name);
   }
+  ~wxStaticBox();
 
   bool Create(wxWindow *parent, wxWindowID id,
            const wxString& label,
@@ -48,6 +49,11 @@ class WXDLLEXPORT wxStaticBox: public wxControl
   virtual void ProcessCommand(wxCommandEvent& WXUNUSED(event)) {};
 
   void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
+  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 SetLabel(const wxString& label);
   wxString GetLabel() const;