1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: More control (widget) classes for wxPython
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
17 #include <wx/listctrl.h>
18 #include <wx/treectrl.h>
21 //----------------------------------------------------------------------
24 %include my_typemaps.i
26 // Import some definitions of other classes, etc.
34 %pragma(python) code = "import wx"
36 //----------------------------------------------------------------------
39 extern wxValidator wxPyDefaultValidator;
42 //----------------------------------------------------------------------
50 wxLIST_STATE_DONTCARE,
51 wxLIST_STATE_DROPHILITED,
53 wxLIST_STATE_SELECTED,
57 wxLIST_HITTEST_NOWHERE,
58 wxLIST_HITTEST_ONITEMICON,
59 wxLIST_HITTEST_ONITEMLABEL,
60 wxLIST_HITTEST_ONITEMRIGHT,
61 wxLIST_HITTEST_ONITEMSTATEICON,
62 wxLIST_HITTEST_TOLEFT,
63 wxLIST_HITTEST_TORIGHT,
64 wxLIST_HITTEST_ONITEM,
73 wxLIST_ALIGN_SNAP_TO_GRID,
79 wxLIST_AUTOSIZE_USEHEADER,
92 long m_mask; // Indicates what fields are valid
93 long m_itemId; // The zero-based item position
94 int m_col; // Zero-based column, if in report mode
95 long m_state; // The state of the item
96 long m_stateMask; // Which flags of m_state are valid (uses same flags)
97 wxString m_text; // The label/header text
98 int m_image; // The zero-based index into an image list
99 long m_data; // App-defined data
100 // wxColour *m_colour; // only wxGLC, not supported by Windows ;->
103 int m_format; // left, right, centre
104 int m_width; // width of column
110 class wxListEvent: public wxCommandEvent {
124 class wxListCtrl : public wxControl {
126 wxListCtrl(wxWindow* parent, wxWindowID id,
127 const wxPoint& pos = wxPyDefaultPosition,
128 const wxSize& size = wxPyDefaultSize,
129 long style = wxLC_ICON,
130 const wxValidator& validator = wxPyDefaultValidator,
131 char* name = "listCtrl");
133 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
135 bool Arrange(int flag = wxLIST_ALIGN_DEFAULT);
136 bool DeleteItem(long item);
137 bool DeleteAllItems();
138 bool DeleteColumn(int col);
139 bool DeleteAllColumns(void);
142 wxTextCtrl* EditLabel(long item);
143 bool EndEditLabel(bool cancel);
144 wxTextCtrl* GetEditControl();
146 bool EnsureVisible(long item);
147 long FindItem(long start, const wxString& str, bool partial = FALSE);
148 %name(FindItemData)long FindItem(long start, long data);
149 %name(FindItemAtPos)long FindItem(long start, const wxPoint& pt,
151 bool GetColumn(int col, wxListItem& item);
152 int GetColumnWidth(int col);
153 int GetCountPerPage();
154 wxImageList* GetImageList(int which);
155 long GetItemData(long item);
158 %new wxListItem* GetItem(long itemId) {
159 wxListItem* info = new wxListItem;
160 info->m_itemId = itemId;
161 self->GetItem(*info);
164 %new wxPoint* GetItemPosition(long item) {
165 wxPoint* pos = new wxPoint;
166 self->GetItemPosition(item, *pos);
169 %new wxRect* GetItemRect(long item, int code = wxLIST_RECT_BOUNDS) {
170 wxRect* rect= new wxRect;
171 self->GetItemRect(item, *rect, code);
176 int GetItemState(long item, long stateMask);
178 int GetItemSpacing(bool isSmall);
179 wxString GetItemText(long item);
180 long GetNextItem(long item,
181 int geometry = wxLIST_NEXT_ALL,
182 int state = wxLIST_STATE_DONTCARE);
183 int GetSelectedItemCount();
185 wxColour GetTextColour();
186 void SetTextColour(const wxColour& col);
189 long HitTest(const wxPoint& point, int& OUTPUT);
190 %name(InsertColumnWith)long InsertColumn(long col, wxListItem& info);
191 long InsertColumn(long col, const wxString& heading,
192 int format = wxLIST_FORMAT_LEFT,
195 long InsertItem(wxListItem& info);
196 %name(InsertStringItem) long InsertItem(long index, const wxString& label);
197 %name(InsertImageItem) long InsertItem(long index, int imageIndex);
198 %name(InsertImageStringItem)long InsertItem(long index, const wxString& label,
201 bool ScrollList(int dx, int dy);
202 void SetBackgroundColour(const wxColour& col);
203 bool SetColumn(int col, wxListItem& item);
204 bool SetColumnWidth(int col, int width);
205 void SetImageList(wxImageList* imageList, int which);
207 bool SetItem(wxListItem& info);
208 %name(SetStringItem)long SetItem(long index, int col, const wxString& label,
211 bool SetItemData(long item, long data);
212 bool SetItemImage(long item, int image, int selImage);
213 bool SetItemPosition(long item, const wxPoint& pos);
214 bool SetItemState(long item, long state, long stateMask);
215 void SetItemText(long item, const wxString& text);
216 void SetSingleStyle(long style, bool add = TRUE);
217 void SetWindowStyleFlag(long style);
218 // TODO: bool SortItems(wxListCtrlCompare fn, long data);
223 //----------------------------------------------------------------------
230 bool IsOk() const { return m_itemId != 0; }
237 class wxPyTreeItemData : public wxTreeItemData {
239 wxPyTreeItemData(PyObject* obj = NULL) {
246 ~wxPyTreeItemData() {
250 PyObject* GetData() {
255 void SetData(PyObject* obj) {
267 %name(wxTreeItemData) class wxPyTreeItemData {
269 wxPyTreeItemData(PyObject* obj = NULL);
272 void SetData(PyObject* obj);
274 const wxTreeItemId& GetId();
275 void SetId(const wxTreeItemId& id);
280 class wxTreeEvent : public wxCommandEvent {
282 wxTreeItemId GetItem();
283 wxTreeItemId GetOldItem();
290 // These are for the GetFirstChild/GetNextChild methods below
291 %typemap(python, in) long& INOUT = long* INOUT;
292 %typemap(python, argout) long& INOUT = long* INOUT;
295 class wxTreeCtrl : public wxControl {
297 wxTreeCtrl(wxWindow *parent, wxWindowID id = -1,
298 const wxPoint& pos = wxPyDefaultPosition,
299 const wxSize& size = wxPyDefaultSize,
300 long style = wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT,
301 const wxValidator& validator = wxPyDefaultValidator,
302 char* name = "wxTreeCtrl");
304 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
307 unsigned int GetIndent();
308 void SetIndent(unsigned int indent);
309 wxImageList *GetImageList();
310 wxImageList *GetStateImageList();
311 void SetImageList(wxImageList *imageList);
312 void SetStateImageList(wxImageList *imageList);
314 wxString GetItemText(const wxTreeItemId& item);
315 int GetItemImage(const wxTreeItemId& item);
316 int GetItemSelectedImage(const wxTreeItemId& item);
318 void SetItemText(const wxTreeItemId& item, const wxString& text);
319 void SetItemImage(const wxTreeItemId& item, int image);
320 void SetItemSelectedImage(const wxTreeItemId& item, int image);
321 void SetItemHasChildren(const wxTreeItemId& item, bool hasChildren = TRUE);
324 // [Get|Set]ItemData substitutes. Automatically create wxPyTreeItemData
326 wxPyTreeItemData* GetItemData(const wxTreeItemId& item) {
327 wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
329 data = new wxPyTreeItemData();
330 self->SetItemData(item, data);
335 void SetItemData(const wxTreeItemId& item, wxPyTreeItemData* data) {
336 self->SetItemData(item, data);
339 // [Get|Set]PyData are short-cuts. Also made somewhat crash-proof by
340 // automatically creating data classes.
341 PyObject* GetPyData(const wxTreeItemId& item) {
342 wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
344 data = new wxPyTreeItemData();
345 self->SetItemData(item, data);
347 return data->GetData();
350 void SetPyData(const wxTreeItemId& item, PyObject* obj) {
351 wxPyTreeItemData* data = (wxPyTreeItemData*)self->GetItemData(item);
353 data = new wxPyTreeItemData(obj);
354 self->SetItemData(item, data);
361 bool IsVisible(const wxTreeItemId& item);
362 bool ItemHasChildren(const wxTreeItemId& item);
363 bool IsExpanded(const wxTreeItemId& item);
364 bool IsSelected(const wxTreeItemId& item);
366 wxTreeItemId GetRootItem();
367 wxTreeItemId GetSelection();
368 wxTreeItemId GetParent(const wxTreeItemId& item);
370 wxTreeItemId GetFirstChild(const wxTreeItemId& item, long& INOUT);
371 wxTreeItemId GetNextChild(const wxTreeItemId& item, long& INOUT);
372 wxTreeItemId GetNextSibling(const wxTreeItemId& item);
373 wxTreeItemId GetPrevSibling(const wxTreeItemId& item);
374 wxTreeItemId GetFirstVisibleItem();
375 wxTreeItemId GetNextVisible(const wxTreeItemId& item);
376 wxTreeItemId GetPrevVisible(const wxTreeItemId& item);
379 wxTreeItemId AddRoot(const wxString& text,
380 int image = -1, int selectedImage = -1,
381 wxPyTreeItemData *data = NULL);
382 wxTreeItemId PrependItem(const wxTreeItemId& parent,
383 const wxString& text,
384 int image = -1, int selectedImage = -1,
385 wxPyTreeItemData *data = NULL);
386 wxTreeItemId InsertItem(const wxTreeItemId& parent,
387 const wxTreeItemId& idPrevious,
388 const wxString& text,
389 int image = -1, int selectedImage = -1,
390 wxPyTreeItemData *data = NULL);
391 wxTreeItemId AppendItem(const wxTreeItemId& parent,
392 const wxString& text,
393 int image = -1, int selectedImage = -1,
394 wxPyTreeItemData *data = NULL);
396 void Delete(const wxTreeItemId& item);
397 void DeleteChildren(const wxTreeItemId& item);
398 void DeleteAllItems();
400 void Expand(const wxTreeItemId& item);
401 void Collapse(const wxTreeItemId& item);
402 void CollapseAndReset(const wxTreeItemId& item);
403 void Toggle(const wxTreeItemId& item);
406 void SelectItem(const wxTreeItemId& item);
407 void EnsureVisible(const wxTreeItemId& item);
408 void ScrollTo(const wxTreeItemId& item);
410 wxTextCtrl* EditLabel(const wxTreeItemId& item);
411 // **** figure out how to do this
412 // wxClassInfo* textCtrlClass = CLASSINFO(wxTextCtrl));
413 wxTextCtrl* GetEditControl();
414 void EndEditLabel(const wxTreeItemId& item, bool discardChanges = FALSE);
416 // void SortChildren(const wxTreeItemId& item);
418 // wxTreeItemCmpFunc *cmpFunction = NULL);
420 void SetItemBold(const wxTreeItemId& item, bool bold = TRUE);
421 bool IsBold(const wxTreeItemId& item) const;
422 wxTreeItemId HitTest(const wxPoint& point);
426 //----------------------------------------------------------------------
430 class wxTabEvent : public wxCommandEvent {
436 class wxTabCtrl : public wxControl {
438 wxTabCtrl(wxWindow* parent, wxWindowID id,
439 const wxPoint& pos = wxPyDefaultPosition,
440 const wxSize& size = wxPyDefaultSize,
442 char* name = "tabCtrl");
444 %pragma(python) addtomethod = "__init__:wx._StdWindowCallbacks(self)"
446 bool DeleteAllItems();
447 bool DeleteItem(int item);
448 wxImageList* GetImageList();
450 // TODO: void* GetItemData();
451 int GetItemImage(int item);
454 %new wxRect* GetItemRect(int item) {
455 wxRect* rect = new wxRect;
456 self->GetItemRect(item, *rect);
461 wxString GetItemText(int item);
464 int HitTest(const wxPoint& pt, long& OUTPUT);
465 void InsertItem(int item, const wxString& text,
466 int imageId = -1, void* clientData = NULL);
467 // TODO: bool SetItemData(int item, void* data);
468 bool SetItemImage(int item, int image);
469 void SetImageList(wxImageList* imageList);
470 void SetItemSize(const wxSize& size);
471 bool SetItemText(int item, const wxString& text);
472 void SetPadding(const wxSize& padding);
473 int SetSelection(int item);
480 //----------------------------------------------------------------------
483 /////////////////////////////////////////////////////////////////////////////
486 // Revision 1.17 1999/04/30 03:29:18 RD
487 // wxPython 2.0b9, first phase (win32)
488 // Added gobs of stuff, see wxPython/README.txt for details
490 // Revision 1.16 1999/02/25 07:08:32 RD
492 // wxPython version 2.0b5
494 // Revision 1.15 1999/02/20 09:02:56 RD
495 // Added wxWindow_FromHWND(hWnd) for wxMSW to construct a wxWindow from a
496 // window handle. If you can get the window handle into the python code,
497 // it should just work... More news on this later.
499 // Added wxImageList, wxToolTip.
501 // Re-enabled wxConfig.DeleteAll() since it is reportedly fixed for the
502 // wxRegConfig class.
504 // As usual, some bug fixes, tweaks, etc.
506 // Revision 1.14 1999/01/30 07:30:10 RD
508 // Added wxSashWindow, wxSashEvent, wxLayoutAlgorithm, etc.
510 // Various cleanup, tweaks, minor additions, etc. to maintain
511 // compatibility with the current wxWindows.
513 // Revision 1.13 1998/12/17 14:07:34 RR
515 // Removed minor differences between wxMSW and wxGTK
517 // Revision 1.12 1998/12/16 22:10:52 RD
519 // Tweaks needed to be able to build wxPython with wxGTK.
521 // Revision 1.11 1998/12/15 20:41:16 RD
522 // Changed the import semantics from "from wxPython import *" to "from
523 // wxPython.wx import *" This is for people who are worried about
524 // namespace pollution, they can use "from wxPython import wx" and then
525 // prefix all the wxPython identifiers with "wx."
527 // Added wxTaskbarIcon for wxMSW.
529 // Made the events work for wxGrid.
533 // Added wxMiniFrame for wxGTK, (untested.)
535 // Changed many of the args and return values that were pointers to gdi
536 // objects to references to reflect changes in the wxWindows API.
538 // Other assorted fixes and additions.
540 // Revision 1.10 1998/11/25 08:45:23 RD
542 // Added wxPalette, wxRegion, wxRegionIterator, wxTaskbarIcon
543 // Added events for wxGrid
544 // Other various fixes and additions
546 // Revision 1.9 1998/11/16 00:00:54 RD
547 // Generic treectrl for wxPython/GTK compiles...
549 // Revision 1.8 1998/11/11 04:40:20 RD
550 // wxTreeCtrl now works (sort of) for wxPython-GTK. This is the new
551 // TreeCtrl in src/gtk/treectrl.cpp not the old generic one.
553 // Revision 1.7 1998/11/11 03:12:25 RD
555 // Additions for wxTreeCtrl
557 // Revision 1.6 1998/10/20 06:43:55 RD
558 // New wxTreeCtrl wrappers (untested)
559 // some changes in helpers
562 // Revision 1.5 1998/10/07 07:34:33 RD
563 // Version 0.4.1 for wxGTK
565 // Revision 1.4 1998/10/02 06:40:36 RD
567 // Version 0.4 of wxPython for MSW.
569 // Revision 1.3 1998/08/18 19:48:15 RD
570 // more wxGTK compatibility things.
572 // It builds now but there are serious runtime problems...
574 // Revision 1.2 1998/08/15 07:36:30 RD
575 // - Moved the header in the .i files out of the code that gets put into
576 // the .cpp files. It caused CVS conflicts because of the RCS ID being
577 // different each time.
579 // - A few minor fixes.
581 // Revision 1.1 1998/08/09 08:25:49 RD