]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/combobox.h
use wxWANTS_CHARS to allow arrows to work inside the control
[wxWidgets.git] / interface / combobox.h
index 082f052cff9af3d820769d767ba8af2d5168d94c..36131700113f5eb949fbc997e73c97ddade8373e 100644 (file)
@@ -18,9 +18,8 @@
     A combobox permits a single selection only. Combobox items are numbered from
     zero.
 
-    If you need a customized combobox, have a look at wxComboCtrl,
-    wxOwnerDrawnComboBox, wxComboPopup
-    and the ready-to-use wxBitmapComboBox.
+    If you need a customized combobox, have a look at wxComboCtrl, wxOwnerDrawnComboBox,
+    wxComboPopup and the ready-to-use wxBitmapComboBox.
 
     @beginStyleTable
     @style{wxCB_SIMPLE}:
@@ -40,7 +39,7 @@
            only.
     @endStyleTable
 
-    @beginEventTable
+    @beginEventTable{wxCommandEvent}
     @event{EVT_COMBOBOX(id, func)}:
            Process a wxEVT_COMMAND_COMBOBOX_SELECTED event, when an item on
            the list is selected. Note that calling GetValue returns the new
@@ -194,7 +193,7 @@ public:
 
     /**
         Returns the insertion point for the combobox's text field.
-        @b Note: Under wxMSW, this function always returns 0 if the combobox
+        @note Under wxMSW, this function always returns 0 if the combobox
         doesn't have the focus.
     */
     long GetInsertionPoint() const;
@@ -275,8 +274,9 @@ public:
 
     /**
         Sets the text for the combobox text field.
-        @b NB: For a combobox with @c wxCB_READONLY style the string must be in
-        the combobox choices list, otherwise the call to SetValue() is ignored.
+
+        @note For a combobox with @c wxCB_READONLY style the string must be in
+              the combobox choices list, otherwise the call to SetValue() is ignored.
 
         @param text
             The text to set.