1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface file for wxListCtrl and related classes
7 // Created: 10-June-1998
9 // Copyright: (c) 2002 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
19 #include <wx/listctrl.h>
21 const wxChar* wxListCtrlNameStr = _T("wxListCtrl");
22 DECLARE_DEF_STRING(ListCtrlNameStr);
25 //---------------------------------------------------------------------------
56 // Mask flags to tell app/GUI what fields of wxListItem are valid
65 // State flags for indicating the state of an item
66 wxLIST_STATE_DONTCARE,
67 wxLIST_STATE_DROPHILITED,
69 wxLIST_STATE_SELECTED,
71 wxLIST_STATE_DISABLED,
72 wxLIST_STATE_FILTERED,
77 // Hit test flags, used in HitTest
80 wxLIST_HITTEST_NOWHERE,
81 wxLIST_HITTEST_ONITEMICON,
82 wxLIST_HITTEST_ONITEMLABEL,
83 wxLIST_HITTEST_ONITEMRIGHT,
84 wxLIST_HITTEST_ONITEMSTATEICON,
85 wxLIST_HITTEST_TOLEFT,
86 wxLIST_HITTEST_TORIGHT,
87 wxLIST_HITTEST_ONITEM,
91 // Flags for GetNextItem (MSW only except wxLIST_NEXT_ALL)
94 wxLIST_NEXT_ABOVE, // Searches for an item above the specified item
95 wxLIST_NEXT_ALL, // Searches for subsequent item by index
96 wxLIST_NEXT_BELOW, // Searches for an item below the specified item
97 wxLIST_NEXT_LEFT, // Searches for an item to the left of the specified item
98 wxLIST_NEXT_RIGHT // Searches for an item to the right of the specified item
101 // Alignment flags for Arrange (MSW only except wxLIST_ALIGN_LEFT)
104 wxLIST_ALIGN_DEFAULT,
107 wxLIST_ALIGN_SNAP_TO_GRID
110 // Column format (MSW only except wxLIST_FORMAT_LEFT)
111 enum wxListColumnFormat
115 wxLIST_FORMAT_CENTRE,
116 wxLIST_FORMAT_CENTER = wxLIST_FORMAT_CENTRE
119 // Autosize values for SetColumnWidth
122 wxLIST_AUTOSIZE = -1,
123 wxLIST_AUTOSIZE_USEHEADER = -2 // partly supported by generic version
126 // Flag values for GetItemRect
134 // Flag values for FindItem (MSW only)
145 //---------------------------------------------------------------------------
148 // wxListItemAttr: a structure containing the visual attributes of an item
154 wxListItemAttr(const wxColour& colText = wxNullColour,
155 const wxColour& colBack = wxNullColour,
156 const wxFont& font = wxNullFont);
160 void SetTextColour(const wxColour& colText);
161 void SetBackgroundColour(const wxColour& colBack);
162 void SetFont(const wxFont& font);
165 bool HasTextColour();
166 bool HasBackgroundColour();
169 wxColour GetTextColour();
170 wxColour GetBackgroundColour();
173 %extend { void Destroy() { delete self; } }
179 //---------------------------------------------------------------------------
182 // wxListItem: the item or column info, used to exchange data with wxListCtrl
183 class wxListItem : public wxObject {
190 void ClearAttributes();
193 void SetMask(long mask);
195 void SetColumn(int col);
196 void SetState(long state);
197 void SetStateMask(long stateMask);
198 void SetText(const wxString& text);
199 void SetImage(int image);
200 void SetData(long data);
202 void SetWidth(int width);
203 void SetAlign(wxListColumnFormat align);
205 void SetTextColour(const wxColour& colText);
206 void SetBackgroundColour(const wxColour& colBack);
207 void SetFont(const wxFont& font);
214 const wxString& GetText();
219 wxListColumnFormat GetAlign();
221 wxListItemAttr *GetAttributes();
222 bool HasAttributes();
224 wxColour GetTextColour() const;
225 wxColour GetBackgroundColour() const;
226 wxFont GetFont() const;
228 // these members are public for compatibility
229 long m_mask; // Indicates what fields are valid
230 long m_itemId; // The zero-based item position
231 int m_col; // Zero-based column, if in report mode
232 long m_state; // The state of the item
233 long m_stateMask;// Which flags of m_state are valid (uses same flags)
234 wxString m_text; // The label/header text
235 int m_image; // The zero-based index into an image list
236 long m_data; // App-defined data
239 int m_format; // left, right, centre
240 int m_width; // width of column
245 //---------------------------------------------------------------------------
249 // wxListEvent - the event class for the wxListCtrl notifications
250 class wxListEvent: public wxNotifyEvent {
252 wxListEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
264 %pythoncode { GetCode = GetKeyCode }
268 %pythoncode { GetPostiion = GetPoint }
269 const wxString& GetLabel();
270 const wxString& GetText();
274 const wxListItem& GetItem();
279 // was label editing canceled? (for wxEVT_COMMAND_LIST_END_LABEL_EDIT only)
280 bool IsEditCancelled() const;
281 void SetEditCanceled(bool editCancelled);
284 /* List control event types */
285 %constant wxEventType wxEVT_COMMAND_LIST_BEGIN_DRAG;
286 %constant wxEventType wxEVT_COMMAND_LIST_BEGIN_RDRAG;
287 %constant wxEventType wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT;
288 %constant wxEventType wxEVT_COMMAND_LIST_END_LABEL_EDIT;
289 %constant wxEventType wxEVT_COMMAND_LIST_DELETE_ITEM;
290 %constant wxEventType wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS;
291 %constant wxEventType wxEVT_COMMAND_LIST_GET_INFO;
292 %constant wxEventType wxEVT_COMMAND_LIST_SET_INFO;
293 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_SELECTED;
294 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_DESELECTED;
295 %constant wxEventType wxEVT_COMMAND_LIST_KEY_DOWN;
296 %constant wxEventType wxEVT_COMMAND_LIST_INSERT_ITEM;
297 %constant wxEventType wxEVT_COMMAND_LIST_COL_CLICK;
298 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK;
299 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK;
300 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
301 %constant wxEventType wxEVT_COMMAND_LIST_CACHE_HINT;
302 %constant wxEventType wxEVT_COMMAND_LIST_COL_RIGHT_CLICK;
303 %constant wxEventType wxEVT_COMMAND_LIST_COL_BEGIN_DRAG;
304 %constant wxEventType wxEVT_COMMAND_LIST_COL_DRAGGING;
305 %constant wxEventType wxEVT_COMMAND_LIST_COL_END_DRAG;
306 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_FOCUSED;
312 EVT_LIST_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG , 1)
313 EVT_LIST_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG , 1)
314 EVT_LIST_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT , 1)
315 EVT_LIST_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT , 1)
316 EVT_LIST_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM , 1)
317 EVT_LIST_DELETE_ALL_ITEMS = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS , 1)
318 EVT_LIST_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO , 1)
319 EVT_LIST_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO , 1)
320 EVT_LIST_ITEM_SELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED , 1)
321 EVT_LIST_ITEM_DESELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED , 1)
322 EVT_LIST_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN , 1)
323 EVT_LIST_INSERT_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM , 1)
324 EVT_LIST_COL_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK , 1)
325 EVT_LIST_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK , 1)
326 EVT_LIST_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, 1)
327 EVT_LIST_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED , 1)
328 EVT_LIST_CACHE_HINT = wx.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT , 1)
329 EVT_LIST_COL_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK , 1)
330 EVT_LIST_COL_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG , 1)
331 EVT_LIST_COL_DRAGGING = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING , 1)
332 EVT_LIST_COL_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG , 1)
333 EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED , 1)
336 //---------------------------------------------------------------------------
340 %{ // Python aware sorting function for wxPyListCtrl
341 static int wxCALLBACK wxPyListCtrl_SortItems(long item1, long item2, long funcPtr) {
343 PyObject* func = (PyObject*)funcPtr;
344 wxPyBeginBlockThreads();
346 PyObject* args = Py_BuildValue("(ii)", item1, item2);
347 PyObject* result = PyEval_CallObject(func, args);
350 retval = PyInt_AsLong(result);
354 wxPyEndBlockThreads();
361 %{ // C++ Version of a Python aware class
362 class wxPyListCtrl : public wxListCtrl {
363 DECLARE_ABSTRACT_CLASS(wxPyListCtrl);
365 wxPyListCtrl() : wxListCtrl() {}
366 wxPyListCtrl(wxWindow* parent, wxWindowID id,
370 const wxValidator& validator,
371 const wxString& name) :
372 wxListCtrl(parent, id, pos, size, style, validator, name) {}
374 bool Create(wxWindow* parent, wxWindowID id,
378 const wxValidator& validator,
379 const wxString& name) {
380 return wxListCtrl::Create(parent, id, pos, size, style, validator, name);
383 DEC_PYCALLBACK_STRING_LONGLONG(OnGetItemText);
384 DEC_PYCALLBACK_INT_LONG(OnGetItemImage);
385 DEC_PYCALLBACK_LISTATTR_LONG(OnGetItemAttr);
390 IMPLEMENT_ABSTRACT_CLASS(wxPyListCtrl, wxListCtrl);
392 IMP_PYCALLBACK_STRING_LONGLONG(wxPyListCtrl, wxListCtrl, OnGetItemText);
393 IMP_PYCALLBACK_INT_LONG(wxPyListCtrl, wxListCtrl, OnGetItemImage);
394 IMP_PYCALLBACK_LISTATTR_LONG(wxPyListCtrl, wxListCtrl, OnGetItemAttr);
401 %name(ListCtrl)class wxPyListCtrl : public wxControl {
404 %addtofunc wxPyListCtrl "self._setOORInfo(self);self._setCallbackInfo(self, ListCtrl)"
405 %addtofunc wxPyListCtrl() ""
407 wxPyListCtrl(wxWindow* parent, wxWindowID id = -1,
408 const wxPoint& pos = wxDefaultPosition,
409 const wxSize& size = wxDefaultSize,
410 long style = wxLC_ICON,
411 const wxValidator& validator = wxDefaultValidator,
412 const wxString& name = wxPyListCtrlNameStr);
413 %name(PreListCtrl)wxPyListCtrl();
415 bool Create(wxWindow* parent, wxWindowID id = -1,
416 const wxPoint& pos = wxDefaultPosition,
417 const wxSize& size = wxDefaultSize,
418 long style = wxLC_ICON,
419 const wxValidator& validator = wxDefaultValidator,
420 const wxString& name = wxPyListCtrlNameStr);
422 void _setCallbackInfo(PyObject* self, PyObject* _class);
425 // Set the control colours
426 bool SetForegroundColour(const wxColour& col);
427 bool SetBackgroundColour(const wxColour& col);
429 // Gets information about this column
430 %addtofunc GetColumn "if val is not None: val.thisown = 1"; // %newobject doesn't work with OOR typemap
432 wxListItem* GetColumn(int col) {
434 item.SetMask( wxLIST_MASK_STATE |
442 if (self->GetColumn(col, item))
443 return new wxListItem(item);
449 // Sets information about this column
450 bool SetColumn(int col, wxListItem& item) ;
452 // Gets the column width
453 int GetColumnWidth(int col) const;
455 // Sets the column width
456 bool SetColumnWidth(int col, int width) ;
458 // Gets the number of items that can fit vertically in the
459 // visible area of the list control (list or report view)
460 // or the total number of items in the list control (icon
461 // or small icon view)
462 int GetCountPerPage() const;
464 // return the total area occupied by all the items (icon/small icon only)
465 wxRect GetViewRect() const;
468 // Gets the edit control for editing labels.
469 wxTextCtrl* GetEditControl() const;
472 // Gets information about the item
473 %addtofunc GetItem "if val is not None: val.thisown = 1"; // %newobject doesn't work with OOR typemap
475 wxListItem* GetItem(long itemId, int col=0) {
476 wxListItem* info = new wxListItem;
477 info->m_itemId = itemId;
479 info->m_mask = 0xFFFF;
480 self->GetItem(*info);
485 // Sets information about the item
486 bool SetItem(wxListItem& info) ;
488 // Sets a string field at a particular column
489 %name(SetStringItem)long SetItem(long index, int col, const wxString& label, int imageId = -1);
491 // Gets the item state
492 int GetItemState(long item, long stateMask) const ;
494 // Sets the item state
495 bool SetItemState(long item, long state, long stateMask) ;
497 // Sets the item image
498 bool SetItemImage(long item, int image, int selImage) ;
500 // Gets the item text
501 wxString GetItemText(long item) const ;
503 // Sets the item text
504 void SetItemText(long item, const wxString& str) ;
506 // Gets the item data
507 long GetItemData(long item) const ;
509 // Sets the item data
510 bool SetItemData(long item, long data) ;
513 //bool GetItemRect(long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS) const ;
514 //bool GetItemPosition(long item, wxPoint& pos) const ;
516 // Gets the item position
518 wxPoint GetItemPosition(long item) {
520 self->GetItemPosition(item, pos);
523 // Gets the item rectangle
524 wxRect GetItemRect(long item, int code = wxLIST_RECT_BOUNDS) {
526 self->GetItemRect(item, rect, code);
532 // Sets the item position
533 bool SetItemPosition(long item, const wxPoint& pos) ;
535 // Gets the number of items in the list control
536 int GetItemCount() const;
538 // Gets the number of columns in the list control
539 int GetColumnCount() const;
541 // get the horizontal and vertical components of the item spacing
542 wxSize GetItemSpacing() const;
545 void SetItemSpacing( int spacing, bool isSmall = FALSE );
548 // Gets the number of selected items in the list control
549 int GetSelectedItemCount() const;
551 // Gets the text colour of the listview
552 wxColour GetTextColour() const;
554 // Sets the text colour of the listview
555 void SetTextColour(const wxColour& col);
557 // Gets the index of the topmost visible item when in
558 // list or report view
559 long GetTopItem() const ;
561 // Add or remove a single window style
562 void SetSingleStyle(long style, bool add = TRUE) ;
564 // Set the whole window style
565 void SetWindowStyleFlag(long style) ;
567 // Searches for an item, starting from 'item'.
568 // item can be -1 to find the first item that matches the
570 // Returns the item or -1 if unsuccessful.
571 long GetNextItem(long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE) const ;
573 // Gets one of the three image lists
574 wxImageList *GetImageList(int which) const ;
576 // Sets the image list
577 void SetImageList(wxImageList *imageList, int which);
579 // is there a way to tell SWIG to disown this???
581 %addtofunc AssignImageList "args[1].thisown = 0";
582 void AssignImageList(wxImageList *imageList, int which);
584 // returns true if it is a virtual list control
585 bool IsVirtual() const;
587 // refresh items selectively (only useful for virtual list controls)
588 void RefreshItem(long item);
589 void RefreshItems(long itemFrom, long itemTo);
591 // Arranges the items
592 bool Arrange(int flag = wxLIST_ALIGN_DEFAULT);
595 bool DeleteItem(long item);
598 bool DeleteAllItems() ;
601 bool DeleteColumn(int col);
603 // Deletes all columns
604 bool DeleteAllColumns();
606 // Clears items, and columns if there are any.
611 wxTextCtrl* EditLabel(long item /*, wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl)*/);
613 // End label editing, optionally cancelling the edit
614 bool EndEditLabel(bool cancel);
616 void EditLabel(long item);
619 // Ensures this item is visible
620 bool EnsureVisible(long item) ;
622 // Find an item whose label matches this string, starting from the item after 'start'
623 // or the beginning if 'start' is -1.
624 long FindItem(long start, const wxString& str, bool partial = FALSE);
626 // Find an item whose data matches this data, starting from the item after 'start'
627 // or the beginning if 'start' is -1.
628 %name(FindItemData) long FindItem(long start, long data);
630 // Find an item nearest this position in the specified direction, starting from
631 // the item after 'start' or the beginning if 'start' is -1.
632 %name(FindItemAtPos) long FindItem(long start, const wxPoint& pt, int direction);
634 // Determines which item (if any) is at the specified point,
635 // giving details in the second return value (see wxLIST_HITTEST_... flags above)
636 long HitTest(const wxPoint& point, int& OUTPUT);
638 // Inserts an item, returning the index of the new item if successful,
640 long InsertItem(wxListItem& info);
642 // Insert a string item
643 %name(InsertStringItem) long InsertItem(long index, const wxString& label);
645 // Insert an image item
646 %name(InsertImageItem) long InsertItem(long index, int imageIndex);
648 // Insert an image/string item
649 %name(InsertImageStringItem) long InsertItem(long index, const wxString& label, int imageIndex);
651 // For list view mode (only), inserts a column.
652 %name(InsertColumnInfo) long InsertColumn(long col, wxListItem& info);
654 long InsertColumn(long col,
655 const wxString& heading,
656 int format = wxLIST_FORMAT_LEFT,
659 // set the number of items in a virtual list control
660 void SetItemCount(long count);
662 // Scrolls the list control. If in icon, small icon or report view mode,
663 // x specifies the number of pixels to scroll. If in list view mode, x
664 // specifies the number of columns to scroll.
665 // If in icon, small icon or list view mode, y specifies the number of pixels
666 // to scroll. If in report view mode, y specifies the number of lines to scroll.
667 bool ScrollList(int dx, int dy);
669 void SetItemTextColour( long item, const wxColour& col);
670 wxColour GetItemTextColour( long item ) const;
671 void SetItemBackgroundColour( long item, const wxColour &col);
672 wxColour GetItemBackgroundColour( long item ) const;
678 def Select(self, idx, on=1):
679 '''[de]select an item'''
680 if on: state = wxLIST_STATE_SELECTED
682 self.SetItemState(idx, state, wxLIST_STATE_SELECTED)
684 def Focus(self, idx):
685 '''Focus and show the given item'''
686 self.SetItemState(idx, wxLIST_STATE_FOCUSED, wxLIST_STATE_FOCUSED)
687 self.EnsureVisible(idx)
689 def GetFocusedItem(self):
690 '''get the currently focused item or -1 if none'''
691 return self.GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_FOCUSED)
693 def GetFirstSelected(self, *args):
694 '''return first selected item, or -1 when none'''
695 return self.GetNextSelected(-1)
697 def GetNextSelected(self, item):
698 '''return subsequent selected items, or -1 when no more'''
699 return self.GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED)
701 def IsSelected(self, idx):
702 '''return TRUE if the item is selected'''
703 return self.GetItemState(idx, wxLIST_STATE_SELECTED) != 0
705 def SetColumnImage(self, col, image):
706 item = self.GetColumn(col)
707 # preserve all other attributes too
708 item.SetMask( wxLIST_MASK_STATE |
716 self.SetColumn(col, item)
718 def ClearColumnImage(self, col):
719 self.SetColumnImage(col, -1)
721 def Append(self, entry):
722 '''Append an item to the list control. The entry parameter should be a
723 sequence with an item for each column'''
729 pos = self.GetItemCount()
730 self.InsertStringItem(pos, cvtfunc(entry[0]))
731 for i in range(1, len(entry)):
732 self.SetStringItem(pos, i, cvtfunc(entry[i]))
737 // bool SortItems(wxListCtrlCompare fn, long data);
740 // func is a function which takes 2 long arguments: item1, item2.
741 // item1 is the long data associated with a first item (NOT the index).
742 // item2 is the long data associated with a second item (NOT the index).
743 // The return value is a negative number if the first item should precede the second
744 // item, a positive number of the second item should precede the first,
745 // or zero if the two items are equivalent.
746 bool SortItems(PyObject* func) {
747 if (!PyCallable_Check(func))
749 return self->SortItems((wxListCtrlCompare)wxPyListCtrl_SortItems, (long)func);
755 wxWindow* GetMainWindow() {
759 return (wxWindow*)self->m_mainWin;
767 //---------------------------------------------------------------------------
771 // wxListView: a class which provides a little better API for list control
772 class wxListView : public wxPyListCtrl
775 %addtofunc wxListView "self._setOORInfo(self)"
776 %addtofunc wxListView() ""
778 wxListView( wxWindow *parent,
780 const wxPoint& pos = wxDefaultPosition,
781 const wxSize& size = wxDefaultSize,
782 long style = wxLC_REPORT,
783 const wxValidator& validator = wxDefaultValidator,
784 const wxString& name = wxPyListCtrlNameStr);
785 %name(PreListView)wxListView();
787 bool Create( wxWindow *parent,
789 const wxPoint& pos = wxDefaultPosition,
790 const wxSize& size = wxDefaultSize,
791 long style = wxLC_REPORT,
792 const wxValidator& validator = wxDefaultValidator,
793 const wxString& name = wxPyListCtrlNameStr);
795 // [de]select an item
796 void Select(long n, bool on = TRUE);
798 // focus and show the given item
799 void Focus(long index);
801 // get the currently focused item or -1 if none
802 long GetFocusedItem() const;
804 // get first and subsequent selected items, return -1 when no more
805 long GetNextSelected(long item) const;
806 long GetFirstSelected() const;
808 // return TRUE if the item is selected
809 bool IsSelected(long index);
811 void SetColumnImage(int col, int image);
812 void ClearColumnImage(int col);
817 //---------------------------------------------------------------------------
820 // Map renamed classes back to their common name for OOR
821 wxPyPtrTypeMap_Add("wxListCtrl", "wxPyListCtrl");
824 //---------------------------------------------------------------------------