]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/choice.h
don't blit too much when copying static box border in OnPaint()
[wxWidgets.git] / interface / choice.h
index 42a813237ee1a7131f5f52bd017874400ec0123c..c138bbed014afc1bd6c3309fe3bbc3ea222c6bd5 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        choice.h
-// Purpose:     documentation for wxChoice class
+// Purpose:     interface of wxChoice
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -29,8 +29,7 @@
     @category{ctrl}
     @appearance{choice.png}
 
-    @seealso
-    wxListBox, wxComboBox, wxCommandEvent
+    @see wxListBox, wxComboBox, wxCommandEvent
 */
 class wxChoice : public wxControlWithItems
 {
@@ -38,7 +37,7 @@ public:
     //@{
     /**
         Constructor, creating and showing a choice.
-        
+
         @param parent
             Parent window. Must not be @NULL.
         @param id
@@ -59,7 +58,7 @@ public:
             Window validator.
         @param name
             Window name.
-        
+
         @see Create(), wxValidator
     */
     wxChoice();
@@ -105,11 +104,11 @@ public:
 
     /**
         Gets the number of columns in this choice item.
-        
+
         @remarks This is implemented for Motif only and always returns 1 for the
                  other platforms.
     */
-    int GetColumns();
+    int GetColumns() const;
 
     /**
         Unlike wxControlWithItems::GetSelection which only
@@ -118,17 +117,19 @@ public:
         That is, while the dropdown list is shown, it returns the currently selected
         item in it. When it is not shown, its result is the same as for the other
         function.
-        This function is new since wxWidgets version 2.6.2 (before this version
+
+        @wxsince{2.6.2} (before this version
         wxControlWithItems::GetSelection itself behaved like
         this).
     */
-    int GetCurrentSelection();
+    int GetCurrentSelection() const;
 
     /**
         Sets the number of columns in this choice item.
-        
+
         @param n
             Number of columns.
     */
     void SetColumns(int n = 1);
 };
+