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>
22 MAKE_CONST_WXSTRING(ListCtrlNameStr);
24 //---------------------------------------------------------------------------
55 // Mask flags to tell app/GUI what fields of wxListItem are valid
64 // State flags for indicating the state of an item
65 wxLIST_STATE_DONTCARE,
66 wxLIST_STATE_DROPHILITED,
68 wxLIST_STATE_SELECTED,
70 wxLIST_STATE_DISABLED,
71 wxLIST_STATE_FILTERED,
76 // Hit test flags, used in HitTest
79 wxLIST_HITTEST_NOWHERE,
80 wxLIST_HITTEST_ONITEMICON,
81 wxLIST_HITTEST_ONITEMLABEL,
82 wxLIST_HITTEST_ONITEMRIGHT,
83 wxLIST_HITTEST_ONITEMSTATEICON,
84 wxLIST_HITTEST_TOLEFT,
85 wxLIST_HITTEST_TORIGHT,
86 wxLIST_HITTEST_ONITEM,
90 // Flags for GetNextItem (MSW only except wxLIST_NEXT_ALL)
93 wxLIST_NEXT_ABOVE, // Searches for an item above the specified item
94 wxLIST_NEXT_ALL, // Searches for subsequent item by index
95 wxLIST_NEXT_BELOW, // Searches for an item below the specified item
96 wxLIST_NEXT_LEFT, // Searches for an item to the left of the specified item
97 wxLIST_NEXT_RIGHT // Searches for an item to the right of the specified item
100 // Alignment flags for Arrange (MSW only except wxLIST_ALIGN_LEFT)
103 wxLIST_ALIGN_DEFAULT,
106 wxLIST_ALIGN_SNAP_TO_GRID
109 // Column format (MSW only except wxLIST_FORMAT_LEFT)
110 enum wxListColumnFormat
114 wxLIST_FORMAT_CENTRE,
115 wxLIST_FORMAT_CENTER = wxLIST_FORMAT_CENTRE
118 // Autosize values for SetColumnWidth
121 wxLIST_AUTOSIZE = -1,
122 wxLIST_AUTOSIZE_USEHEADER = -2 // partly supported by generic version
125 // Flag values for GetItemRect
133 // Flag values for FindItem (MSW only)
144 //---------------------------------------------------------------------------
147 // wxListItemAttr: a structure containing the visual attributes of an item
153 wxListItemAttr(const wxColour& colText = wxNullColour,
154 const wxColour& colBack = wxNullColour,
155 const wxFont& font = wxNullFont);
159 void SetTextColour(const wxColour& colText);
160 void SetBackgroundColour(const wxColour& colBack);
161 void SetFont(const wxFont& font);
164 bool HasTextColour();
165 bool HasBackgroundColour();
168 wxColour GetTextColour();
169 wxColour GetBackgroundColour();
172 void AssignFrom(const wxListItemAttr& source);
174 %pythonAppend Destroy "args[0].thisown = 0"
175 %extend { void Destroy() { delete self; } }
181 //---------------------------------------------------------------------------
185 // wxListItem: the item or column info, used to exchange data with wxListCtrl
186 class wxListItem : public wxObject {
193 void ClearAttributes();
196 void SetMask(long mask);
198 void SetColumn(int col);
199 void SetState(long state);
200 void SetStateMask(long stateMask);
201 void SetText(const wxString& text);
202 void SetImage(int image);
203 void SetData(long data);
205 void SetWidth(int width);
206 void SetAlign(wxListColumnFormat align);
208 void SetTextColour(const wxColour& colText);
209 void SetBackgroundColour(const wxColour& colBack);
210 void SetFont(const wxFont& font);
217 const wxString& GetText();
222 wxListColumnFormat GetAlign();
224 wxListItemAttr *GetAttributes();
225 bool HasAttributes();
227 wxColour GetTextColour() const;
228 wxColour GetBackgroundColour() const;
229 wxFont GetFont() const;
231 // these members are public for compatibility
232 long m_mask; // Indicates what fields are valid
233 long m_itemId; // The zero-based item position
234 int m_col; // Zero-based column, if in report mode
235 long m_state; // The state of the item
236 long m_stateMask;// Which flags of m_state are valid (uses same flags)
237 wxString m_text; // The label/header text
238 int m_image; // The zero-based index into an image list
239 long m_data; // App-defined data
242 int m_format; // left, right, centre
243 int m_width; // width of column
248 //---------------------------------------------------------------------------
252 // wxListEvent - the event class for the wxListCtrl notifications
253 class wxListEvent: public wxNotifyEvent {
255 wxListEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
267 %pythoncode { GetCode = GetKeyCode }
271 %pythoncode { GetPosition = GetPoint }
272 const wxString& GetLabel();
273 const wxString& GetText();
277 const wxListItem& GetItem();
282 // was label editing canceled? (for wxEVT_COMMAND_LIST_END_LABEL_EDIT only)
283 bool IsEditCancelled() const;
284 void SetEditCanceled(bool editCancelled);
287 /* List control event types */
288 %constant wxEventType wxEVT_COMMAND_LIST_BEGIN_DRAG;
289 %constant wxEventType wxEVT_COMMAND_LIST_BEGIN_RDRAG;
290 %constant wxEventType wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT;
291 %constant wxEventType wxEVT_COMMAND_LIST_END_LABEL_EDIT;
292 %constant wxEventType wxEVT_COMMAND_LIST_DELETE_ITEM;
293 %constant wxEventType wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS;
294 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_SELECTED;
295 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_DESELECTED;
296 %constant wxEventType wxEVT_COMMAND_LIST_KEY_DOWN;
297 %constant wxEventType wxEVT_COMMAND_LIST_INSERT_ITEM;
298 %constant wxEventType wxEVT_COMMAND_LIST_COL_CLICK;
299 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK;
300 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK;
301 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_ACTIVATED;
302 %constant wxEventType wxEVT_COMMAND_LIST_CACHE_HINT;
303 %constant wxEventType wxEVT_COMMAND_LIST_COL_RIGHT_CLICK;
304 %constant wxEventType wxEVT_COMMAND_LIST_COL_BEGIN_DRAG;
305 %constant wxEventType wxEVT_COMMAND_LIST_COL_DRAGGING;
306 %constant wxEventType wxEVT_COMMAND_LIST_COL_END_DRAG;
307 %constant wxEventType wxEVT_COMMAND_LIST_ITEM_FOCUSED;
309 // WXWIN_COMPATIBILITY_2_4
311 %constant wxEventType wxEVT_COMMAND_LIST_GET_INFO;
312 %constant wxEventType wxEVT_COMMAND_LIST_SET_INFO;
317 EVT_LIST_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG , 1)
318 EVT_LIST_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG , 1)
319 EVT_LIST_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT , 1)
320 EVT_LIST_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT , 1)
321 EVT_LIST_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM , 1)
322 EVT_LIST_DELETE_ALL_ITEMS = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS , 1)
323 #WXWIN_COMPATIBILITY_2_4
324 #EVT_LIST_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO , 1)
325 #EVT_LIST_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO , 1)
326 #END WXWIN_COMPATIBILITY_2_4
327 EVT_LIST_ITEM_SELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED , 1)
328 EVT_LIST_ITEM_DESELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED , 1)
329 EVT_LIST_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN , 1)
330 EVT_LIST_INSERT_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM , 1)
331 EVT_LIST_COL_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK , 1)
332 EVT_LIST_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK , 1)
333 EVT_LIST_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK, 1)
334 EVT_LIST_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED , 1)
335 EVT_LIST_CACHE_HINT = wx.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT , 1)
336 EVT_LIST_COL_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK , 1)
337 EVT_LIST_COL_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG , 1)
338 EVT_LIST_COL_DRAGGING = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING , 1)
339 EVT_LIST_COL_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG , 1)
340 EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED , 1)
342 #WXWIN_COMPATIBILITY_2_4
343 #EVT_LIST_GET_INFO = wx._deprecated(EVT_LIST_GET_INFO)
344 #EVT_LIST_SET_INFO = wx._deprecated(EVT_LIST_SET_INFO)
347 //---------------------------------------------------------------------------
351 %{ // Python aware sorting function for wxPyListCtrl
352 static int wxCALLBACK wxPyListCtrl_SortItems(long item1, long item2, long funcPtr) {
354 PyObject* func = (PyObject*)funcPtr;
355 wxPyBlock_t blocked = wxPyBeginBlockThreads();
357 PyObject* args = Py_BuildValue("(ii)", item1, item2);
358 PyObject* result = PyEval_CallObject(func, args);
361 retval = PyInt_AsLong(result);
365 wxPyEndBlockThreads(blocked);
372 %{ // C++ Version of a Python aware class
373 class wxPyListCtrl : public wxListCtrl {
374 DECLARE_ABSTRACT_CLASS(wxPyListCtrl)
376 wxPyListCtrl() : wxListCtrl() {}
377 wxPyListCtrl(wxWindow* parent, wxWindowID id,
381 const wxValidator& validator,
382 const wxString& name) :
383 wxListCtrl(parent, id, pos, size, style, validator, name) {}
385 bool Create(wxWindow* parent, wxWindowID id,
389 const wxValidator& validator,
390 const wxString& name) {
391 return wxListCtrl::Create(parent, id, pos, size, style, validator, name);
394 DEC_PYCALLBACK_STRING_LONGLONG(OnGetItemText);
395 DEC_PYCALLBACK_LISTATTR_LONG(OnGetItemAttr);
397 // use the virtual version to avoid a confusing assert in the base class
398 DEC_PYCALLBACK_INT_LONG_virtual(OnGetItemImage);
399 DEC_PYCALLBACK_INT_LONGLONG(OnGetItemColumnImage);
404 IMPLEMENT_ABSTRACT_CLASS(wxPyListCtrl, wxListCtrl);
406 IMP_PYCALLBACK_STRING_LONGLONG(wxPyListCtrl, wxListCtrl, OnGetItemText);
407 IMP_PYCALLBACK_LISTATTR_LONG(wxPyListCtrl, wxListCtrl, OnGetItemAttr);
408 IMP_PYCALLBACK_INT_LONG_virtual(wxPyListCtrl, wxListCtrl, OnGetItemImage);
409 IMP_PYCALLBACK_INT_LONGLONG(wxPyListCtrl, wxListCtrl, OnGetItemColumnImage);
417 MustHaveApp(wxPyListCtrl);
419 %rename(ListCtrl) wxPyListCtrl;
420 class wxPyListCtrl : public wxControl {
423 %pythonAppend wxPyListCtrl "self._setOORInfo(self);self._setCallbackInfo(self, ListCtrl)"
424 %pythonAppend wxPyListCtrl() ""
426 wxPyListCtrl(wxWindow* parent, wxWindowID id = -1,
427 const wxPoint& pos = wxDefaultPosition,
428 const wxSize& size = wxDefaultSize,
429 long style = wxLC_ICON,
430 const wxValidator& validator = wxDefaultValidator,
431 const wxString& name = wxPyListCtrlNameStr);
432 %RenameCtor(PreListCtrl, wxPyListCtrl());
434 bool Create(wxWindow* parent, wxWindowID id = -1,
435 const wxPoint& pos = wxDefaultPosition,
436 const wxSize& size = wxDefaultSize,
437 long style = wxLC_ICON,
438 const wxValidator& validator = wxDefaultValidator,
439 const wxString& name = wxPyListCtrlNameStr);
441 void _setCallbackInfo(PyObject* self, PyObject* _class);
444 // Set the control colours
445 bool SetForegroundColour(const wxColour& col);
446 bool SetBackgroundColour(const wxColour& col);
448 // Gets information about this column
449 %pythonAppend GetColumn "if val is not None: val.thisown = 1"; // %newobject doesn't work with OOR typemap
451 wxListItem* GetColumn(int col) {
453 item.SetMask( wxLIST_MASK_STATE |
461 if (self->GetColumn(col, item))
462 return new wxListItem(item);
468 // Sets information about this column
469 bool SetColumn(int col, wxListItem& item) ;
471 // Gets the column width
472 int GetColumnWidth(int col) const;
474 // Sets the column width
475 bool SetColumnWidth(int col, int width) ;
477 // Gets the number of items that can fit vertically in the
478 // visible area of the list control (list or report view)
479 // or the total number of items in the list control (icon
480 // or small icon view)
481 int GetCountPerPage() const;
483 // return the total area occupied by all the items (icon/small icon only)
484 wxRect GetViewRect() const;
486 // Gets the edit control for editing labels.
487 wxTextCtrl* GetEditControl() const;
489 // Gets information about the item
490 %pythonAppend GetItem "if val is not None: val.thisown = 1"; // %newobject doesn't work with OOR typemap
492 wxListItem* GetItem(long itemId, int col=0) {
493 wxListItem* info = new wxListItem;
494 info->m_itemId = itemId;
496 info->m_mask = 0xFFFF;
497 self->GetItem(*info);
502 // Sets information about the item
503 bool SetItem(wxListItem& info) ;
505 // Sets a string field at a particular column
506 %Rename(SetStringItem, long, SetItem(long index, int col, const wxString& label, int imageId = -1));
508 // Gets the item state
509 int GetItemState(long item, long stateMask) const ;
511 // Sets the item state
512 bool SetItemState(long item, long state, long stateMask) ;
514 // Sets the item image
515 bool SetItemImage(long item, int image, int selImage=-1) ;
517 // Gets the item text
518 wxString GetItemText(long item) const ;
520 // Sets the item text
521 void SetItemText(long item, const wxString& str) ;
523 // Gets the item data
524 long GetItemData(long item) const ;
526 // Sets the item data
527 bool SetItemData(long item, long data) ;
530 //bool GetItemRect(long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS) const ;
531 //bool GetItemPosition(long item, wxPoint& pos) const ;
533 // Gets the item position
535 wxPoint GetItemPosition(long item) {
537 self->GetItemPosition(item, pos);
540 // Gets the item rectangle
541 wxRect GetItemRect(long item, int code = wxLIST_RECT_BOUNDS) {
543 self->GetItemRect(item, rect, code);
549 // Sets the item position
550 bool SetItemPosition(long item, const wxPoint& pos) ;
552 // Gets the number of items in the list control
553 int GetItemCount() const;
555 // Gets the number of columns in the list control
556 int GetColumnCount() const;
558 // get the horizontal and vertical components of the item spacing
559 wxSize GetItemSpacing() const;
562 void SetItemSpacing( int spacing, bool isSmall = false );
565 // Gets the number of selected items in the list control
566 int GetSelectedItemCount() const;
568 // Gets the text colour of the listview
569 wxColour GetTextColour() const;
571 // Sets the text colour of the listview
572 void SetTextColour(const wxColour& col);
574 // Gets the index of the topmost visible item when in
575 // list or report view
576 long GetTopItem() const ;
578 // Add or remove a single window style
579 void SetSingleStyle(long style, bool add = true) ;
581 // Set the whole window style
582 void SetWindowStyleFlag(long style) ;
584 // Searches for an item, starting from 'item'.
585 // item can be -1 to find the first item that matches the
587 // Returns the item or -1 if unsuccessful.
588 long GetNextItem(long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE) const ;
590 // Gets one of the three image lists
591 wxImageList *GetImageList(int which) const ;
593 // Sets the image list
594 void SetImageList(wxImageList *imageList, int which);
596 %disownarg( wxImageList *imageList );
597 void AssignImageList(wxImageList *imageList, int which);
598 %cleardisown( wxImageList *imageList );
600 // are we in report mode?
601 bool InReportView() const;
603 // returns True if it is a virtual list control
604 bool IsVirtual() const;
606 // refresh items selectively (only useful for virtual list controls)
607 void RefreshItem(long item);
608 void RefreshItems(long itemFrom, long itemTo);
610 // Arranges the items
611 bool Arrange(int flag = wxLIST_ALIGN_DEFAULT);
614 bool DeleteItem(long item);
617 bool DeleteAllItems() ;
620 bool DeleteColumn(int col);
622 // Deletes all columns
623 bool DeleteAllColumns();
625 // Clears items, and columns if there are any.
630 wxTextCtrl* EditLabel(long item /*, wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl)*/);
632 // End label editing, optionally cancelling the edit
633 bool EndEditLabel(bool cancel);
635 void EditLabel(long item);
638 // Ensures this item is visible
639 bool EnsureVisible(long item) ;
641 // Find an item whose label matches this string, starting from the item after 'start'
642 // or the beginning if 'start' is -1.
643 long FindItem(long start, const wxString& str, bool partial = false);
645 // Find an item whose data matches this data, starting from the item after 'start'
646 // or the beginning if 'start' is -1.
647 %Rename(FindItemData, long, FindItem(long start, long data));
649 // Find an item nearest this position in the specified direction, starting from
650 // the item after 'start' or the beginning if 'start' is -1.
651 %Rename(FindItemAtPos, long, FindItem(long start, const wxPoint& pt, int direction));
655 long, HitTest(const wxPoint& point, int& OUTPUT),
656 "HitTest(Point point) -> (item, where)",
657 "Determines which item (if any) is at the specified point, giving
658 details in the second return value (see wx.LIST_HITTEST flags.)", "");
660 // Inserts an item, returning the index of the new item if successful,
662 long InsertItem(wxListItem& info);
664 // Insert a string item
665 %Rename(InsertStringItem,
666 long, InsertItem(long index, const wxString& label, int imageIndex=-1));
668 // Insert an image item
669 %Rename(InsertImageItem,
670 long, InsertItem(long index, int imageIndex));
672 // Insert an image/string item
673 %Rename(InsertImageStringItem,
674 long, InsertItem(long index, const wxString& label, int imageIndex));
676 // For list view mode (only), inserts a column.
677 %Rename(InsertColumnItem, long, InsertColumn(long col, wxListItem& info));
678 %pythoncode { InsertColumnInfo = InsertColumnItem }
680 long InsertColumn(long col,
681 const wxString& heading,
682 int format = wxLIST_FORMAT_LEFT,
685 // set the number of items in a virtual list control
686 void SetItemCount(long count);
688 // Scrolls the list control. If in icon, small icon or report view mode,
689 // x specifies the number of pixels to scroll. If in list view mode, x
690 // specifies the number of columns to scroll.
691 // If in icon, small icon or list view mode, y specifies the number of pixels
692 // to scroll. If in report view mode, y specifies the number of lines to scroll.
693 bool ScrollList(int dx, int dy);
695 void SetItemTextColour( long item, const wxColour& col);
696 wxColour GetItemTextColour( long item ) const;
697 void SetItemBackgroundColour( long item, const wxColour &col);
698 wxColour GetItemBackgroundColour( long item ) const;
701 void SetItemFont( long item, const wxFont &f);
702 wxFont GetItemFont( long item ) const;
707 def Select(self, idx, on=1):
708 '''[de]select an item'''
709 if on: state = wx.LIST_STATE_SELECTED
711 self.SetItemState(idx, state, wx.LIST_STATE_SELECTED)
713 def Focus(self, idx):
714 '''Focus and show the given item'''
715 self.SetItemState(idx, wx.LIST_STATE_FOCUSED, wx.LIST_STATE_FOCUSED)
716 self.EnsureVisible(idx)
718 def GetFocusedItem(self):
719 '''get the currently focused item or -1 if none'''
720 return self.GetNextItem(-1, wx.LIST_NEXT_ALL, wx.LIST_STATE_FOCUSED)
722 def GetFirstSelected(self, *args):
723 '''return first selected item, or -1 when none'''
724 return self.GetNextSelected(-1)
726 def GetNextSelected(self, item):
727 '''return subsequent selected items, or -1 when no more'''
728 return self.GetNextItem(item, wx.LIST_NEXT_ALL, wx.LIST_STATE_SELECTED)
730 def IsSelected(self, idx):
731 '''return True if the item is selected'''
732 return (self.GetItemState(idx, wx.LIST_STATE_SELECTED) & wx.LIST_STATE_SELECTED) != 0
734 def SetColumnImage(self, col, image):
735 item = self.GetColumn(col)
736 %# preserve all other attributes too
737 item.SetMask( wx.LIST_MASK_STATE |
743 wx.LIST_MASK_FORMAT )
745 self.SetColumn(col, item)
747 def ClearColumnImage(self, col):
748 self.SetColumnImage(col, -1)
750 def Append(self, entry):
751 '''Append an item to the list control. The entry parameter should be a
752 sequence with an item for each column'''
758 pos = self.GetItemCount()
759 self.InsertStringItem(pos, cvtfunc(entry[0]))
760 for i in range(1, len(entry)):
761 self.SetStringItem(pos, i, cvtfunc(entry[i]))
766 // bool SortItems(wxListCtrlCompare fn, long data);
769 // func is a function which takes 2 long arguments: item1, item2.
770 // item1 is the long data associated with a first item (NOT the index).
771 // item2 is the long data associated with a second item (NOT the index).
772 // The return value is a negative number if the first item should precede the second
773 // item, a positive number of the second item should precede the first,
774 // or zero if the two items are equivalent.
775 bool SortItems(PyObject* func) {
776 if (!PyCallable_Check(func))
778 return self->SortItems((wxListCtrlCompare)wxPyListCtrl_SortItems, (long)func);
784 wxWindow* GetMainWindow() {
788 return (wxWindow*)self->m_mainWin;
793 static wxVisualAttributes
794 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
799 //---------------------------------------------------------------------------
803 MustHaveApp(wxListView);
805 // wxListView: a class which provides a little better API for list control
806 class wxListView : public wxPyListCtrl
809 %pythonAppend wxListView "self._setOORInfo(self)"
810 %pythonAppend wxListView() ""
812 wxListView( wxWindow *parent,
814 const wxPoint& pos = wxDefaultPosition,
815 const wxSize& size = wxDefaultSize,
816 long style = wxLC_REPORT,
817 const wxValidator& validator = wxDefaultValidator,
818 const wxString& name = wxPyListCtrlNameStr);
819 %RenameCtor(PreListView, wxListView());
821 bool Create( wxWindow *parent,
823 const wxPoint& pos = wxDefaultPosition,
824 const wxSize& size = wxDefaultSize,
825 long style = wxLC_REPORT,
826 const wxValidator& validator = wxDefaultValidator,
827 const wxString& name = wxPyListCtrlNameStr);
829 // [de]select an item
830 void Select(long n, bool on = true);
832 // focus and show the given item
833 void Focus(long index);
835 // get the currently focused item or -1 if none
836 long GetFocusedItem() const;
838 // get first and subsequent selected items, return -1 when no more
839 long GetNextSelected(long item) const;
840 long GetFirstSelected() const;
842 // return True if the item is selected
843 bool IsSelected(long index);
845 void SetColumnImage(int col, int image);
846 void ClearColumnImage(int col);
851 //---------------------------------------------------------------------------
854 // Map renamed classes back to their common name for OOR
855 wxPyPtrTypeMap_Add("wxListCtrl", "wxPyListCtrl");
858 //---------------------------------------------------------------------------