1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: More control (widget) classes for wxPython
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
20 #include <wx/listctrl.h>
21 #include <wx/treectrl.h>
24 //----------------------------------------------------------------------
27 %include my_typemaps.i
29 // Import some definitions of other classes, etc.
37 %pragma(python) code = "import wx"
39 //----------------------------------------------------------------------
42 extern wxValidator wxPyDefaultValidator;
45 //----------------------------------------------------------------------
54 wxLIST_STATE_DONTCARE,
55 wxLIST_STATE_DROPHILITED,
57 wxLIST_STATE_SELECTED,
61 wxLIST_HITTEST_NOWHERE,
62 wxLIST_HITTEST_ONITEMICON,
63 wxLIST_HITTEST_ONITEMLABEL,
64 wxLIST_HITTEST_ONITEMRIGHT,
65 wxLIST_HITTEST_ONITEMSTATEICON,
66 wxLIST_HITTEST_TOLEFT,
67 wxLIST_HITTEST_TORIGHT,
68 wxLIST_HITTEST_ONITEM,
77 wxLIST_ALIGN_SNAP_TO_GRID,
83 wxLIST_AUTOSIZE_USEHEADER,
96 long m_mask; // Indicates what fields are valid
97 long m_itemId; // The zero-based item position
98 int m_col; // Zero-based column, if in report mode
99 long m_state; // The state of the item
100 long m_stateMask; // Which flags of m_state are valid (uses same flags)
101 wxString m_text; // The label/header text
102 int m_image; // The zero-based index into an image list
103 long m_data; // App-defined data
104 // wxColour *m_colour; // only wxGLC, not supported by Windows ;->
107 int m_format; // left, right, centre
108 int m_width; // width of column
114 class wxListEvent: public wxCommandEvent {
128 class wxListCtrl : public wxControl {
130 wxListCtrl(wxWindow* parent, wxWindowID id,
131 const wxPoint& pos = wxPyDefaultPosition,
132 const wxSize& size = wxPyDefaultSize,
133 long style = wxLC_ICON,
134 const wxValidator& validator = wxPyDefaultValidator,
135 char* name = "listCtrl");
137 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
139 bool Arrange(int flag = wxLIST_ALIGN_DEFAULT);
140 bool DeleteItem(long item);
141 bool DeleteAllItems();
142 bool DeleteColumn(int col);
143 bool DeleteAllColumns(void);
146 wxTextCtrl* EditLabel(long item);
147 bool EndEditLabel(bool cancel);
148 wxTextCtrl* GetEditControl();
150 void EditLabel(long item);
152 bool EnsureVisible(long item);
153 long FindItem(long start, const wxString& str, bool partial = FALSE);
154 %name(FindItemData)long FindItem(long start, long data);
155 %name(FindItemAtPos)long FindItem(long start, const wxPoint& pt,
157 bool GetColumn(int col, wxListItem& item);
158 int GetColumnWidth(int col);
159 int GetCountPerPage();
160 wxImageList* GetImageList(int which);
161 long GetItemData(long item);
164 %new wxListItem* GetItem(long itemId, int col=0) {
165 wxListItem* info = new wxListItem;
166 info->m_itemId = itemId;
168 self->GetItem(*info);
171 %new wxPoint* GetItemPosition(long item) {
172 wxPoint* pos = new wxPoint;
173 self->GetItemPosition(item, *pos);
176 %new wxRect* GetItemRect(long item, int code = wxLIST_RECT_BOUNDS) {
177 wxRect* rect= new wxRect;
178 self->GetItemRect(item, *rect, code);
183 int GetItemState(long item, long stateMask);
185 int GetItemSpacing(bool isSmall);
186 wxString GetItemText(long item);
187 long GetNextItem(long item,
188 int geometry = wxLIST_NEXT_ALL,
189 int state = wxLIST_STATE_DONTCARE);
190 int GetSelectedItemCount();
192 wxColour GetTextColour();
193 void SetTextColour(const wxColour& col);
196 long HitTest(const wxPoint& point, int& OUTPUT);
197 %name(InsertColumnWith)long InsertColumn(long col, wxListItem& info);
198 long InsertColumn(long col, const wxString& heading,
199 int format = wxLIST_FORMAT_LEFT,
202 long InsertItem(wxListItem& info);
203 %name(InsertStringItem) long InsertItem(long index, const wxString& label);
204 %name(InsertImageItem) long InsertItem(long index, int imageIndex);
205 %name(InsertImageStringItem)long InsertItem(long index, const wxString& label,
208 bool ScrollList(int dx, int dy);
209 void SetBackgroundColour(const wxColour& col);
210 bool SetColumn(int col, wxListItem& item);
211 bool SetColumnWidth(int col, int width);
212 void SetImageList(wxImageList* imageList, int which);
214 bool SetItem(wxListItem& info);
215 %name(SetStringItem)long SetItem(long index, int col, const wxString& label,
218 bool SetItemData(long item, long data);
219 bool SetItemImage(long item, int image, int selImage);
220 bool SetItemPosition(long item, const wxPoint& pos);
221 bool SetItemState(long item, long state, long stateMask);
222 void SetItemText(long item, const wxString& text);
223 void SetSingleStyle(long style, bool add = TRUE);
224 void SetWindowStyleFlag(long style);
225 // TODO: bool SortItems(wxListCtrlCompare fn, long data);
230 //----------------------------------------------------------------------
244 class wxPyTreeItemData : public wxTreeItemData {
246 wxPyTreeItemData(PyObject* obj = NULL) {
253 ~wxPyTreeItemData() {
254 bool doSave = wxPyRestoreThread();
256 wxPySaveThread(doSave);
259 PyObject* GetData() {
264 void SetData(PyObject* obj) {
276 %name(wxTreeItemData) class wxPyTreeItemData {
278 wxPyTreeItemData(PyObject* obj = NULL);
281 void SetData(PyObject* obj);
283 const wxTreeItemId& GetId();
284 void SetId(const wxTreeItemId& id);
289 class wxTreeEvent : public wxNotifyEvent {
291 wxTreeItemId GetItem();
292 wxTreeItemId GetOldItem();
295 const wxString& GetLabel();
299 // These are for the GetFirstChild/GetNextChild methods below
300 %typemap(python, in) long& INOUT = long* INOUT;
301 %typemap(python, argout) long& INOUT = long* INOUT;
304 class wxTreeCtrl : public wxControl {
306 wxTreeCtrl(wxWindow *parent, wxWindowID id = -1,
307 const wxPoint& pos = wxPyDefaultPosition,
308 const wxSize& size = wxPyDefaultSize,
309 long style = wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT,
310 const wxValidator& validator = wxPyDefaultValidator,
311 char* name = "wxTreeCtrl");
313 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
316 unsigned int GetIndent();
317 void SetIndent(unsigned int indent);
318 wxImageList *GetImageList();
319 wxImageList *GetStateImageList();
320 void SetImageList(wxImageList *imageList);
321 void SetStateImageList(wxImageList *imageList);
323 unsigned int GetSpacing();
324 void SetSpacing(unsigned int spacing);
326 wxString GetItemText(const wxTreeItemId& item);
327 int GetItemImage(const wxTreeItemId& item);
328 int GetItemSelectedImage(const wxTreeItemId& item);
330 void SetItemText(const wxTreeItemId& item, const wxString& text);
331 void SetItemImage(const wxTreeItemId& item, int image);
332 void SetItemSelectedImage(const wxTreeItemId& item, int image);
333 void SetItemHasChildren(const wxTreeItemId& item, bool hasChildren = TRUE);
336 // [Get|Set]ItemData substitutes. Automatically create wxPyTreeItemData
338 wxPyTreeItemData* GetItemData(const wxTreeItemId& item) {
339 wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
341 data = new wxPyTreeItemData();
342 self->SetItemData(item, data);
347 void SetItemData(const wxTreeItemId& item, wxPyTreeItemData* data) {
348 self->SetItemData(item, data);
351 // [Get|Set]PyData are short-cuts. Also made somewhat crash-proof by
352 // automatically creating data classes.
353 PyObject* GetPyData(const wxTreeItemId& item) {
354 wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
356 data = new wxPyTreeItemData();
357 self->SetItemData(item, data);
359 return data->GetData();
362 void SetPyData(const wxTreeItemId& item, PyObject* obj) {
363 wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
365 data = new wxPyTreeItemData(obj);
366 self->SetItemData(item, data);
373 bool IsVisible(const wxTreeItemId& item);
374 bool ItemHasChildren(const wxTreeItemId& item);
375 bool IsExpanded(const wxTreeItemId& item);
376 bool IsSelected(const wxTreeItemId& item);
378 wxTreeItemId GetRootItem();
379 wxTreeItemId GetSelection();
380 wxTreeItemId GetParent(const wxTreeItemId& item);
381 //size_t GetSelections(wxArrayTreeItemIds& selection);
383 PyObject* GetSelections() {
384 PyObject* rval = PyList_New(0);
385 wxArrayTreeItemIds array;
387 num = self->GetSelections(array);
388 for (x=0; x < num; x++) {
389 PyObject* item = wxPyConstructObject((void*)&array.Item(x),
391 PyList_Append(rval, item);
399 size_t GetChildrenCount(const wxTreeItemId& item, bool recursively = TRUE);
401 wxTreeItemId GetFirstChild(const wxTreeItemId& item, long& INOUT);
402 wxTreeItemId GetNextChild(const wxTreeItemId& item, long& INOUT);
403 wxTreeItemId GetNextSibling(const wxTreeItemId& item);
404 wxTreeItemId GetPrevSibling(const wxTreeItemId& item);
405 wxTreeItemId GetFirstVisibleItem();
406 wxTreeItemId GetNextVisible(const wxTreeItemId& item);
407 wxTreeItemId GetPrevVisible(const wxTreeItemId& item);
408 wxTreeItemId GetLastChild(const wxTreeItemId& item);
412 wxTreeItemId AddRoot(const wxString& text,
413 int image = -1, int selectedImage = -1,
414 wxPyTreeItemData *data = NULL);
415 wxTreeItemId PrependItem(const wxTreeItemId& parent,
416 const wxString& text,
417 int image = -1, int selectedImage = -1,
418 wxPyTreeItemData *data = NULL);
419 wxTreeItemId InsertItem(const wxTreeItemId& parent,
420 const wxTreeItemId& idPrevious,
421 const wxString& text,
422 int image = -1, int selectedImage = -1,
423 wxPyTreeItemData *data = NULL);
424 wxTreeItemId AppendItem(const wxTreeItemId& parent,
425 const wxString& text,
426 int image = -1, int selectedImage = -1,
427 wxPyTreeItemData *data = NULL);
429 void Delete(const wxTreeItemId& item);
430 void DeleteChildren(const wxTreeItemId& item);
431 void DeleteAllItems();
433 void Expand(const wxTreeItemId& item);
434 void Collapse(const wxTreeItemId& item);
435 void CollapseAndReset(const wxTreeItemId& item);
436 void Toggle(const wxTreeItemId& item);
440 void SelectItem(const wxTreeItemId& item);
441 void EnsureVisible(const wxTreeItemId& item);
442 void ScrollTo(const wxTreeItemId& item);
444 wxTextCtrl* EditLabel(const wxTreeItemId& item);
445 wxTextCtrl* GetEditControl();
446 void EndEditLabel(const wxTreeItemId& item, int discardChanges = FALSE);
448 void EditLabel(const wxTreeItemId& item);
451 void SortChildren(const wxTreeItemId& item);
453 void SetItemBold(const wxTreeItemId& item, int bold = TRUE);
454 bool IsBold(const wxTreeItemId& item) const;
455 wxTreeItemId HitTest(const wxPoint& point);
458 void SetItemDropHighlight(const wxTreeItemId& item, int highlight = TRUE);
460 //bool GetBoundingRect(const wxTreeItemId& item, wxRect& rect, int textOnly = FALSE)
462 PyObject* GetBoundingRect(const wxTreeItemId& item, int textOnly = FALSE) {
464 if (self->GetBoundingRect(item, rect, textOnly))
465 return wxPyConstructObject((void*)&rect, "wxRect");
474 %pragma(python) addtoclass = "
475 # Redefine a couple methods that SWIG gets a bit confused on...
476 def GetFirstChild(self,arg0,arg1):
477 val1, val2 = controls2c.wxTreeCtrl_GetFirstChild(self.this,arg0.this,arg1)
478 val1 = wxTreeItemIdPtr(val1)
481 def GetNextChild(self,arg0,arg1):
482 val1, val2 = controls2c.wxTreeCtrl_GetNextChild(self.this,arg0.this,arg1)
483 val1 = wxTreeItemIdPtr(val1)
490 //----------------------------------------------------------------------
494 class wxTabEvent : public wxCommandEvent {
500 class wxTabCtrl : public wxControl {
502 wxTabCtrl(wxWindow* parent, wxWindowID id,
503 const wxPoint& pos = wxPyDefaultPosition,
504 const wxSize& size = wxPyDefaultSize,
506 char* name = "tabCtrl");
508 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
510 bool DeleteAllItems();
511 bool DeleteItem(int item);
512 wxImageList* GetImageList();
514 // TODO: void* GetItemData();
515 int GetItemImage(int item);
518 %new wxRect* GetItemRect(int item) {
519 wxRect* rect = new wxRect;
520 self->GetItemRect(item, *rect);
525 wxString GetItemText(int item);
528 int HitTest(const wxPoint& pt, long& OUTPUT);
529 void InsertItem(int item, const wxString& text,
530 int imageId = -1, void* clientData = NULL);
531 // TODO: bool SetItemData(int item, void* data);
532 bool SetItemImage(int item, int image);
533 void SetImageList(wxImageList* imageList);
534 void SetItemSize(const wxSize& size);
535 bool SetItemText(int item, const wxString& text);
536 void SetPadding(const wxSize& padding);
537 int SetSelection(int item);
544 //----------------------------------------------------------------------