+ bool Create(wxWindow *parent, wxWindowID id,
+ const wxString& value,
+ const wxPoint& pos,
+ const wxSize& size,
+ const wxArrayString& choices,
+ long style = 0,
+ const wxValidator& validator = wxDefaultValidator,
+ const wxString& name = wxComboBoxNameStr);
+
+ void Clear();
+ void Delete( int n );
+
+ virtual int FindString( const wxString &item ) const;
+ int GetSelection() const;
+ wxString GetString( int n ) const;
+ wxString GetStringSelection() const;
+ int GetCount() const;
+ int Number() const { return GetCount(); }
+ void SetSelection( int n );
+ void Select( int n ) { return SetSelection( n ); }
+ void SetStringSelection( const wxString &string );
+ void SetString(int n, const wxString &text);
+
+ wxString GetValue() const;
+ void SetValue(const wxString& value);
+
+ void Copy();
+ void Cut();
+ void Paste();
+ void SetInsertionPoint( long pos );
+ void SetInsertionPointEnd() { SetInsertionPoint( -1 ); }
+ long GetInsertionPoint() const;
+ long GetLastPosition() const;
+ void Remove(long from, long to) { Replace(from, to, wxEmptyString); }
+ void Replace( long from, long to, const wxString& value );
+ void SetSelection( long from, long to );
+ void SetEditable( bool editable );
+
+ // implementation
+
+ virtual void SetFocus();
+
+ void OnSize( wxSizeEvent &event );
+ void OnChar( wxKeyEvent &event );