]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/checkbox.h
use wxHAS_RAW_BITMAP instead of wxHAVE_RAW_BITMAP
[wxWidgets.git] / interface / checkbox.h
index 66b60b36515c2d83571736e2bce3324fc26032ee..e0f584b3b6a06e397a06471d588ef22746f1173d 100644 (file)
@@ -27,21 +27,21 @@ enum wxCheckBoxState
     state. Often this is used as a "Does Not Apply" state.
 
     @beginStyleTable
-    @style{wxCHK_2STATE}:
+    @style{wxCHK_2STATE}
            Create a 2-state checkbox. This is the default.
-    @style{wxCHK_3STATE}:
+    @style{wxCHK_3STATE}
            Create a 3-state checkbox. Not implemented in wxMGL, wxOS2 and
            wxGTK built against GTK+ 1.2.
-    @style{wxCHK_ALLOW_3RD_STATE_FOR_USER}:
+    @style{wxCHK_ALLOW_3RD_STATE_FOR_USER}
            By default a user can't set a 3-state checkbox to the third state.
            It can only be done from code. Using this flags allows the user to
            set the checkbox to the third state by clicking.
-    @style{wxALIGN_RIGHT}:
+    @style{wxALIGN_RIGHT}
            Makes the text appear on the left of the checkbox.
     @endStyleTable
 
     @beginEventTable{wxCommandEvent}
-    @event{EVT_CHECKBOX(id, func)}:
+    @event{EVT_CHECKBOX(id, func)}
            Process a wxEVT_COMMAND_CHECKBOX_CLICKED event, when the checkbox
            is clicked.
     @endEventTable
@@ -114,7 +114,7 @@ public:
     /**
         Gets the state of a 2-state checkbox.
 
-        @returns Returns @true if it is checked, @false otherwise.
+        @return Returns @true if it is checked, @false otherwise.
     */
     bool GetValue() const;
 
@@ -127,8 +127,8 @@ public:
     /**
         Returns whether or not the checkbox is a 3-state checkbox.
 
-        @returns Returns @true if this checkbox is a 3-state checkbox, @false
-                 if it's a 2-state checkbox.
+        @return @true if this checkbox is a 3-state checkbox, @false if it's
+                a 2-state checkbox.
     */
     bool Is3State() const;
 
@@ -136,9 +136,9 @@ public:
         Returns whether or not the user can set the checkbox to the third
         state.
 
-        @returns Returns @true if the user can set the third state of this
-                 checkbox, @false if it can only be set programmatically or if
-                 it's a 2-state checkbox.
+        @return @true if the user can set the third state of this checkbox,
+                @false if it can only be set programmatically or if it's a
+                2-state checkbox.
     */
     bool Is3rdStateAllowedForUser() const;