]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/tglbtn.h
extact common GAddress declarations to the common header instead of duplicating them...
[wxWidgets.git] / interface / wx / tglbtn.h
index 4a679c7ee14fa2b56626037fac96c9268211deb2..b99f276a6ae7b4459a7699dbb39f6f050384b1b7 100644 (file)
@@ -9,7 +9,6 @@
 
 /**
     @class wxToggleButton
-    @wxheader{tglbtn.h}
 
     wxToggleButton is a button that stays pressed when clicked by the user. In
     other words, it is similar to wxCheckBox in
 class wxToggleButton : public wxControl
 {
 public:
-    //@{
+    /**
+      Default constructor.
+    */
+    wxToggleButton();
+
     /**
         Constructor, creating and showing a toggle button.
 
@@ -59,15 +62,13 @@ public:
 
         @see Create(), wxValidator
     */
-    wxToggleButton();
     wxToggleButton(wxWindow* parent, wxWindowID id,
                    const wxString& label,
                    const wxPoint& pos = wxDefaultPosition,
                    const wxSize& size = wxDefaultSize,
                    long style = 0,
                    const wxValidator& val = wxDefaultValidator,
-                   const wxString& name = "checkBox");
-    //@}
+                   const wxString& name = wxCheckBoxNameStr);
 
     /**
         Destructor, destroying the toggle button.
@@ -84,14 +85,14 @@ public:
                 const wxSize& size = wxDefaultSize,
                 long style = 0,
                 const wxValidator& val = wxDefaultValidator,
-                const wxString& name = "checkBox");
+                const wxString& name = wxCheckBoxNameStr);
 
     /**
         Gets the state of the toggle button.
 
         @return Returns @true if it is pressed, @false otherwise.
     */
-    bool GetValue() const;
+    virtual bool GetValue() const;
 
     /**
         Sets the toggle button to the given state. This does not cause a
@@ -100,13 +101,12 @@ public:
         @param state
             If @true, the button is pressed.
     */
-    void SetValue(bool state);
+    virtual void SetValue(bool state);
 };
 
 
 /**
     @class wxBitmapToggleButton
-    @wxheader{tglbtn.h}
 
     wxBitmapToggleButton is a wxToggleButton
     that contains a bitmap instead of text.
@@ -125,20 +125,22 @@ public:
 class wxBitmapToggleButton : public wxControl
 {
 public:
-    //@{
+    /**
+        Default constructor.
+    */
+    wxBitmapToggleButton();
+
     /**
         Constructor, creating and showing a toggle button with the bitmap @e label.
         Internally calls Create().
     */
-    wxBitmapToggleButton();
     wxBitmapToggleButton(wxWindow* parent, wxWindowID id,
                          const wxBitmap& label,
                          const wxPoint& pos = wxDefaultPosition,
                          const wxSize& size = wxDefaultSize,
                          long style = 0,
                          const wxValidator& val = wxDefaultValidator,
-                         const wxString& name = "checkBox");
-    //@}
+                         const wxString& name = wxCheckBoxNameStr);
 
     /**
         Create method for two-step construction.
@@ -149,7 +151,7 @@ public:
                 const wxSize& size = wxDefaultSize,
                 long style = 0,
                 const wxValidator& val = wxDefaultValidator,
-                const wxString& name = "checkBox");
+                const wxString& name = wxCheckBoxNameStr);
 
     /**
         Gets the state of the toggle button.