- // From wxItemContainer:
- virtual int DoInsertItems(const wxArrayStringsAdapter& items,
- unsigned int pos,
- void **clientData, wxClientDataType type);
- virtual void DoSetItemClientData(unsigned int n, void* clientData);
- virtual void* DoGetItemClientData(unsigned int n) const;
- virtual bool IsSorted() const { return HasFlag(wxCB_SORT); }
- virtual void DoClear();
- virtual void DoDeleteOneItem(unsigned int n);
+ // Widgets that use the style->base colour for the BG colour should
+ // override this and return true.
+ virtual bool UseGTKStyleBase() const { return true; }
+
+ // Override in derived classes to create combo box widgets with
+ // custom list stores.
+ virtual void GTKCreateComboBoxWidget();
+
+ // return the GtkEntry part of the combobox
+ GtkEntry *GetEntry() const { return m_entry; }