- const wxString& value = wxEmptyString,
- const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize,
- int n = 0, const wxString choices[] = (const wxString *) NULL,
- long style = 0,
- const wxValidator& validator = wxDefaultValidator,
- const wxString& name = wxComboBoxNameStr);
-
- void Append( const wxString &item );
- void Append( const wxString &item, void* clientData );
- void Append( const wxString &item, wxClientData* clientData );
-
- void SetClientData( int n, void* clientData );
- void* GetClientData( int n );
- void SetClientObject( int n, wxClientData* clientData );
- wxClientData* GetClientObject( int n );
-
- void SetClientObject( wxClientData *data ) { wxControl::SetClientObject( data ); }
- wxClientData *GetClientObject() const { return wxControl::GetClientObject(); }
- void SetClientData( void *data ) { wxControl::SetClientData( data ); }
- void *GetClientData() const { return wxControl::GetClientData(); }
-
- void Clear();
- void Delete( int n );
-
- int FindString( const wxString &item );
- int GetSelection() const;
- wxString GetString( int n ) const;
- wxString GetStringSelection() const;
- int GetCount() const { return Number(); }
- int Number() const;
- void SetSelection( int 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();
- 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
-
- virtual void SetFocus();
-
- void OnSize( wxSizeEvent &event );
+ const wxString& value,
+ const wxPoint& pos,
+ const wxSize& size,
+ const wxArrayString& choices,
+ long style = 0,
+ const wxValidator& validator = wxDefaultValidator,
+ const wxString& name = wxComboBoxNameStr);
+
+ // From wxItemContainerImmutable:
+ virtual unsigned int GetCount() const;
+ virtual wxString GetString(unsigned int n) const;
+ virtual void SetString(unsigned int n, const wxString &text);
+ virtual int FindString(const wxString& s, bool bCase = false) const;
+ virtual void SetSelection(int n);
+ virtual int GetSelection() const;
+
+ // from wxTextEntry: we need to override them to avoid virtual function
+ // hiding
+ virtual void SetSelection(long from, long to)
+ {
+ wxTextEntry::SetSelection(from, to);
+ }
+
+ virtual void GetSelection(long *from, long *to) const
+ {
+ return wxTextEntry::GetSelection(from, to);
+ }
+
+ virtual wxString GetStringSelection() const
+ {
+ return wxItemContainer::GetStringSelection();
+ }
+
+ // From wxComboBoxBase:
+ virtual int GetCurrentSelection() const;
+