1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface defs for wxComboBox
7 // Created: 10-June-1998
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
18 MAKE_CONST_WXSTRING(ComboBoxNameStr);
20 //---------------------------------------------------------------------------
25 class wxComboBox : public wxChoice
27 class wxComboBox : public wxControl, public wxItemContainer
31 %pythonAppend wxComboBox "self._setOORInfo(self)"
32 %pythonAppend wxComboBox() ""
34 wxComboBox(wxWindow* parent, wxWindowID id,
35 const wxString& value = wxPyEmptyString,
36 const wxPoint& pos = wxDefaultPosition,
37 const wxSize& size = wxDefaultSize,
38 //int choices=0, wxString* choices_array=NULL,
39 const wxArrayString& choices = wxPyEmptyStringArray,
41 const wxValidator& validator = wxDefaultValidator,
42 const wxString& name = wxPyComboBoxNameStr);
43 %name(PreComboBox)wxComboBox();
45 bool Create(wxWindow* parent, wxWindowID id,
46 const wxString& value = wxPyEmptyString,
47 const wxPoint& pos = wxDefaultPosition,
48 const wxSize& size = wxDefaultSize,
49 //int choices=0, wxString* choices_array=NULL,
50 const wxArrayString& choices = wxPyEmptyStringArray,
52 const wxValidator& validator = wxDefaultValidator,
53 const wxString& name = wxPyComboBoxNameStr);
56 virtual wxString GetValue() const;
57 virtual void SetValue(const wxString& value);
63 virtual void SetInsertionPoint(long pos);
64 virtual long GetInsertionPoint() const;
65 virtual long GetLastPosition() const;
66 virtual void Replace(long from, long to, const wxString& value);
67 void SetSelection(int n);
68 %name(SetMark) virtual void SetSelection(long from, long to);
69 virtual void SetEditable(bool editable);
71 virtual void SetInsertionPointEnd();
72 virtual void Remove(long from, long to);
75 //---------------------------------------------------------------------------