- 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 SetString(int n, const wxString &text);
-
- wxString GetValue() const;
- void SetValue(const wxString& value);
-
- void Copy();
- void Cut();
- void Paste();
- bool CanCopy() const;
- bool CanCut() const;
- bool CanPaste() const;
- void SetInsertionPoint( long pos );
- void SetInsertionPointEnd() { SetInsertionPoint( -1 ); }
- long GetInsertionPoint() const;
- virtual wxTextPos 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 GetSelection( long* from, long* to ) const;
- void SetEditable( bool editable );
- void Undo() ;
- void Redo() ;
- bool CanUndo() const;
- bool CanRedo() const;
- void SelectAll();
- bool IsEditable() const ;
- bool HasSelection() const ;
-
- // implementation
+ 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;