]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/statline.h
add alignment flags support to wxSpinCtrl[Double] (closes #10621)
[wxWidgets.git] / interface / wx / statline.h
index 226f28a70a55f29921610eb33146d6c716985f42..198e5a8824d59e47c043ecd5ca347eba8857c2b9 100644 (file)
@@ -8,10 +8,14 @@
 
 /**
     @class wxStaticLine
 
 /**
     @class wxStaticLine
-    @wxheader{statline.h}
 
     A static line is just a line which may be used in a dialog to separate the
 
     A static line is just a line which may be used in a dialog to separate the
-    groups of controls. The line may be only vertical or horizontal.
+    groups of controls.
+
+    The line may be only vertical or horizontal. Moreover, not all ports
+    (notably not wxGTK) support specifying the transversal direction of the
+    line (e.g. height for a horizontal line) so for maximial portability you
+    should specify it as wxDefaultCoord.
 
     @beginStyleTable
     @style{wxLI_HORIZONTAL}
 
     @beginStyleTable
     @style{wxLI_HORIZONTAL}
@@ -21,7 +25,7 @@
     @endStyleTable
 
     @library{wxcore}
     @endStyleTable
 
     @library{wxcore}
-    @category{FIXME}
+    @category{ctrl}
 
     @see wxStaticBox
 */
 
     @see wxStaticBox
 */
@@ -32,7 +36,7 @@ public:
       Default constructor
     */
     wxStaticLine();
       Default constructor
     */
     wxStaticLine();
-    
+
     /**
         Constructor, creating and showing a static line.
 
     /**
         Constructor, creating and showing a static line.
 
@@ -41,8 +45,8 @@ public:
         @param id
             Window identifier. The value wxID_ANY indicates a default value.
         @param pos
         @param id
             Window identifier. The value wxID_ANY indicates a default value.
         @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
             Size. Note that either the height or the width (depending on
             whether the line if horizontal or vertical) is ignored.
         @param size
             Size. Note that either the height or the width (depending on
             whether the line if horizontal or vertical) is ignored.
@@ -57,24 +61,23 @@ public:
                  const wxPoint& pos = wxDefaultPosition,
                  const wxSize& size = wxDefaultSize,
                  long style = wxLI_HORIZONTAL,
                  const wxPoint& pos = wxDefaultPosition,
                  const wxSize& size = wxDefaultSize,
                  long style = wxLI_HORIZONTAL,
-                 const wxString& name = "staticLine");
+                 const wxString& name = wxStaticLineNameStr);
 
     /**
 
     /**
-        Creates the static line for two-step construction. See wxStaticLine()
-        for further details.
+        Creates the static line for two-step construction.
+        See wxStaticLine() for further details.
     */
     bool Create(wxWindow* parent, wxWindowID id = wxID_ANY,
                 const wxPoint& pos = wxDefaultPosition,
     */
     bool Create(wxWindow* parent, wxWindowID id = wxID_ANY,
                 const wxPoint& pos = wxDefaultPosition,
-                const wxSize& size = wxDefaultSize,
-                long style = 0,
-                const wxString& name = "staticLine");
+                const wxSize& size = wxDefaultSize, long style = wxLI_HORIZONTAL,
+                const wxString& name = wxStaticLineNameStr);
 
     /**
         This static function returns the size which will be given to the smaller
         dimension of the static line, i.e. its height for a horizontal line or its
         width for a vertical one.
     */
 
     /**
         This static function returns the size which will be given to the smaller
         dimension of the static line, i.e. its height for a horizontal line or its
         width for a vertical one.
     */
-    int GetDefaultSize();
+    static int GetDefaultSize();
 
     /**
         Returns @true if the line is vertical, @false if horizontal.
 
     /**
         Returns @true if the line is vertical, @false if horizontal.