]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: controls2.i | |
3 | // Purpose: More control (widget) classes for wxPython | |
4 | // | |
5 | // Author: Robin Dunn | |
6 | // | |
7 | // Created: 6/10/98 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) 1998 by Total Control Software | |
10 | // Licence: wxWindows license | |
11 | ///////////////////////////////////////////////////////////////////////////// | |
12 | ||
13 | %module controls2 | |
14 | ||
15 | %{ | |
16 | #include "helpers.h" | |
17 | #ifdef __WXMSW__ | |
18 | #include <windows.h> | |
19 | #endif | |
20 | #include <wx/listctrl.h> | |
21 | #include <wx/treectrl.h> | |
22 | %} | |
23 | ||
24 | //---------------------------------------------------------------------- | |
25 | ||
26 | %include typemaps.i | |
27 | %include my_typemaps.i | |
28 | ||
29 | // Import some definitions of other classes, etc. | |
30 | %import _defs.i | |
31 | %import misc.i | |
32 | %import windows.i | |
33 | %import gdi.i | |
34 | %import events.i | |
35 | %import controls.i | |
36 | ||
37 | %pragma(python) code = "import wx" | |
38 | ||
39 | //---------------------------------------------------------------------- | |
40 | ||
41 | ||
42 | enum { | |
43 | wxLIST_MASK_TEXT, | |
44 | wxLIST_MASK_IMAGE, | |
45 | wxLIST_MASK_DATA, | |
46 | wxLIST_MASK_WIDTH, | |
47 | wxLIST_MASK_FORMAT, | |
48 | wxLIST_MASK_STATE, | |
49 | wxLIST_STATE_DONTCARE, | |
50 | wxLIST_STATE_DROPHILITED, | |
51 | wxLIST_STATE_FOCUSED, | |
52 | wxLIST_STATE_SELECTED, | |
53 | wxLIST_STATE_CUT, | |
54 | wxLIST_HITTEST_ABOVE, | |
55 | wxLIST_HITTEST_BELOW, | |
56 | wxLIST_HITTEST_NOWHERE, | |
57 | wxLIST_HITTEST_ONITEMICON, | |
58 | wxLIST_HITTEST_ONITEMLABEL, | |
59 | wxLIST_HITTEST_ONITEMRIGHT, | |
60 | wxLIST_HITTEST_ONITEMSTATEICON, | |
61 | wxLIST_HITTEST_TOLEFT, | |
62 | wxLIST_HITTEST_TORIGHT, | |
63 | wxLIST_HITTEST_ONITEM, | |
64 | wxLIST_NEXT_ABOVE, | |
65 | wxLIST_NEXT_ALL, | |
66 | wxLIST_NEXT_BELOW, | |
67 | wxLIST_NEXT_LEFT, | |
68 | wxLIST_NEXT_RIGHT, | |
69 | wxLIST_ALIGN_DEFAULT, | |
70 | wxLIST_ALIGN_LEFT, | |
71 | wxLIST_ALIGN_TOP, | |
72 | wxLIST_ALIGN_SNAP_TO_GRID, | |
73 | wxLIST_AUTOSIZE, | |
74 | wxLIST_AUTOSIZE_USEHEADER, | |
75 | wxLIST_RECT_BOUNDS, | |
76 | wxLIST_RECT_ICON, | |
77 | wxLIST_RECT_LABEL, | |
78 | wxLIST_FIND_UP, | |
79 | wxLIST_FIND_DOWN, | |
80 | wxLIST_FIND_LEFT, | |
81 | wxLIST_FIND_RIGHT, | |
82 | }; | |
83 | ||
84 | ||
85 | enum wxListColumnFormat | |
86 | { | |
87 | wxLIST_FORMAT_LEFT, | |
88 | wxLIST_FORMAT_RIGHT, | |
89 | wxLIST_FORMAT_CENTRE, | |
90 | wxLIST_FORMAT_CENTER = wxLIST_FORMAT_CENTRE | |
91 | }; | |
92 | ||
93 | ||
94 | enum { | |
95 | /* List control event types */ | |
96 | wxEVT_COMMAND_LIST_BEGIN_DRAG, | |
97 | wxEVT_COMMAND_LIST_BEGIN_RDRAG, | |
98 | wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT, | |
99 | wxEVT_COMMAND_LIST_END_LABEL_EDIT, | |
100 | wxEVT_COMMAND_LIST_DELETE_ITEM, | |
101 | wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS, | |
102 | wxEVT_COMMAND_LIST_GET_INFO, | |
103 | wxEVT_COMMAND_LIST_SET_INFO, | |
104 | wxEVT_COMMAND_LIST_ITEM_SELECTED, | |
105 | wxEVT_COMMAND_LIST_ITEM_DESELECTED, | |
106 | wxEVT_COMMAND_LIST_KEY_DOWN, | |
107 | wxEVT_COMMAND_LIST_INSERT_ITEM, | |
108 | wxEVT_COMMAND_LIST_COL_CLICK, | |
109 | wxEVT_COMMAND_LIST_ITEM_ACTIVATED, | |
110 | wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK, | |
111 | wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, | |
112 | }; | |
113 | ||
114 | ||
115 | ||
116 | class wxListItemAttr | |
117 | { | |
118 | public: | |
119 | // ctors | |
120 | wxListItemAttr(); | |
121 | //wxListItemAttr(const wxColour& colText, | |
122 | // const wxColour& colBack, | |
123 | // const wxFont& font) | |
124 | // : m_colText(colText), m_colBack(colBack), m_font(font) { } | |
125 | ||
126 | // setters | |
127 | void SetTextColour(const wxColour& colText); | |
128 | void SetBackgroundColour(const wxColour& colBack); | |
129 | void SetFont(const wxFont& font); | |
130 | ||
131 | // accessors | |
132 | bool HasTextColour(); | |
133 | bool HasBackgroundColour(); | |
134 | bool HasFont(); | |
135 | ||
136 | const wxColour& GetTextColour(); | |
137 | const wxColour& GetBackgroundColour(); | |
138 | const wxFont& GetFont(); | |
139 | }; | |
140 | ||
141 | ||
142 | class wxListItem { | |
143 | public: | |
144 | wxListItem(); | |
145 | ~wxListItem(); | |
146 | ||
147 | // resetting | |
148 | void Clear(); | |
149 | void ClearAttributes(); | |
150 | ||
151 | // setters | |
152 | void SetMask(long mask); | |
153 | void SetId(long id); | |
154 | void SetColumn(int col); | |
155 | void SetState(long state); | |
156 | void SetStateMask(long stateMask); | |
157 | void SetText(const wxString& text); | |
158 | void SetImage(int image); | |
159 | void SetData(long data); | |
160 | ||
161 | void SetWidth(int width); | |
162 | void SetAlign(wxListColumnFormat align); | |
163 | ||
164 | void SetTextColour(const wxColour& colText); | |
165 | void SetBackgroundColour(const wxColour& colBack); | |
166 | void SetFont(const wxFont& font); | |
167 | ||
168 | // accessors | |
169 | long GetMask(); | |
170 | long GetId(); | |
171 | int GetColumn(); | |
172 | long GetState(); | |
173 | const wxString& GetText(); | |
174 | int GetImage(); | |
175 | long GetData(); | |
176 | ||
177 | int GetWidth(); | |
178 | wxListColumnFormat GetAlign(); | |
179 | ||
180 | wxListItemAttr *GetAttributes(); | |
181 | bool HasAttributes(); | |
182 | ||
183 | wxColour GetTextColour() const; | |
184 | wxColour GetBackgroundColour() const; | |
185 | wxFont GetFont() const; | |
186 | ||
187 | // these members are public for compatibility | |
188 | long m_mask; // Indicates what fields are valid | |
189 | long m_itemId; // The zero-based item position | |
190 | int m_col; // Zero-based column, if in report mode | |
191 | long m_state; // The state of the item | |
192 | long m_stateMask;// Which flags of m_state are valid (uses same flags) | |
193 | wxString m_text; // The label/header text | |
194 | int m_image; // The zero-based index into an image list | |
195 | long m_data; // App-defined data | |
196 | ||
197 | // For columns only | |
198 | int m_format; // left, right, centre | |
199 | int m_width; // width of column | |
200 | ||
201 | }; | |
202 | ||
203 | ||
204 | class wxListEvent: public wxNotifyEvent { | |
205 | public: | |
206 | int m_code; | |
207 | long m_itemIndex; | |
208 | long m_oldItemIndex; | |
209 | int m_col; | |
210 | bool m_cancelled; | |
211 | wxPoint m_pointDrag; | |
212 | wxListItem m_item; | |
213 | ||
214 | int GetCode(); | |
215 | long GetIndex(); | |
216 | long GetOldIndex(); | |
217 | long GetOldItem(); | |
218 | int GetColumn(); | |
219 | bool Cancelled(); | |
220 | wxPoint GetPoint(); | |
221 | const wxString& GetLabel(); | |
222 | const wxString& GetText(); | |
223 | int GetImage(); | |
224 | long GetData(); | |
225 | long GetMask(); | |
226 | const wxListItem& GetItem(); | |
227 | }; | |
228 | ||
229 | ||
230 | ||
231 | class wxListCtrl : public wxControl { | |
232 | public: | |
233 | wxListCtrl(wxWindow* parent, wxWindowID id, | |
234 | const wxPoint& pos = wxDefaultPosition, | |
235 | const wxSize& size = wxDefaultSize, | |
236 | long style = wxLC_ICON, | |
237 | const wxValidator& validator = wxDefaultValidator, | |
238 | char* name = "listCtrl"); | |
239 | ||
240 | %pragma(python) addtomethod = "__init__:#wx._StdWindowCallbacks(self)" | |
241 | ||
242 | bool Arrange(int flag = wxLIST_ALIGN_DEFAULT); | |
243 | void AssignImageList(wxImageList* imageList, int which); | |
244 | bool DeleteItem(long item); | |
245 | bool DeleteAllItems(); | |
246 | bool DeleteColumn(int col); | |
247 | bool DeleteAllColumns(void); | |
248 | void ClearAll(void); | |
249 | #ifdef __WXMSW__ | |
250 | wxTextCtrl* EditLabel(long item); | |
251 | bool EndEditLabel(bool cancel); | |
252 | wxTextCtrl* GetEditControl(); | |
253 | #else | |
254 | void EditLabel(long item); | |
255 | #endif | |
256 | bool EnsureVisible(long item); | |
257 | long FindItem(long start, const wxString& str, bool partial = FALSE); | |
258 | %name(FindItemData)long FindItem(long start, long data); | |
259 | %name(FindItemAtPos)long FindItem(long start, const wxPoint& pt, | |
260 | int direction); | |
261 | bool GetColumn(int col, wxListItem& item); | |
262 | int GetColumnWidth(int col); | |
263 | int GetCountPerPage(); | |
264 | wxImageList* GetImageList(int which); | |
265 | long GetItemData(long item); | |
266 | ||
267 | %addmethods { | |
268 | %new wxListItem* GetItem(long itemId, int col=0) { | |
269 | wxListItem* info = new wxListItem; | |
270 | info->m_itemId = itemId; | |
271 | info->m_col = col; | |
272 | info->m_mask = 0xFFFF; | |
273 | self->GetItem(*info); | |
274 | return info; | |
275 | } | |
276 | %new wxPoint* GetItemPosition(long item) { | |
277 | wxPoint* pos = new wxPoint; | |
278 | self->GetItemPosition(item, *pos); | |
279 | return pos; | |
280 | } | |
281 | %new wxRect* GetItemRect(long item, int code = wxLIST_RECT_BOUNDS) { | |
282 | wxRect* rect= new wxRect; | |
283 | self->GetItemRect(item, *rect, code); | |
284 | return rect; | |
285 | } | |
286 | } | |
287 | ||
288 | int GetItemState(long item, long stateMask); | |
289 | int GetItemCount(); | |
290 | int GetItemSpacing(bool isSmall); | |
291 | wxString GetItemText(long item); | |
292 | long GetNextItem(long item, | |
293 | int geometry = wxLIST_NEXT_ALL, | |
294 | int state = wxLIST_STATE_DONTCARE); | |
295 | int GetSelectedItemCount(); | |
296 | #ifdef __WXMSW__ | |
297 | wxColour GetTextColour(); | |
298 | void SetTextColour(const wxColour& col); | |
299 | #endif | |
300 | long GetTopItem(); | |
301 | long HitTest(const wxPoint& point, int& OUTPUT); | |
302 | %name(InsertColumnInfo)long InsertColumn(long col, wxListItem& info); | |
303 | long InsertColumn(long col, const wxString& heading, | |
304 | int format = wxLIST_FORMAT_LEFT, | |
305 | int width = -1); | |
306 | ||
307 | long InsertItem(wxListItem& info); | |
308 | %name(InsertStringItem) long InsertItem(long index, const wxString& label); | |
309 | %name(InsertImageItem) long InsertItem(long index, int imageIndex); | |
310 | %name(InsertImageStringItem)long InsertItem(long index, const wxString& label, | |
311 | int imageIndex); | |
312 | ||
313 | bool ScrollList(int dx, int dy); | |
314 | void SetBackgroundColour(const wxColour& col); | |
315 | bool SetColumn(int col, wxListItem& item); | |
316 | bool SetColumnWidth(int col, int width); | |
317 | void SetImageList(wxImageList* imageList, int which); | |
318 | ||
319 | bool SetItem(wxListItem& info); | |
320 | %name(SetStringItem)long SetItem(long index, int col, const wxString& label, | |
321 | int imageId = -1); | |
322 | ||
323 | bool SetItemData(long item, long data); | |
324 | bool SetItemImage(long item, int image, int selImage); | |
325 | bool SetItemPosition(long item, const wxPoint& pos); | |
326 | bool SetItemState(long item, long state, long stateMask); | |
327 | void SetItemText(long item, const wxString& text); | |
328 | void SetSingleStyle(long style, bool add = TRUE); | |
329 | void SetWindowStyleFlag(long style); | |
330 | ||
331 | // bool SortItems(wxListCtrlCompare fn, long data); | |
332 | %addmethods { | |
333 | bool SortItems(PyObject* func) { | |
334 | if (!PyCallable_Check(func)) | |
335 | return FALSE; | |
336 | ||
337 | return self->SortItems(wxPyListCtrl_SortItems, (long)func); | |
338 | } | |
339 | } | |
340 | }; | |
341 | ||
342 | %{ | |
343 | int wxCALLBACK wxPyListCtrl_SortItems(long item1, long item2, long funcPtr) { | |
344 | int retval = 0; | |
345 | PyObject* func = (PyObject*)funcPtr; | |
346 | bool doSave = wxPyRestoreThread(); | |
347 | ||
348 | PyObject* args = Py_BuildValue("(ii)", item1, item2); | |
349 | PyObject* result = PyEval_CallObject(func, args); | |
350 | Py_DECREF(args); | |
351 | if (result) { | |
352 | retval = PyInt_AsLong(result); | |
353 | Py_DECREF(result); | |
354 | } | |
355 | ||
356 | wxPySaveThread(doSave); | |
357 | return retval; | |
358 | } | |
359 | ||
360 | %} | |
361 | ||
362 | //---------------------------------------------------------------------- | |
363 | ||
364 | enum wxTreeItemIcon | |
365 | { | |
366 | wxTreeItemIcon_Normal, // not selected, not expanded | |
367 | wxTreeItemIcon_Selected, // selected, not expanded | |
368 | wxTreeItemIcon_Expanded, // not selected, expanded | |
369 | wxTreeItemIcon_SelectedExpanded, // selected, expanded | |
370 | wxTreeItemIcon_Max | |
371 | }; | |
372 | ||
373 | ||
374 | // constants for HitTest | |
375 | enum { | |
376 | wxTREE_HITTEST_ABOVE, | |
377 | wxTREE_HITTEST_BELOW, | |
378 | wxTREE_HITTEST_NOWHERE, | |
379 | wxTREE_HITTEST_ONITEMBUTTON, | |
380 | wxTREE_HITTEST_ONITEMICON, | |
381 | wxTREE_HITTEST_ONITEMINDENT, | |
382 | wxTREE_HITTEST_ONITEMLABEL, | |
383 | wxTREE_HITTEST_ONITEMRIGHT, | |
384 | wxTREE_HITTEST_ONITEMSTATEICON, | |
385 | wxTREE_HITTEST_TOLEFT, | |
386 | wxTREE_HITTEST_TORIGHT, | |
387 | wxTREE_HITTEST_ONITEMUPPERPART, | |
388 | wxTREE_HITTEST_ONITEMLOWERPART, | |
389 | wxTREE_HITTEST_ONITEM | |
390 | }; | |
391 | ||
392 | ||
393 | enum { | |
394 | /* Tree control event types */ | |
395 | wxEVT_COMMAND_TREE_BEGIN_DRAG, | |
396 | wxEVT_COMMAND_TREE_BEGIN_RDRAG, | |
397 | wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT, | |
398 | wxEVT_COMMAND_TREE_END_LABEL_EDIT, | |
399 | wxEVT_COMMAND_TREE_DELETE_ITEM, | |
400 | wxEVT_COMMAND_TREE_GET_INFO, | |
401 | wxEVT_COMMAND_TREE_SET_INFO, | |
402 | wxEVT_COMMAND_TREE_ITEM_EXPANDED, | |
403 | wxEVT_COMMAND_TREE_ITEM_EXPANDING, | |
404 | wxEVT_COMMAND_TREE_ITEM_COLLAPSED, | |
405 | wxEVT_COMMAND_TREE_ITEM_COLLAPSING, | |
406 | wxEVT_COMMAND_TREE_SEL_CHANGED, | |
407 | wxEVT_COMMAND_TREE_SEL_CHANGING, | |
408 | wxEVT_COMMAND_TREE_KEY_DOWN, | |
409 | wxEVT_COMMAND_TREE_ITEM_ACTIVATED, | |
410 | wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK, | |
411 | wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK, | |
412 | }; | |
413 | ||
414 | ||
415 | class wxTreeItemId { | |
416 | public: | |
417 | wxTreeItemId(); | |
418 | ~wxTreeItemId(); | |
419 | bool IsOk(); | |
420 | ||
421 | %addmethods { | |
422 | int __cmp__(wxTreeItemId* other) { | |
423 | if (! other) return -1; | |
424 | return *self != *other; | |
425 | } | |
426 | } | |
427 | }; | |
428 | ||
429 | ||
430 | ||
431 | %{ | |
432 | class wxPyTreeItemData : public wxTreeItemData { | |
433 | public: | |
434 | wxPyTreeItemData(PyObject* obj = NULL) { | |
435 | if (obj == NULL) | |
436 | obj = Py_None; | |
437 | Py_INCREF(obj); | |
438 | m_obj = obj; | |
439 | } | |
440 | ||
441 | ~wxPyTreeItemData() { | |
442 | bool doSave = wxPyRestoreThread(); | |
443 | Py_DECREF(m_obj); | |
444 | wxPySaveThread(doSave); | |
445 | } | |
446 | ||
447 | PyObject* GetData() { | |
448 | Py_INCREF(m_obj); | |
449 | return m_obj; | |
450 | } | |
451 | ||
452 | void SetData(PyObject* obj) { | |
453 | bool doSave = wxPyRestoreThread(); | |
454 | Py_DECREF(m_obj); | |
455 | wxPySaveThread(doSave); | |
456 | m_obj = obj; | |
457 | Py_INCREF(obj); | |
458 | } | |
459 | ||
460 | PyObject* m_obj; | |
461 | }; | |
462 | %} | |
463 | ||
464 | ||
465 | ||
466 | %name(wxTreeItemData) class wxPyTreeItemData { | |
467 | public: | |
468 | wxPyTreeItemData(PyObject* obj = NULL); | |
469 | ||
470 | PyObject* GetData(); | |
471 | void SetData(PyObject* obj); | |
472 | ||
473 | const wxTreeItemId& GetId(); | |
474 | void SetId(const wxTreeItemId& id); | |
475 | }; | |
476 | ||
477 | ||
478 | ||
479 | class wxTreeEvent : public wxNotifyEvent { | |
480 | public: | |
481 | wxTreeItemId GetItem(); | |
482 | wxTreeItemId GetOldItem(); | |
483 | wxPoint GetPoint(); | |
484 | int GetCode(); | |
485 | const wxString& GetLabel(); | |
486 | }; | |
487 | ||
488 | ||
489 | ||
490 | %{ | |
491 | class wxPyTreeCtrl : public wxTreeCtrl { | |
492 | public: | |
493 | wxPyTreeCtrl(wxWindow *parent, wxWindowID id, | |
494 | const wxPoint& pos, | |
495 | const wxSize& size, | |
496 | long style, | |
497 | const wxValidator& validator, | |
498 | char* name) : | |
499 | wxTreeCtrl(parent, id, pos, size, style, validator, name) {} | |
500 | ||
501 | ||
502 | int OnCompareItems(const wxTreeItemId& item1, | |
503 | const wxTreeItemId& item2) { | |
504 | int rval = 0; | |
505 | bool doSave = wxPyRestoreThread(); | |
506 | if (m_myInst.findCallback("OnCompareItems")) | |
507 | rval = m_myInst.callCallback(Py_BuildValue( | |
508 | "(OO)", | |
509 | wxPyConstructObject((void*)&item1, "wxTreeItemId"), | |
510 | wxPyConstructObject((void*)&item2, "wxTreeItemId"))); | |
511 | else | |
512 | rval = wxTreeCtrl::OnCompareItems(item1, item2); | |
513 | wxPySaveThread(doSave); | |
514 | return rval; | |
515 | } | |
516 | PYPRIVATE; | |
517 | }; | |
518 | ||
519 | %} | |
520 | ||
521 | // These are for the GetFirstChild/GetNextChild methods below | |
522 | %typemap(python, in) long& INOUT = long* INOUT; | |
523 | %typemap(python, argout) long& INOUT = long* INOUT; | |
524 | ||
525 | ||
526 | %name(wxTreeCtrl)class wxPyTreeCtrl : public wxControl { | |
527 | public: | |
528 | wxPyTreeCtrl(wxWindow *parent, wxWindowID id = -1, | |
529 | const wxPoint& pos = wxDefaultPosition, | |
530 | const wxSize& size = wxDefaultSize, | |
531 | long style = wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT, | |
532 | const wxValidator& validator = wxDefaultValidator, | |
533 | char* name = "wxTreeCtrl"); | |
534 | ||
535 | void _setSelf(PyObject* self, PyObject* _class); | |
536 | %pragma(python) addtomethod = "__init__:#wx._StdWindowCallbacks(self)" | |
537 | %pragma(python) addtomethod = "__init__:self._setSelf(self, wxTreeCtrl)" | |
538 | ||
539 | void AssignImageList(wxImageList* imageList); | |
540 | size_t GetCount(); | |
541 | unsigned int GetIndent(); | |
542 | void SetIndent(unsigned int indent); | |
543 | wxImageList *GetImageList(); | |
544 | wxImageList *GetStateImageList(); | |
545 | void SetImageList(wxImageList *imageList); | |
546 | void SetStateImageList(wxImageList *imageList); | |
547 | ||
548 | unsigned int GetSpacing(); | |
549 | void SetSpacing(unsigned int spacing); | |
550 | ||
551 | wxString GetItemText(const wxTreeItemId& item); | |
552 | int GetItemImage(const wxTreeItemId& item, | |
553 | wxTreeItemIcon which = wxTreeItemIcon_Normal); | |
554 | int GetItemSelectedImage(const wxTreeItemId& item); | |
555 | ||
556 | void SetItemText(const wxTreeItemId& item, const wxString& text); | |
557 | void SetItemImage(const wxTreeItemId& item, int image, | |
558 | wxTreeItemIcon which = wxTreeItemIcon_Normal); | |
559 | void SetItemSelectedImage(const wxTreeItemId& item, int image); | |
560 | void SetItemHasChildren(const wxTreeItemId& item, bool hasChildren = TRUE); | |
561 | ||
562 | %addmethods { | |
563 | // [Get|Set]ItemData substitutes. Automatically create wxPyTreeItemData | |
564 | // if needed. | |
565 | wxPyTreeItemData* GetItemData(const wxTreeItemId& item) { | |
566 | wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item); | |
567 | if (data == NULL) { | |
568 | data = new wxPyTreeItemData(); | |
569 | data->SetId(item); // set the id | |
570 | self->SetItemData(item, data); | |
571 | } | |
572 | return data; | |
573 | } | |
574 | ||
575 | void SetItemData(const wxTreeItemId& item, wxPyTreeItemData* data) { | |
576 | data->SetId(item); // set the id | |
577 | self->SetItemData(item, data); | |
578 | } | |
579 | ||
580 | // [Get|Set]PyData are short-cuts. Also made somewhat crash-proof by | |
581 | // automatically creating data classes. | |
582 | PyObject* GetPyData(const wxTreeItemId& item) { | |
583 | wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item); | |
584 | if (data == NULL) { | |
585 | data = new wxPyTreeItemData(); | |
586 | data->SetId(item); // set the id | |
587 | self->SetItemData(item, data); | |
588 | } | |
589 | return data->GetData(); | |
590 | } | |
591 | ||
592 | void SetPyData(const wxTreeItemId& item, PyObject* obj) { | |
593 | wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item); | |
594 | if (data == NULL) { | |
595 | data = new wxPyTreeItemData(obj); | |
596 | data->SetId(item); // set the id | |
597 | self->SetItemData(item, data); | |
598 | } else | |
599 | data->SetData(obj); | |
600 | } | |
601 | } | |
602 | ||
603 | ||
604 | bool IsVisible(const wxTreeItemId& item); | |
605 | bool ItemHasChildren(const wxTreeItemId& item); | |
606 | bool IsExpanded(const wxTreeItemId& item); | |
607 | bool IsSelected(const wxTreeItemId& item); | |
608 | ||
609 | wxTreeItemId GetRootItem(); | |
610 | wxTreeItemId GetSelection(); | |
611 | %name(GetItemParent) wxTreeItemId GetParent(const wxTreeItemId& item); | |
612 | //size_t GetSelections(wxArrayTreeItemIds& selection); | |
613 | %addmethods { | |
614 | PyObject* GetSelections() { | |
615 | bool doSave = wxPyRestoreThread(); | |
616 | PyObject* rval = PyList_New(0); | |
617 | wxArrayTreeItemIds array; | |
618 | size_t num, x; | |
619 | num = self->GetSelections(array); | |
620 | for (x=0; x < num; x++) { | |
621 | wxTreeItemId *tii = new wxTreeItemId(array.Item(x)); | |
622 | PyObject* item = wxPyConstructObject((void*)tii, "wxTreeItemId", TRUE); | |
623 | PyList_Append(rval, item); | |
624 | } | |
625 | wxPySaveThread(doSave); | |
626 | return rval; | |
627 | } | |
628 | } | |
629 | ||
630 | ||
631 | ||
632 | size_t GetChildrenCount(const wxTreeItemId& item, bool recursively = TRUE); | |
633 | ||
634 | wxTreeItemId GetFirstChild(const wxTreeItemId& item, long& INOUT); | |
635 | wxTreeItemId GetNextChild(const wxTreeItemId& item, long& INOUT); | |
636 | wxTreeItemId GetNextSibling(const wxTreeItemId& item); | |
637 | wxTreeItemId GetPrevSibling(const wxTreeItemId& item); | |
638 | wxTreeItemId GetFirstVisibleItem(); | |
639 | wxTreeItemId GetNextVisible(const wxTreeItemId& item); | |
640 | wxTreeItemId GetPrevVisible(const wxTreeItemId& item); | |
641 | wxTreeItemId GetLastChild(const wxTreeItemId& item); | |
642 | ||
643 | ||
644 | ||
645 | wxTreeItemId AddRoot(const wxString& text, | |
646 | int image = -1, int selectedImage = -1, | |
647 | wxPyTreeItemData *data = NULL); | |
648 | wxTreeItemId PrependItem(const wxTreeItemId& parent, | |
649 | const wxString& text, | |
650 | int image = -1, int selectedImage = -1, | |
651 | wxPyTreeItemData *data = NULL); | |
652 | wxTreeItemId InsertItem(const wxTreeItemId& parent, | |
653 | const wxTreeItemId& idPrevious, | |
654 | const wxString& text, | |
655 | int image = -1, int selectedImage = -1, | |
656 | wxPyTreeItemData *data = NULL); | |
657 | %name(InsertItemBefore) | |
658 | wxTreeItemId InsertItem(const wxTreeItemId& parent, | |
659 | size_t before, | |
660 | const wxString& text, | |
661 | int image = -1, int selectedImage = -1, | |
662 | wxTreeItemData *data = NULL); | |
663 | wxTreeItemId AppendItem(const wxTreeItemId& parent, | |
664 | const wxString& text, | |
665 | int image = -1, int selectedImage = -1, | |
666 | wxPyTreeItemData *data = NULL); | |
667 | ||
668 | void Delete(const wxTreeItemId& item); | |
669 | void DeleteChildren(const wxTreeItemId& item); | |
670 | void DeleteAllItems(); | |
671 | ||
672 | void Expand(const wxTreeItemId& item); | |
673 | void Collapse(const wxTreeItemId& item); | |
674 | void CollapseAndReset(const wxTreeItemId& item); | |
675 | void Toggle(const wxTreeItemId& item); | |
676 | ||
677 | void Unselect(); | |
678 | void UnselectAll(); | |
679 | void SelectItem(const wxTreeItemId& item); | |
680 | void EnsureVisible(const wxTreeItemId& item); | |
681 | void ScrollTo(const wxTreeItemId& item); | |
682 | #ifdef __WXMSW__ | |
683 | wxTextCtrl* EditLabel(const wxTreeItemId& item); | |
684 | wxTextCtrl* GetEditControl(); | |
685 | void EndEditLabel(const wxTreeItemId& item, int discardChanges = FALSE); | |
686 | #else | |
687 | void EditLabel(const wxTreeItemId& item); | |
688 | #endif | |
689 | ||
690 | void SortChildren(const wxTreeItemId& item); | |
691 | ||
692 | void SetItemBold(const wxTreeItemId& item, int bold = TRUE); | |
693 | bool IsBold(const wxTreeItemId& item) const; | |
694 | wxTreeItemId HitTest(const wxPoint& point, int& OUTPUT); | |
695 | ||
696 | ||
697 | ||
698 | void SetItemTextColour(const wxTreeItemId& item, const wxColour& col); | |
699 | void SetItemBackgroundColour(const wxTreeItemId& item, const wxColour& col); | |
700 | void SetItemFont(const wxTreeItemId& item, const wxFont& font); | |
701 | ||
702 | #ifdef __WXMSW__ | |
703 | void SetItemDropHighlight(const wxTreeItemId& item, int highlight = TRUE); | |
704 | ||
705 | //bool GetBoundingRect(const wxTreeItemId& item, wxRect& rect, int textOnly = FALSE) | |
706 | %addmethods { | |
707 | PyObject* GetBoundingRect(const wxTreeItemId& item, int textOnly = FALSE) { | |
708 | wxRect rect; | |
709 | if (self->GetBoundingRect(item, rect, textOnly)) { | |
710 | bool doSave = wxPyRestoreThread(); | |
711 | wxRect* r = new wxRect(rect); | |
712 | PyObject* val = wxPyConstructObject((void*)r, "wxRect"); | |
713 | wxPySaveThread(doSave); | |
714 | return val; | |
715 | } | |
716 | else { | |
717 | Py_INCREF(Py_None); | |
718 | return Py_None; | |
719 | } | |
720 | } | |
721 | } | |
722 | #endif | |
723 | ||
724 | %pragma(python) addtoclass = " | |
725 | # Redefine some methods that SWIG gets a bit confused on... | |
726 | def GetFirstChild(self, *_args, **_kwargs): | |
727 | val1,val2 = apply(controls2c.wxTreeCtrl_GetFirstChild,(self,) + _args, _kwargs) | |
728 | val1 = wxTreeItemIdPtr(val1) | |
729 | val1.thisown = 1 | |
730 | return (val1,val2) | |
731 | def GetNextChild(self, *_args, **_kwargs): | |
732 | val1,val2 = apply(controls2c.wxTreeCtrl_GetNextChild,(self,) + _args, _kwargs) | |
733 | val1 = wxTreeItemIdPtr(val1) | |
734 | val1.thisown = 1 | |
735 | return (val1,val2) | |
736 | def HitTest(self, *_args, **_kwargs): | |
737 | val1, val2 = apply(controls2c.wxTreeCtrl_HitTest,(self,) + _args, _kwargs) | |
738 | val1 = wxTreeItemIdPtr(val1) | |
739 | val1.thisown = 1 | |
740 | return (val1,val2) | |
741 | " | |
742 | }; | |
743 | ||
744 | ||
745 | //---------------------------------------------------------------------- | |
746 | ||
747 | #ifdef SKIPTHIS | |
748 | #ifdef __WXMSW__ | |
749 | ||
750 | ||
751 | enum { | |
752 | /* tab control event types */ | |
753 | wxEVT_COMMAND_TAB_SEL_CHANGED, | |
754 | wxEVT_COMMAND_TAB_SEL_CHANGING, | |
755 | }; | |
756 | ||
757 | ||
758 | class wxTabEvent : public wxCommandEvent { | |
759 | public: | |
760 | }; | |
761 | ||
762 | ||
763 | ||
764 | class wxTabCtrl : public wxControl { | |
765 | public: | |
766 | wxTabCtrl(wxWindow* parent, wxWindowID id, | |
767 | const wxPoint& pos = wxDefaultPosition, | |
768 | const wxSize& size = wxDefaultSize, | |
769 | long style = 0, | |
770 | char* name = "tabCtrl"); | |
771 | ||
772 | %pragma(python) addtomethod = "__init__:#wx._StdWindowCallbacks(self)" | |
773 | ||
774 | bool DeleteAllItems(); | |
775 | bool DeleteItem(int item); | |
776 | wxImageList* GetImageList(); | |
777 | int GetItemCount(); | |
778 | // TODO: void* GetItemData(); | |
779 | int GetItemImage(int item); | |
780 | ||
781 | %addmethods { | |
782 | %new wxRect* GetItemRect(int item) { | |
783 | wxRect* rect = new wxRect; | |
784 | self->GetItemRect(item, *rect); | |
785 | return rect; | |
786 | } | |
787 | } | |
788 | ||
789 | wxString GetItemText(int item); | |
790 | bool GetRowCount(); | |
791 | int GetSelection(); | |
792 | int HitTest(const wxPoint& pt, long& OUTPUT); | |
793 | void InsertItem(int item, const wxString& text, | |
794 | int imageId = -1, void* clientData = NULL); | |
795 | // TODO: bool SetItemData(int item, void* data); | |
796 | bool SetItemImage(int item, int image); | |
797 | void SetImageList(wxImageList* imageList); | |
798 | void SetItemSize(const wxSize& size); | |
799 | bool SetItemText(int item, const wxString& text); | |
800 | void SetPadding(const wxSize& padding); | |
801 | int SetSelection(int item); | |
802 | ||
803 | }; | |
804 | ||
805 | #endif | |
806 | #endif | |
807 | ||
808 | //---------------------------------------------------------------------- | |
809 | ||
810 |