]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/stattext.h
mac paths updated
[wxWidgets.git] / interface / stattext.h
index ff97b8f149e2c9081cd2c844fb5c14624573c2ba..ee65c9cdc60a413e226dceda73af1b5602c7debc 100644 (file)
 
     @library{wxcore}
     @category{ctrl}
-    @appearance{statictext.png}
+    <!-- @appearance{statictext.png} -->
 
     @see wxStaticBitmap, wxStaticBox
 */
 class wxStaticText : public wxControl
 {
 public:
-    //@{
+    /**
+        Default constructor.
+    */
+    wxStaticText();
+    
     /**
         Constructor, creating and showing a text control.
 
@@ -68,14 +72,12 @@ public:
 
         @see Create()
     */
-    wxStaticText();
     wxStaticText(wxWindow* parent, wxWindowID id,
                  const wxString& label,
                  const wxPoint& pos = wxDefaultPosition,
                  const wxSize& size = wxDefaultSize,
                  long style = 0,
                  const wxString& name = "staticText");
-    //@}
 
     /**
         Creation function, for two-step construction. For details see wxStaticText().
@@ -201,7 +203,9 @@ public:
         This functions wraps the controls label so that each of its lines becomes at
         most @a width pixels wide if possible (the lines are broken at words
         boundaries so it might not be the case if words are too long). If @e width
-        is negative, no wrapping is done.
+        is negative, no wrapping is done. Note that this width is not
+        necessarily the total width of the control, since a few pixels for the
+        border (depending on the controls border style) may be added.
 
         @since 2.6.2
     */