]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_combobox.i
reSWIGged
[wxWidgets.git] / wxPython / src / _combobox.i
index 079591dd811adf9b032160f8e532ba748f9ee55c..6e955724add0aeb4d23559b8ab75db7cd87f917f 100644 (file)
@@ -50,6 +50,8 @@ Events
 -------
     ================    ===============================================
     EVT_COMBOBOX        Sent when an item on the list is selected.
+                        Note that calling `GetValue` in this handler 
+                        will return the newly selected value.
     EVT_TEXT            Sent when the combobox text changes.
     ================    ===============================================
 ");
@@ -153,6 +155,15 @@ combobox text field.", "");
         "Selects the text between the two positions in the combobox text field.", "",
         SetMark);    
 
+#ifdef __WXMSW__
+    DocDeclAStrName(
+        virtual void , GetSelection(long* OUTPUT, long* OUTPUT),
+        "GetMark(self) -> (from, to)",
+        "Gets the positions of the begining and ending of the selection mark in
+the combobox text field.", "",
+        GetMark);
+#endif
+
     DocDeclStr(
         bool , SetStringSelection(const wxString& string),
         "Select the item with the specifed string", "");