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