#ifndef _WX_GTK_COMBOBOX_H_
#define _WX_GTK_COMBOBOX_H_
+typedef struct _GtkEntry GtkEntry;
+
//-----------------------------------------------------------------------------
// wxComboBox
//-----------------------------------------------------------------------------
// From wxComboBoxBase:
virtual int GetCurrentSelection() const;
- virtual void SetFocus();
-
- void OnSize( wxSizeEvent &event );
void OnChar( wxKeyEvent &event );
// Standard event handling
protected:
// From wxWindowGTK:
- virtual void DoApplyWidgetStyle(GtkRcStyle *style);
virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
// From wxItemContainer:
// 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; }