]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/control.h
introduce a new @beginFlagTable
[wxWidgets.git] / interface / control.h
index 16796de2a37dccf85e960ae6fc964d28d33ca7b9..3d5b7ef17ade63e02e5dfa9c87703d0e161e8ebd 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        control.h
-// Purpose:     documentation for wxControl class
+// Purpose:     interface of wxControl
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -10,7 +10,7 @@
     @class wxControl
     @wxheader{control.h}
 
-    This is the base class for a control or "widget''.
+    This is the base class for a control or "widget".
 
     A control is generally a small window which processes user input and/or
     displays one or more item of data.
@@ -19,8 +19,7 @@
     @category{ctrl}
     @appearance{control.png}
 
-    @seealso
-    wxValidator
+    @see wxValidator
 */
 class wxControl : public wxWindow
 {
@@ -37,7 +36,7 @@ public:
         any, use GetLabelText() if they are
         undesired.
     */
-    wxString GetLabel();
+    wxString GetLabel() const;
 
     //@{
     /**
@@ -45,7 +44,7 @@ public:
         version, without the mnemonics characters.
     */
     const wxString GetLabelText();
-    static wxString GetLabelText(const wxString& label);
+    const static wxString  GetLabelText(const wxString& label);
     //@}
 
     /**
@@ -58,3 +57,4 @@ public:
     */
     void SetLabel(const wxString& label);
 };
+