- 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);
+
+ // Set/GetSelection() from wxTextEntry and wxChoice
+
+ virtual void SetSelection(int n) { wxChoice::SetSelection(n); }
+ virtual void SetSelection(long from, long to)
+ { wxTextEntry::SetSelection(from, to); }
+
+ virtual int GetSelection() const { return wxChoice::GetSelection(); }
+ virtual void GetSelection(long *from, long *to) const
+ { return wxTextEntry::GetSelection(from, to); }
+
+ virtual wxString GetStringSelection() const
+ {
+ return wxItemContainer::GetStringSelection();
+ }
+ virtual void Popup();
+ virtual void Dismiss();
+
+ virtual void Clear()
+ {
+ wxTextEntry::Clear();
+ wxItemContainer::Clear();
+ }
+
+ // See wxComboBoxBase discussion of IsEmpty().
+ bool IsListEmpty() const { return wxItemContainer::IsEmpty(); }
+ bool IsTextEmpty() const { return wxTextEntry::IsEmpty(); }
+