+ int FindString( const wxString &item );
+ int GetSelection() const;
+ wxString GetString( int n ) const;
+ wxString GetStringSelection() const;
+ int Number() const;
+ void SetSelection( int n );
+ void SetStringSelection( const wxString &string );
+
+ wxString GetValue() const;
+ void SetValue(const wxString& value);
+
+ void Copy();
+ void Cut();
+ void Paste();
+ void SetInsertionPoint( long pos );
+ void SetInsertionPointEnd();
+ long GetInsertionPoint() const;
+ long GetLastPosition() const;
+ void Replace( long from, long to, const wxString& value );
+ void Remove( long from, long to );
+ void SetSelection( long from, long to );
+ void SetEditable( bool editable );
+
+ // implementation
+
+ void OnSize( wxSizeEvent &event );
+ void OnChar( wxKeyEvent &event );
+
+ bool m_alreadySent;
+ wxList m_clientDataList;
+ wxList m_clientObjectList;
+
+ void DisableEvents();
+ void EnableEvents();
+ void AppendCommon( const wxString &item );
+ GtkWidget* GetConnectWidget();
+ bool IsOwnGtkWindow( GdkWindow *window );
+ void ApplyWidgetStyle();
+
+protected:
+ virtual wxSize DoGetBestSize() const;
+
+private:
+ DECLARE_DYNAMIC_CLASS(wxComboBox)
+ DECLARE_EVENT_TABLE()