]>
Commit | Line | Data |
---|---|---|
d14a1e28 RD |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: _listbox.i | |
3 | // Purpose: SWIG interface defs for wxListBox and wxCheckListBox | |
4 | // | |
5 | // Author: Robin Dunn | |
6 | // | |
7 | // Created: 10-June-1998 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 2003 by Total Control Software | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | // Not a %module | |
14 | ||
15 | ||
16 | //--------------------------------------------------------------------------- | |
17 | ||
18 | %{ | |
19 | #include <wx/checklst.h> | |
20 | ||
d14a1e28 RD |
21 | %} |
22 | ||
b2dc1044 RD |
23 | MAKE_CONST_WXSTRING(ListBoxNameStr); |
24 | ||
25 | ||
d14a1e28 RD |
26 | //--------------------------------------------------------------------------- |
27 | %newgroup | |
28 | ||
29 | class wxListBox : public wxControlWithItems | |
30 | { | |
31 | public: | |
2b9048c5 RD |
32 | %pythonAppend wxListBox "self._setOORInfo(self)" |
33 | %pythonAppend wxListBox() "" | |
d14a1e28 RD |
34 | |
35 | wxListBox(wxWindow* parent, wxWindowID id, | |
36 | const wxPoint& pos = wxDefaultPosition, | |
37 | const wxSize& size = wxDefaultSize, | |
699e192b RD |
38 | //int choices=0, wxString* choices_array = NULL, |
39 | const wxArrayString& choices = wxPyEmptyStringArray, | |
d14a1e28 RD |
40 | long style = 0, |
41 | const wxValidator& validator = wxDefaultValidator, | |
42 | const wxString& name = wxPyListBoxNameStr); | |
43 | %name(PreListBox)wxListBox(); | |
44 | ||
45 | bool Create(wxWindow* parent, wxWindowID id, | |
699e192b RD |
46 | const wxPoint& pos = wxDefaultPosition, |
47 | const wxSize& size = wxDefaultSize, | |
48 | //int choices=0, wxString* choices_array = NULL, | |
49 | const wxArrayString& choices = wxPyEmptyStringArray, | |
50 | long style = 0, | |
51 | const wxValidator& validator = wxDefaultValidator, | |
52 | const wxString& name = wxPyListBoxNameStr); | |
d14a1e28 RD |
53 | |
54 | // all generic methods are in wxControlWithItems... | |
55 | ||
56 | %extend { | |
57 | void Insert(const wxString& item, int pos, PyObject* clientData=NULL) { | |
58 | if (clientData) { | |
59 | wxPyClientData* data = new wxPyClientData(clientData); | |
60 | self->Insert(item, pos, data); | |
61 | } else | |
62 | self->Insert(item, pos); | |
63 | } | |
64 | } | |
65 | ||
66 | void InsertItems(const wxArrayString& items, int pos); | |
67 | void Set(const wxArrayString& items/*, void **clientData = NULL */); | |
68 | ||
69 | // multiple selection logic | |
70 | virtual bool IsSelected(int n) const; | |
dd9f7fea | 71 | virtual void SetSelection(int n, bool select = True); |
d14a1e28 RD |
72 | virtual void Select(int n); |
73 | void Deselect(int n); | |
74 | void DeselectAll(int itemToLeaveSelected = -1); | |
75 | ||
dd9f7fea | 76 | virtual bool SetStringSelection(const wxString& s, bool select = True); |
d14a1e28 RD |
77 | |
78 | // works for single as well as multiple selection listboxes (unlike | |
79 | // GetSelection which only works for listboxes with single selection) | |
80 | //virtual int GetSelections(wxArrayInt& aSelections) const; | |
81 | %extend { | |
82 | PyObject* GetSelections() { | |
83 | wxArrayInt lst; | |
84 | self->GetSelections(lst); | |
85 | PyObject *tup = PyTuple_New(lst.GetCount()); | |
86 | for(size_t i=0; i<lst.GetCount(); i++) { | |
87 | PyTuple_SetItem(tup, i, PyInt_FromLong(lst[i])); | |
88 | } | |
89 | return tup; | |
90 | } | |
91 | } | |
92 | ||
93 | // set the specified item at the first visible item or scroll to max | |
94 | // range. | |
95 | void SetFirstItem(int n); | |
96 | %name(SetFirstItemStr) void SetFirstItem(const wxString& s); | |
97 | ||
98 | // ensures that the given item is visible scrolling the listbox if | |
99 | // necessary | |
100 | virtual void EnsureVisible(int n); | |
101 | ||
102 | // a combination of Append() and EnsureVisible(): appends the item to the | |
103 | // listbox and ensures that it is visible i.e. not scrolled out of view | |
104 | void AppendAndEnsureVisible(const wxString& s); | |
105 | ||
dd9f7fea | 106 | // return True if this listbox is sorted |
d14a1e28 | 107 | bool IsSorted() const; |
8492b560 RD |
108 | |
109 | ||
110 | %extend { | |
111 | void SetItemForegroundColour(int item, const wxColour& c) { | |
112 | %#ifdef __WXMSW__ | |
113 | if (self->GetWindowStyle() & wxLB_OWNERDRAW) | |
114 | self->GetItem(item)->SetTextColour(c); | |
115 | %#endif | |
116 | } | |
117 | void SetItemBackgroundColour(int item, const wxColour& c) { | |
118 | %#ifdef __WXMSW__ | |
119 | if (self->GetWindowStyle() & wxLB_OWNERDRAW) | |
120 | self->GetItem(item)->SetBackgroundColour(c); | |
121 | %#endif | |
122 | } | |
123 | void SetItemFont(int item, const wxFont& f) { | |
124 | %#ifdef __WXMSW__ | |
125 | if (self->GetWindowStyle() & wxLB_OWNERDRAW) | |
126 | self->GetItem(item)->SetFont(f); | |
127 | %#endif | |
128 | } | |
129 | } | |
d14a1e28 RD |
130 | }; |
131 | ||
132 | ||
133 | //--------------------------------------------------------------------------- | |
134 | %newgroup | |
135 | ||
136 | ||
137 | // wxCheckListBox: a listbox whose items may be checked | |
138 | class wxCheckListBox : public wxListBox | |
139 | { | |
140 | public: | |
2b9048c5 RD |
141 | %pythonAppend wxCheckListBox "self._setOORInfo(self)" |
142 | %pythonAppend wxCheckListBox() "" | |
d14a1e28 RD |
143 | |
144 | wxCheckListBox(wxWindow *parent, wxWindowID id, | |
145 | const wxPoint& pos = wxDefaultPosition, | |
146 | const wxSize& size = wxDefaultSize, | |
699e192b RD |
147 | //int choices = 0, wxString* choices_array = NULL, |
148 | const wxArrayString& choices = wxPyEmptyStringArray, | |
d14a1e28 RD |
149 | long style = 0, |
150 | const wxValidator& validator = wxDefaultValidator, | |
151 | const wxString& name = wxPyListBoxNameStr); | |
152 | %name(PreCheckListBox)wxCheckListBox(); | |
153 | ||
154 | bool Create(wxWindow *parent, wxWindowID id, | |
699e192b RD |
155 | const wxPoint& pos = wxDefaultPosition, |
156 | const wxSize& size = wxDefaultSize, | |
157 | //int choices = 0, wxString* choices_array = NULL, | |
158 | const wxArrayString& choices = wxPyEmptyStringArray, | |
159 | long style = 0, | |
160 | const wxValidator& validator = wxDefaultValidator, | |
161 | const wxString& name = wxPyListBoxNameStr); | |
d14a1e28 RD |
162 | |
163 | bool IsChecked(int index); | |
dd9f7fea | 164 | void Check(int index, int check = True); |
d14a1e28 | 165 | |
8dfc6457 | 166 | #if defined(__WXMSW__) || defined(__WXGTK__) |
d14a1e28 RD |
167 | int GetItemHeight(); |
168 | #endif | |
169 | ||
170 | // return the index of the item at this position or wxNOT_FOUND | |
171 | int HitTest(const wxPoint& pt) const; | |
172 | %name(HitTestXY)int HitTest(wxCoord x, wxCoord y) const; | |
173 | }; | |
174 | ||
175 | //--------------------------------------------------------------------------- |