]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/statbox.h
Set TOOLKIT_LOWERCASE correctly for the various flavors of wxOSX
[wxWidgets.git] / interface / wx / statbox.h
index b6719749cbae2ba6403db47202cfd22a59970cdf..bf750622b77e7a41c04f46a82a09b7c9224ad0a6 100644 (file)
@@ -8,7 +8,6 @@
 
 /**
     @class wxStaticBox
 
 /**
     @class wxStaticBox
-    @wxheader{statbox.h}
 
     A static box is a rectangle drawn around other panel items to denote
     a logical grouping of items.
 
     A static box is a rectangle drawn around other panel items to denote
     a logical grouping of items.
@@ -25,7 +24,7 @@
 
     @library{wxcore}
     @category{ctrl}
 
     @library{wxcore}
     @category{ctrl}
-    <!-- @appearance{staticbox.png} -->
+    @appearance{staticbox.png}
 
     @see wxStaticText
 */
 
     @see wxStaticText
 */
@@ -36,7 +35,7 @@ public:
       Default constructor
     */
     wxStaticBox();
       Default constructor
     */
     wxStaticBox();
-    
+
     /**
         Constructor, creating and showing a static box.
 
     /**
         Constructor, creating and showing a static box.
 
@@ -47,11 +46,11 @@ public:
         @param label
             Text to be displayed in the static box, the empty string for no label.
         @param pos
         @param label
             Text to be displayed in the static box, the empty string for no label.
         @param pos
-            Window position. If wxDefaultPosition is specified then a default
-        position is chosen.
+            Window position.
+            If wxDefaultPosition is specified then a default position is chosen.
         @param size
         @param size
-            Checkbox size. If the size (-1, -1) is specified then a default size is
-        chosen.
+            Checkbox size.
+            If wxDefaultSize is specified then a default size is chosen.
         @param style
             Window style. See wxStaticBox.
         @param name
         @param style
             Window style. See wxStaticBox.
         @param name
@@ -69,17 +68,15 @@ public:
     /**
         Destructor, destroying the group box.
     */
     /**
         Destructor, destroying the group box.
     */
-    ~wxStaticBox();
+    virtual ~wxStaticBox();
 
     /**
 
     /**
-        Creates the static box for two-step construction. See wxStaticBox()
-        for further details.
+        Creates the static box for two-step construction.
+        See wxStaticBox() for further details.
     */
     */
-    bool Create(wxWindow* parent, wxWindowID id,
-                const wxString& label,
+    bool Create(wxWindow* parent, wxWindowID id, const wxString& label,
                 const wxPoint& pos = wxDefaultPosition,
                 const wxPoint& pos = wxDefaultPosition,
-                const wxSize& size = wxDefaultSize,
-                long style = 0,
-                const wxString& name = "staticBox");
+                const wxSize& size = wxDefaultSize, long style = 0,
+                const wxString& name = wxStaticBoxNameStr);
 };
 
 };