]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/combobox.h
Move wxBell() from base to core library.
[wxWidgets.git] / include / wx / gtk / combobox.h
index fb718013c5f136c1cf5bc4807ef176aba63ad17c..e31a347c8ec2bf3f053e110684a9512f615b3ec4 100644 (file)
@@ -88,6 +88,9 @@ public:
     {
         return wxItemContainer::GetStringSelection();
     }
+
+    virtual void SetString(unsigned int n, const wxString& string);
+
     virtual void Popup();
     virtual void Dismiss();
 
@@ -97,7 +100,9 @@ public:
         wxItemContainer::Clear();
     }
 
-    bool IsEmpty() const { return wxItemContainer::IsEmpty(); }
+    // See wxComboBoxBase discussion of IsEmpty().
+    bool IsListEmpty() const { return wxItemContainer::IsEmpty(); }
+    bool IsTextEmpty() const { return wxTextEntry::IsEmpty(); }
 
     void OnChar( wxKeyEvent &event );