X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3c75d8baf987c83e231c981d07b5a9217d711361..8257d7cd478c54532cc7d8fd0ace9faf5e9efb23:/include/wx/gtk/combobox.h diff --git a/include/wx/gtk/combobox.h b/include/wx/gtk/combobox.h index 9cb4f9f185..d2df032aae 100644 --- a/include/wx/gtk/combobox.h +++ b/include/wx/gtk/combobox.h @@ -11,6 +11,8 @@ #ifndef _WX_GTK_COMBOBOX_H_ #define _WX_GTK_COMBOBOX_H_ +typedef struct _GtkEntry GtkEntry; + //----------------------------------------------------------------------------- // wxComboBox //----------------------------------------------------------------------------- @@ -94,7 +96,6 @@ public: virtual void SetFocus(); - void OnSize( wxSizeEvent &event ); void OnChar( wxKeyEvent &event ); // Standard event handling @@ -131,7 +132,6 @@ public: protected: // From wxWindowGTK: - virtual void DoApplyWidgetStyle(GtkRcStyle *style); virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; // From wxItemContainer: @@ -150,6 +150,9 @@ protected: // override this and return true. virtual bool UseGTKStyleBase() const { return true; } + // return the GtkEntry part of the combobox + GtkEntry *GetEntry() const; + private: // From wxTextEntry: virtual const wxWindow *GetEditableWindow() const { return this; }