]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/combo.h
Added wxDataViewBitmapCell
[wxWidgets.git] / include / wx / combo.h
index 8d53347408a9b85a3f71f8561b916e95e0cf420c..25dc298df483175e21a1e8cd91f9373c89b2ec6d 100644 (file)
@@ -199,6 +199,10 @@ public:
     // (ie. wxComboPopup::SetStringValue doesn't get called).
     void SetText(const wxString& value);
 
+    // This method sets value and also optionally sends EVT_TEXT
+    // (needed by combo popups)
+    void SetValueWithEvent(const wxString& value, bool withEvent = true);
+
     //
     // Popup customization methods
     //
@@ -522,6 +526,8 @@ protected:
 private:
     void Init();
 
+    wxByte                  m_ignoreEvtText;  // Number of next EVT_TEXTs to ignore
+
     DECLARE_EVENT_TABLE()
 
     DECLARE_ABSTRACT_CLASS(wxComboCtrlBase)