]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/combobox.h
Add wxComboBox::Popup() and Dismiss() to manually show or hide its popup.
[wxWidgets.git] / interface / wx / combobox.h
index 67029f392beb81904be14ad5b0c76983d8bd049d..8baa461c5bd684112fc7e0b28a61f36b86fb9629 100644 (file)
@@ -243,5 +243,23 @@ public:
             The text to set.
     */
     virtual void SetValue(const wxString& text);
+
+    /**
+        Shows the list box portion of the combo box.
+
+        Currently only implemented in wxMSW and wxGTK.
+
+        @since 2.9.1
+    */
+    virtual void Popup();
+
+    /**
+        Hides the list box portion of the combo box.
+
+        Currently only implemented in wxMSW and wxGTK.
+
+        @since 2.9.1
+    */
+    virtual void Dismiss();
 };