.. include:: headings.inc .. _ListCtrl: ========================================================================================================================================== |phoenix_title| **ListCtrl** ========================================================================================================================================== A list control presents lists in a number of formats: list view, report view, icon view and small icon view. In any case, elements are numbered from zero. For all these modes, the items are stored in the control and must be added to it using :meth:`ListCtrl.InsertItem` method. A special case of report view quite different from the other modes of the list control is a virtual control in which the items data (including text, images and attributes) is managed by the main program and is requested by the control itself only when needed which allows to have controls with millions of items without consuming much memory. To use virtual list control you must use :meth:`ListCtrl.SetItemCount` first and override at least :meth:`ListCtrl.OnGetItemText` (and optionally :meth:`ListCtrl.OnGetItemImage` or :meth:`ListCtrl.OnGetItemColumnImage` and :meth:`ListCtrl.OnGetItemAttr` ) to return the information about the items when the control requests it. Virtual list control can be used as a normal one except that no operations which can take time proportional to the number of items in the control happen -- this is required to allow having a practically infinite number of items. For example, in a multiple selection virtual list control, the selections won't be sent when many items are selected at once because this could mean iterating over all the items. Using many of :ref:`ListCtrl` features is shown in the . To intercept events from a list control, use the event table macros described in :ref:`ListEvent`. **Mac Note**: Starting with wxWidgets 2.8, :ref:`ListCtrl` uses a native implementation for report mode, and uses a generic implementation for other modes. You can use the generic implementation for report mode as well by setting the ``mac.listctrl.always_use_generic`` system option (see :ref:`SystemOptions`) to 1. .. _ListCtrl-styles: |styles| Window Styles ================================ This class supports the following styles: - ``LC_LIST``: Multicolumn list view, with optional small icons. Columns are computed automatically, i.e. you don't set columns as in ``LC_REPORT`` . In other words, the list wraps, unlike a :ref:`ListBox`. - ``LC_REPORT``: Single or multicolumn report view, with optional header. - ``LC_VIRTUAL``: The application provides items text on demand. May only be used with ``LC_REPORT`` . - ``LC_ICON``: Large icon view, with optional labels. - ``LC_SMALL_ICON``: Small icon view, with optional labels. - ``LC_ALIGN_TOP``: Icons align to the top. Win32 default, Win32 only. - ``LC_ALIGN_LEFT``: Icons align to the left. - ``LC_AUTOARRANGE``: Icons arrange themselves. Win32 only. - ``LC_EDIT_LABELS``: Labels are editable: the application will be notified when editing starts. - ``LC_NO_HEADER``: No header in report mode. - ``LC_SINGLE_SEL``: Single selection (default is multiple). - ``LC_SORT_ASCENDING``: Sort in ascending order. (You must still supply a comparison callback in :meth:`ListCtrl.SortItems` .) - ``LC_SORT_DESCENDING``: Sort in descending order. (You must still supply a comparison callback in :meth:`ListCtrl.SortItems` .) - ``LC_HRULES``: Draws light horizontal rules between rows in report mode. - ``LC_VRULES``: Draws light vertical rules between columns in report mode. .. _ListCtrl-events: |events| Events Emitted by this Class ===================================== Handlers bound for the following event types will receive a :ref:`ListEvent` parameter. - EVT_LIST_BEGIN_DRAG: Begin dragging with the left mouse button. Processes a ``wxEVT_COMMAND_LIST_BEGIN_DRAG`` event type. - EVT_LIST_BEGIN_RDRAG: Begin dragging with the right mouse button. Processes a ``wxEVT_COMMAND_LIST_BEGIN_RDRAG`` event type. - EVT_BEGIN_LABEL_EDIT: Begin editing a label. This can be prevented by calling Veto(). Processes a ``wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT`` event type. - EVT_LIST_END_LABEL_EDIT: Finish editing a label. This can be prevented by calling Veto(). Processes a ``wxEVT_COMMAND_LIST_END_LABEL_EDIT`` event type. - EVT_LIST_DELETE_ITEM: An item was deleted. Processes a ``wxEVT_COMMAND_LIST_DELETE_ITEM`` event type. - EVT_LIST_DELETE_ALL_ITEMS: All items were deleted. Processes a ``wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS`` event type. - EVT_LIST_ITEM_SELECTED: The item has been selected. Processes a ``wxEVT_COMMAND_LIST_ITEM_SELECTED`` event type. - EVT_LIST_ITEM_DESELECTED: The item has been deselected. Processes a ``wxEVT_COMMAND_LIST_ITEM_DESELECTED`` event type. - EVT_LIST_ITEM_ACTIVATED: The item has been activated (``ENTER`` or float click). Processes a ``wxEVT_COMMAND_LIST_ITEM_ACTIVATED`` event type. - EVT_LIST_ITEM_FOCUSED: The currently focused item has changed. Processes a ``wxEVT_COMMAND_LIST_ITEM_FOCUSED`` event type. - EVT_LIST_ITEM_MIDDLE_CLICK: The middle mouse button has been clicked on an item. This is only supported by the generic control. Processes a ``wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK`` event type. - EVT_LIST_ITEM_RIGHT_CLICK: The right mouse button has been clicked on an item. Processes a ``wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK`` event type. - EVT_LIST_KEY_DOWN: A key has been pressed. Processes a ``wxEVT_COMMAND_LIST_KEY_DOWN`` event type. - EVT_LIST_INSERT_ITEM: An item has been inserted. Processes a ``wxEVT_COMMAND_LIST_INSERT_ITEM`` event type. - EVT_LIST_COL_CLICK: A column (m_col) has been left-clicked. Processes a ``wxEVT_COMMAND_LIST_COL_CLICK`` event type. - EVT_LIST_COL_RIGHT_CLICK: A column (m_col) has been right-clicked. Processes a ``wxEVT_COMMAND_LIST_COL_RIGHT_CLICK`` event type. - EVT_LIST_COL_BEGIN_DRAG: The user started resizing a column - can be vetoed. Processes a ``wxEVT_COMMAND_LIST_COL_BEGIN_DRAG`` event type. - EVT_LIST_COL_DRAGGING: The divider between columns is being dragged. Processes a ``wxEVT_COMMAND_LIST_COL_DRAGGING`` event type. - EVT_LIST_COL_END_DRAG: A column has been resized by the user. Processes a ``wxEVT_COMMAND_LIST_COL_END_DRAG`` event type. - EVT_LIST_CACHE_HINT: Prepare cache for a virtual list control. Processes a ``wxEVT_COMMAND_LIST_CACHE_HINT`` event type. .. seealso:: :ref:`ListCtrl Overview `, :ref:`ListView`, :ref:`ListBox`, :ref:`TreeCtrl`, :ref:`ImageList`, :ref:`ListEvent`, :ref:`ListItem`, :ref:`adv.EditableListBox` | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **ListCtrl** .. raw:: html

Inheritance diagram of ListCtrl

| |appearance| Control Appearance =============================== | .. figure:: _static/images/widgets/fullsize/wxmsw/listctrl.png :alt: wxMSW :figclass: floatleft **wxMSW** .. figure:: _static/images/widgets/fullsize/wxmac/listctrl.png :alt: wxMAC :figclass: floatright **wxMAC** .. figure:: _static/images/widgets/fullsize/wxgtk/listctrl.png :alt: wxGTK :figclass: floatcenter **wxGTK** | |sub_classes| Known Subclasses ============================== :ref:`ListView` | |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~ListCtrl.__init__` Default constructor. :meth:`~ListCtrl.Append` Append an item to the list control. The entry parameter should be a :meth:`~ListCtrl.AppendColumn` Adds a new column to the list control in report view mode. :meth:`~ListCtrl.Arrange` Arranges the items in icon or small icon view. :meth:`~ListCtrl.AssignImageList` Sets the image list associated with the control and takes ownership of it (i.e. :meth:`~ListCtrl.ClearAll` Deletes all items and all columns. :meth:`~ListCtrl.ClearColumnImage` :meth:`~ListCtrl.Create` Creates the list control. :meth:`~ListCtrl.DeleteAllItems` Deletes all items in the list control. :meth:`~ListCtrl.DeleteColumn` Deletes a column. :meth:`~ListCtrl.DeleteItem` Deletes the specified item. :meth:`~ListCtrl.EditLabel` Starts editing the label of the given item. :meth:`~ListCtrl.EnsureVisible` Ensures this item is visible. :meth:`~ListCtrl.FindItem` Find an item whose label matches this string, starting from start or the beginning if start is ``-1`` . :meth:`~ListCtrl.Focus` Focus and show the given item :meth:`~ListCtrl.GetColumnCount` Returns the number of columns. :meth:`~ListCtrl.GetColumnIndexFromOrder` Gets the column index from its position in visual order. :meth:`~ListCtrl.GetColumnOrder` Gets the column visual order position. :meth:`~ListCtrl.GetColumnWidth` Gets the column width (report view only). :meth:`~ListCtrl.GetColumnsOrder` Returns the array containing the orders of all columns. :meth:`~ListCtrl.GetCountPerPage` Gets the number of items that can fit vertically in the visible area of the list control (list or report view) or the total number of items in the list control (icon or small icon view). :meth:`~ListCtrl.GetEditControl` Returns the edit control being currently used to edit a label. :meth:`~ListCtrl.GetFirstSelected` return first selected item, or -1 when none :meth:`~ListCtrl.GetFocusedItem` get the currently focused item or -1 if none :meth:`~ListCtrl.GetImageList` Returns the specified image list. :meth:`~ListCtrl.GetItemBackgroundColour` Returns the colour for this item. :meth:`~ListCtrl.GetItemCount` Returns the number of items in the list control. :meth:`~ListCtrl.GetItemData` Gets the application-defined data associated with this item. :meth:`~ListCtrl.GetItemFont` Returns the item's font. :meth:`~ListCtrl.GetItemSpacing` Retrieves the spacing between icons in pixels: horizontal spacing is returned as ``x`` component of the :ref:`Size` object and the vertical spacing as its ``y`` component. :meth:`~ListCtrl.GetItemState` Gets the item state. :meth:`~ListCtrl.GetItemText` Gets the item text for this item. :meth:`~ListCtrl.GetItemTextColour` Returns the colour for this item. :meth:`~ListCtrl.GetMainWindow` :meth:`~ListCtrl.GetNextItem` Searches for an item with the given geometry or state, starting from `item` but excluding the `item` itself. :meth:`~ListCtrl.GetNextSelected` return subsequent selected items, or -1 when no more :meth:`~ListCtrl.GetSelectedItemCount` Returns the number of selected items in the list control. :meth:`~ListCtrl.GetSubItemRect` Returns the rectangle representing the size and position, in physical coordinates, of the given subitem, i.e. :meth:`~ListCtrl.GetTextColour` Gets the text colour of the list control. :meth:`~ListCtrl.GetTopItem` Gets the index of the topmost visible item when in list or report view. :meth:`~ListCtrl.GetViewRect` Returns the rectangle taken by all items in the control. :meth:`~ListCtrl.HasColumnOrderSupport` :meth:`~ListCtrl.HitTest` Determines which item (if any) is at the specified point, giving details in `flags`. :meth:`~ListCtrl.InReportView` Returns ``True`` if the control is currently using ``LC_REPORT`` style. :meth:`~ListCtrl.InsertColumn` For report view mode (only), inserts a column. :meth:`~ListCtrl.InsertItem` Inserts an item, returning the index of the new item if successful, -1 otherwise. :meth:`~ListCtrl.IsSelected` return True if the item is selected :meth:`~ListCtrl.IsVirtual` Returns ``True`` if the control is currently in virtual report view. :meth:`~ListCtrl.OnGetItemAttr` This function may be overridden in the derived class for a control with ``LC_VIRTUAL`` style. :meth:`~ListCtrl.OnGetItemColumnImage` Override this function in the derived class for a control with ``LC_VIRTUAL`` and ``LC_REPORT`` styles in order to specify the image index for the given line and column. :meth:`~ListCtrl.OnGetItemImage` This function must be overridden in the derived class for a control with ``LC_VIRTUAL`` style having an "image list" (see :meth:`SetImageList` ; if the control doesn't have an image list, it is not necessary to override it). :meth:`~ListCtrl.OnGetItemText` This function **must** be overridden in the derived class for a control with ``LC_VIRTUAL`` style. :meth:`~ListCtrl.RefreshItem` Redraws the given `item`. :meth:`~ListCtrl.RefreshItems` Redraws the items between `itemFrom` and `itemTo`. :meth:`~ListCtrl.ScrollList` Scrolls the list control. :meth:`~ListCtrl.Select` [de]select an item :meth:`~ListCtrl.SetBackgroundColour` Sets the background colour. :meth:`~ListCtrl.SetColumn` Sets information about this column. :meth:`~ListCtrl.SetColumnImage` :meth:`~ListCtrl.SetColumnWidth` Sets the column width. :meth:`~ListCtrl.SetColumnsOrder` Changes the order in which the columns are shown. :meth:`~ListCtrl.SetImageList` Sets the image list associated with the control. :meth:`~ListCtrl.SetItem` Sets the data of an item. :meth:`~ListCtrl.SetItemBackgroundColour` Sets the background colour for this item. :meth:`~ListCtrl.SetItemColumnImage` Sets the image associated with the item. :meth:`~ListCtrl.SetItemCount` This method can only be used with virtual list controls. :meth:`~ListCtrl.SetItemData` Associates application-defined data with this item. :meth:`~ListCtrl.SetItemFont` Sets the item's font. :meth:`~ListCtrl.SetItemImage` Sets the unselected and selected images associated with the item. :meth:`~ListCtrl.SetItemPosition` Sets the position of the item, in icon or small icon view. :meth:`~ListCtrl.SetItemPtrData` Associates application-defined data with this item. :meth:`~ListCtrl.SetItemState` Sets the item state. :meth:`~ListCtrl.SetItemText` Sets the item text for this item. :meth:`~ListCtrl.SetItemTextColour` Sets the colour for this item. :meth:`~ListCtrl.SetSingleStyle` Adds or removes a single window style. :meth:`~ListCtrl.SetTextColour` Sets the text colour of the list control. :meth:`~ListCtrl.SetWindowStyleFlag` Sets the whole window style, deleting all items. :meth:`~ListCtrl.SortItems` Call this function to sort the items in the list control. ================================================================================ ================================================================================ | |property_summary| Properties Summary ===================================== ================================================================================ ================================================================================ :attr:`~ListCtrl.Column` See :meth:`~ListCtrl.GetColumn` and :meth:`~ListCtrl.SetColumn` :attr:`~ListCtrl.ColumnCount` See :meth:`~ListCtrl.GetColumnCount` :attr:`~ListCtrl.ColumnsOrder` See :meth:`~ListCtrl.GetColumnsOrder` and :meth:`~ListCtrl.SetColumnsOrder` :attr:`~ListCtrl.CountPerPage` See :meth:`~ListCtrl.GetCountPerPage` :attr:`~ListCtrl.EditControl` See :meth:`~ListCtrl.GetEditControl` :attr:`~ListCtrl.FocusedItem` See :meth:`~ListCtrl.GetFocusedItem` :attr:`~ListCtrl.Item` See :meth:`~ListCtrl.GetItem` and :meth:`~ListCtrl.SetItem` :attr:`~ListCtrl.ItemCount` See :meth:`~ListCtrl.GetItemCount` and :meth:`~ListCtrl.SetItemCount` :attr:`~ListCtrl.ItemPosition` See :meth:`~ListCtrl.GetItemPosition` and :meth:`~ListCtrl.SetItemPosition` :attr:`~ListCtrl.ItemRect` See :meth:`~ListCtrl.GetItemRect` :attr:`~ListCtrl.ItemSpacing` See :meth:`~ListCtrl.GetItemSpacing` :attr:`~ListCtrl.MainWindow` See :meth:`~ListCtrl.GetMainWindow` :attr:`~ListCtrl.SelectedItemCount` See :meth:`~ListCtrl.GetSelectedItemCount` :attr:`~ListCtrl.TextColour` See :meth:`~ListCtrl.GetTextColour` and :meth:`~ListCtrl.SetTextColour` :attr:`~ListCtrl.TopItem` See :meth:`~ListCtrl.GetTopItem` :attr:`~ListCtrl.ViewRect` See :meth:`~ListCtrl.GetViewRect` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: ListCtrl(Control) A list control presents lists in a number of formats: list view, report view, icon view and small icon view. **Possible constructors**:: ListCtrl() ListCtrl(parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=LC_ICON, validator=DefaultValidator, name=ListCtrlNameStr) .. method:: __init__(self, *args, **kw) |overload| **Overloaded Implementations**: **~~~** **__init__** `(self)` Default constructor. **~~~** **__init__** `(self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=LC_ICON, validator=DefaultValidator, name=ListCtrlNameStr)` Constructor, creating and showing a list control. :param `parent`: Parent window. Must not be ``None``. :type `parent`: Window :param `id`: Window identifier. The value ``ID_ANY`` indicates a default value. :type `id`: int :param `pos`: Window position. If ``DefaultPosition`` is specified then a default position is chosen. :type `pos`: Point :param `size`: Window size. If ``DefaultSize`` is specified then the window is sized appropriately. :type `size`: Size :param `style`: Window style. See :ref:`ListCtrl`. :type `style`: long :param `validator`: Window validator. :type `validator`: Validator :param `name`: Window name. :type `name`: string .. seealso:: :meth:`Create` , :ref:`Validator` **~~~** .. method:: Append(self, entry) Append an item to the list control. The entry parameter should be a sequence with an item for each column .. method:: AppendColumn(self, heading, format=LIST_FORMAT_LEFT, width=-1) Adds a new column to the list control in report view mode. This is just a convenient wrapper for :meth:`InsertColumn` which adds the new column after all the existing ones without having to specify its position explicitly. :param `heading`: :type `heading`: string :param `format`: :type `format`: int :param `width`: :type `width`: int :rtype: `long` .. versionadded:: 2.9.4 .. method:: Arrange(self, flag=LIST_ALIGN_DEFAULT) Arranges the items in icon or small icon view. This only has effect on Win32. `flag` is one of: - ``LIST_ALIGN_DEFAULT``: Default alignment. - ``LIST_ALIGN_LEFT``: Align to the left side of the control. - ``LIST_ALIGN_TOP``: Align to the top side of the control. - ``LIST_ALIGN_SNAP_TO_GRID``: Snap to grid. :param `flag`: :type `flag`: int :rtype: `bool` .. method:: AssignImageList(self, imageList, which) Sets the image list associated with the control and takes ownership of it (i.e. the control will, unlike when using :meth:`SetImageList` , delete the list when destroyed). `which` is one of ``IMAGE_LIST_NORMAL`` , ``IMAGE_LIST_SMALL`` , ``IMAGE_LIST_STATE`` (the last is unimplemented). :param `imageList`: :type `imageList`: ImageList :param `which`: :type `which`: int .. seealso:: :meth:`SetImageList` .. method:: ClearAll(self) Deletes all items and all columns. .. note:: This sends an event of type ``wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS`` under all platforms. .. method:: ClearColumnImage(self, col) .. method:: Create(self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=LC_ICON, validator=DefaultValidator, name=ListCtrlNameStr) Creates the list control. See :ref:`ListCtrl` for further details. :param `parent`: :type `parent`: Window :param `id`: :type `id`: int :param `pos`: :type `pos`: Point :param `size`: :type `size`: Size :param `style`: :type `style`: long :param `validator`: :type `validator`: Validator :param `name`: :type `name`: string :rtype: `bool` .. method:: DeleteAllItems(self) Deletes all items in the list control. This function does `not` send the ``wxEVT_COMMAND_LIST_DELETE_ITEM`` event because deleting many items from the control would be too slow then (unlike :meth:`ListCtrl.DeleteItem` ) but it does send the special ``wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS`` event if the control was not empty. If it was already empty, nothing is done and no event is sent. :rtype: `bool` :returns: ``True`` if the items were successfully deleted or if the control was already empty, ``False`` if an error occurred while deleting the items. .. method:: DeleteColumn(self, col) Deletes a column. :param `col`: :type `col`: int :rtype: `bool` .. method:: DeleteItem(self, item) Deletes the specified item. This function sends the ``wxEVT_COMMAND_LIST_DELETE_ITEM`` event for the item being deleted. :param `item`: :type `item`: long :rtype: `bool` .. seealso:: :meth:`DeleteAllItems` .. method:: EditLabel(self, item) Starts editing the label of the given item. This function generates a ``EVT_LIST_BEGIN_LABEL_EDIT`` event which can be vetoed so that no text control will appear for in-place editing. If the user changed the label (i.e. s/he does not press ``ESC`` or leave the text control without changes, a ``EVT_LIST_END_LABEL_EDIT`` event will be sent which can be vetoed as well. :param `item`: :type `item`: long :rtype: :ref:`TextCtrl` .. method:: EnsureVisible(self, item) Ensures this item is visible. :param `item`: :type `item`: long :rtype: `bool` .. method:: FindItem(self, *args, **kw) |overload| **Overloaded Implementations**: **~~~** **FindItem** `(self, start, str, partial=False)` Find an item whose label matches this string, starting from start or the beginning if start is ``-1`` . The string comparison is case insensitive. If `partial` is ``True`` then this method will look for items which begin with `str`. :param `start`: :type `start`: long :param `str`: :type `str`: string :param `partial`: :type `partial`: bool :rtype: `long` :returns: The next matching item if any or ``-1`` (``NOT_FOUND``) otherwise. **~~~** **FindItem** `(self, start, data)` Find an item whose data matches this data, starting from start or the beginning if 'start' is ``-1`` . :param `start`: :type `start`: long :param `data`: :type `data`: int :rtype: `long` :returns: The next matching item if any or ``-1`` (``NOT_FOUND``) otherwise. **~~~** **FindItem** `(self, start, pt, direction)` Find an item nearest this position in the specified direction, starting from `start` or the beginning if `start` is -1. :param `start`: :type `start`: long :param `pt`: :type `pt`: Point :param `direction`: :type `direction`: int :rtype: `long` :returns: The next matching item if any or ``-1`` (``NOT_FOUND``) otherwise. **~~~** .. method:: Focus(self, idx) Focus and show the given item .. method:: GetColumnCount(self) Returns the number of columns. :rtype: `int` .. method:: GetColumnIndexFromOrder(self, pos) Gets the column index from its position in visual order. After calling :meth:`SetColumnsOrder` , the index returned by this function corresponds to the value of the element number `pos` in the array returned by :meth:`GetColumnsOrder` . Please see :meth:`SetColumnsOrder` documentation for an example and additional remarks about the columns ordering. :param `pos`: :type `pos`: int :rtype: `int` .. seealso:: :meth:`GetColumnOrder` .. method:: GetColumnOrder(self, col) Gets the column visual order position. This function returns the index of the column which appears at the given visual position, e.g. calling it with `col` equal to 0 returns the index of the first shown column. Please see :meth:`SetColumnsOrder` documentation for an example and additional remarks about the columns ordering. :param `col`: :type `col`: int :rtype: `int` .. seealso:: :meth:`GetColumnsOrder` , :meth:`GetColumnIndexFromOrder` .. method:: GetColumnWidth(self, col) Gets the column width (report view only). :param `col`: :type `col`: int :rtype: `int` .. method:: GetColumnsOrder(self) Returns the array containing the orders of all columns. On error, an empty array is returned. Please see :meth:`SetColumnsOrder` documentation for an example and additional remarks about the columns ordering. :rtype: `list of integers` .. seealso:: :meth:`GetColumnOrder` , :meth:`GetColumnIndexFromOrder` .. method:: GetCountPerPage(self) Gets the number of items that can fit vertically in the visible area of the list control (list or report view) or the total number of items in the list control (icon or small icon view). :rtype: `int` .. method:: GetEditControl(self) Returns the edit control being currently used to edit a label. Returns ``None`` if no label is being edited. :rtype: :ref:`TextCtrl` .. note:: It is currently only implemented for wxMSW and the generic version, not for the native Mac OS X version. .. method:: GetFirstSelected(self, *args) return first selected item, or -1 when none .. method:: GetFocusedItem(self) get the currently focused item or -1 if none .. method:: GetImageList(self, which) Returns the specified image list. `which` may be one of: - ``IMAGE_LIST_NORMAL``: The normal (large icon) image list. - ``IMAGE_LIST_SMALL``: The small icon image list. - ``IMAGE_LIST_STATE``: The user-defined state image list (unimplemented). :param `which`: :type `which`: int :rtype: :ref:`ImageList` .. method:: GetItemBackgroundColour(self, item) Returns the colour for this item. If the item has no specific colour, returns an invalid colour (and not the default background control of the control itself). :param `item`: :type `item`: long :rtype: :ref:`Colour` .. seealso:: :meth:`GetItemTextColour` .. method:: GetItemCount(self) Returns the number of items in the list control. :rtype: `int` .. method:: GetItemData(self, item) Gets the application-defined data associated with this item. :param `item`: :type `item`: long :rtype: `int` .. method:: GetItemFont(self, item) Returns the item's font. :param `item`: :type `item`: long :rtype: :ref:`Font` .. method:: GetItemSpacing(self) Retrieves the spacing between icons in pixels: horizontal spacing is returned as ``x`` component of the :ref:`Size` object and the vertical spacing as its ``y`` component. :rtype: :ref:`Size` .. method:: GetItemState(self, item, stateMask) Gets the item state. For a list of state flags, see :meth:`SetItem` . The `stateMask` indicates which state flags are of interest. :param `item`: :type `item`: long :param `stateMask`: :type `stateMask`: long :rtype: `int` .. method:: GetItemText(self, item, col=0) Gets the item text for this item. :param `item`: Item (zero-based) index. :type `item`: long :param `col`: Item column (zero-based) index. Column 0 is the default. This parameter is new in wxWidgets 2.9.1. :type `col`: int :rtype: `string` .. method:: GetItemTextColour(self, item) Returns the colour for this item. If the item has no specific colour, returns an invalid colour (and not the default foreground control of the control itself as this wouldn't allow distinguishing between items having the same colour as the current control foreground and items with default colour which, hence, have always the same colour as the control). :param `item`: :type `item`: long :rtype: :ref:`Colour` .. method:: GetMainWindow(self) :rtype: :ref:`Window` .. method:: GetNextItem(self, item, geometry=LIST_NEXT_ALL, state=LIST_STATE_DONTCARE) Searches for an item with the given geometry or state, starting from `item` but excluding the `item` itself. If `item` is -1, the first item that matches the specified flags will be returned. Returns the first item with given state following `item` or -1 if no such item found. This function may be used to find all selected items in the control like this: :: item = -1 while 1: item = listctrl.GetNextItem(item, wx.LIST_NEXT_ALL, wx.LIST_STATE_SELECTED) if item == -1: break # This item is selected - do whatever is needed with it wx.LogMessage("Item %ld is selected"%item) `geometry` can be one of: - ``LIST_NEXT_ABOVE``: Searches for an item above the specified item. - ``LIST_NEXT_ALL``: Searches for subsequent item by index. - ``LIST_NEXT_BELOW``: Searches for an item below the specified item. - ``LIST_NEXT_LEFT``: Searches for an item to the left of the specified item. - ``LIST_NEXT_RIGHT``: Searches for an item to the right of the specified item. `state` can be a bitlist of the following: - ``LIST_STATE_DONTCARE``: Don't care what the state is. - ``LIST_STATE_DROPHILITED``: The item indicates it is a drop target. - ``LIST_STATE_FOCUSED``: The item has the focus. - ``LIST_STATE_SELECTED``: The item is selected. - ``LIST_STATE_CUT``: The item is selected as part of a cut and paste operation. :param `item`: :type `item`: long :param `geometry`: :type `geometry`: int :param `state`: :type `state`: int :rtype: `long` .. note:: this parameter is only supported by wxMSW currently and ignored on other platforms. .. method:: GetNextSelected(self, item) return subsequent selected items, or -1 when no more .. method:: GetSelectedItemCount(self) Returns the number of selected items in the list control. :rtype: `int` .. method:: GetSubItemRect(self, item, subItem, rect, code=LIST_RECT_BOUNDS) Returns the rectangle representing the size and position, in physical coordinates, of the given subitem, i.e. the part of the row `item` in the column `subItem`. This method is only meaningful when the :ref:`ListCtrl` is in the report mode. If `subItem` parameter is equal to the special value ``LIST_GETSUBITEMRECT_WHOLEITEM`` the return value is the same as for :meth:`GetItemRect` . `code` can be one of ``LIST_RECT_BOUNDS`` , ``LIST_RECT_ICON`` or ``LIST_RECT_LABEL`` . :param `item`: :type `item`: long :param `subItem`: :type `subItem`: long :param `rect`: :type `rect`: Rect :param `code`: :type `code`: int :rtype: `bool` .. versionadded:: 2.7.0 .. method:: GetTextColour(self) Gets the text colour of the list control. :rtype: :ref:`Colour` .. method:: GetTopItem(self) Gets the index of the topmost visible item when in list or report view. :rtype: `long` .. method:: GetViewRect(self) Returns the rectangle taken by all items in the control. In other words, if the controls client size were equal to the size of this rectangle, no scrollbars would be needed and no free space would be left. Note that this function only works in the icon and small icon views, not in list or report views (this is a limitation of the native Win32 control). :rtype: :ref:`Rect` .. method:: HasColumnOrderSupport(self) :rtype: `bool` .. method:: HitTest(self, point) Determines which item (if any) is at the specified point, giving details in `flags`. Returns index of the item or ``NOT_FOUND`` if no item is at the specified point. `flags` will be a combination of the following flags: - ``LIST_HITTEST_ABOVE``: Above the client area. - ``LIST_HITTEST_BELOW``: Below the client area. - ``LIST_HITTEST_NOWHERE``: In the client area but below the last item. - ``LIST_HITTEST_ONITEMICON``: On the bitmap associated with an item. - ``LIST_HITTEST_ONITEMLABEL``: On the label (string) associated with an item. - ``LIST_HITTEST_ONITEMRIGHT``: In the area to the right of an item. - ``LIST_HITTEST_ONITEMSTATEICON``: On the state icon for a tree view item that is in a user-defined state. - ``LIST_HITTEST_TOLEFT``: To the right of the client area. - ``LIST_HITTEST_TORIGHT``: To the left of the client area. - ``LIST_HITTEST_ONITEM``: Combination of ``LIST_HITTEST_ONITEMICON`` , ``LIST_HITTEST_ONITEMLABEL`` , ``LIST_HITTEST_ONITEMSTATEICON`` . If `ptrSubItem` is not ``None`` and the :ref:`ListCtrl` is in the report mode the subitem (or column) number will also be provided. This feature is only available in version 2.7.0 or higher and is currently only implemented under wxMSW and requires at least comctl32.dll of verion 4.70 on the host system or the value stored in `ptrSubItem` will be always -1. To compile this feature into wxWidgets library you need to have access to commctrl.h of version 4.70 that is provided by Microsoft. :param `point`: :type `point`: Point :rtype: `tuple` :returns: ( `long`, `flags`, `ptrSubItem` ) .. method:: InReportView(self) Returns ``True`` if the control is currently using ``LC_REPORT`` style. :rtype: `bool` .. method:: InsertColumn(self, *args, **kw) |overload| **Overloaded Implementations**: **~~~** **InsertColumn** `(self, col, info)` For report view mode (only), inserts a column. For more details, see :meth:`SetItem` . Also see InsertColumn(long, string, int, int) overload for a usually more convenient alternative to this method and the description of how the item width is interpreted by this method. :param `col`: :type `col`: long :param `info`: :type `info`: ListItem :rtype: `long` **~~~** **InsertColumn** `(self, col, heading, format=LIST_FORMAT_LEFT, width=LIST_AUTOSIZE)` For report view mode (only), inserts a column. Insert a new column in the list control in report view mode at the given position specifying its most common attributes. Notice that to set the image for the column you need to use Insert(long, ListItem) overload and specify ``LIST_MASK_IMAGE`` in the item mask. :param `col`: The index where the column should be inserted. Valid indices are from 0 up to :meth:`GetColumnCount` inclusive and the latter can be used to append the new column after the last existing one. :type `col`: long :param `heading`: The string specifying the column heading. :type `heading`: string :param `format`: The flags specifying the control heading text alignment. :type `format`: int :param `width`: If positive, the width of the column in pixels. Otherwise it can be ``LIST_AUTOSIZE`` to choose the default size for the column or ``LIST_AUTOSIZE_USEHEADER`` to fit the column width to `heading` or to extend to fill all the remaining space for the last column. Notice that in case of ``LIST_AUTOSIZE`` fixed width is used as there are no items in this column to use for determining its best size yet. If you want to fit the column to its contents, use :meth:`SetColumnWidth` after adding the items with values in this column. :type `width`: int :rtype: `long` :returns: The index of the inserted column or -1 if adding it failed. **~~~** .. method:: InsertItem(self, *args, **kw) |overload| **Overloaded Implementations**: **~~~** **InsertItem** `(self, info)` Inserts an item, returning the index of the new item if successful, -1 otherwise. :param `info`: :ref:`ListItem` object :type `info`: ListItem :rtype: `long` **~~~** **InsertItem** `(self, index, label)` Insert an string item. :param `index`: Index of the new item, supplied by the application :type `index`: long :param `label`: String label :type `label`: string :rtype: `long` **~~~** **InsertItem** `(self, index, imageIndex)` Insert an image item. :param `index`: Index of the new item, supplied by the application :type `index`: long :param `imageIndex`: Index into the image list associated with this control and view style :type `imageIndex`: int :rtype: `long` **~~~** **InsertItem** `(self, index, label, imageIndex)` Insert an image/string item. :param `index`: Index of the new item, supplied by the application :type `index`: long :param `label`: String label :type `label`: string :param `imageIndex`: Index into the image list associated with this control and view style :type `imageIndex`: int :rtype: `long` **~~~** .. method:: IsSelected(self, idx) return True if the item is selected .. method:: IsVirtual(self) Returns ``True`` if the control is currently in virtual report view. :rtype: `bool` .. method:: OnGetItemAttr(self, item) This function may be overridden in the derived class for a control with ``LC_VIRTUAL`` style. It should return the attribute for the specified ``item`` or ``None`` to use the default appearance parameters. :ref:`ListCtrl` will not delete the pointer or keep a reference of it. You can return the same :ref:`ListItemAttr` pointer for every :meth:`OnGetItemAttr` call. The base class version always returns ``None``. :param `item`: :type `item`: long :rtype: :ref:`ListItemAttr` .. seealso:: :meth:`OnGetItemImage` , :meth:`OnGetItemColumnImage` , :meth:`OnGetItemText` , :meth:`OnGetItemColumnAttr` .. method:: OnGetItemColumnImage(self, item, column) Override this function in the derived class for a control with ``LC_VIRTUAL`` and ``LC_REPORT`` styles in order to specify the image index for the given line and column. The base class version always calls :meth:`OnGetItemImage` for the first column, else it returns -1. :param `item`: :type `item`: long :param `column`: :type `column`: long :rtype: `int` .. seealso:: :meth:`OnGetItemText` , :meth:`OnGetItemImage` , :meth:`OnGetItemAttr` , :meth:`OnGetItemColumnAttr` .. method:: OnGetItemImage(self, item) This function must be overridden in the derived class for a control with ``LC_VIRTUAL`` style having an "image list" (see :meth:`SetImageList` ; if the control doesn't have an image list, it is not necessary to override it). It should return the index of the items image in the controls image list or -1 for no image. In a control with ``LC_REPORT`` style, :meth:`OnGetItemImage` only gets called for the first column of each line. The base class version always returns -1. :param `item`: :type `item`: long :rtype: `int` .. seealso:: :meth:`OnGetItemText` , :meth:`OnGetItemColumnImage` , :meth:`OnGetItemAttr` .. method:: OnGetItemText(self, item, column) This function **must** be overridden in the derived class for a control with ``LC_VIRTUAL`` style. It should return the string containing the text of the given `column` for the specified ``item`` . :param `item`: :type `item`: long :param `column`: :type `column`: long :rtype: `string` .. seealso:: :meth:`SetItemCount` , :meth:`OnGetItemImage` , :meth:`OnGetItemColumnImage` , :meth:`OnGetItemAttr` .. method:: RefreshItem(self, item) Redraws the given `item`. This is only useful for the virtual list controls as without calling this function the displayed value of the item doesn't change even when the underlying data does change. :param `item`: :type `item`: long .. seealso:: :meth:`RefreshItems` .. method:: RefreshItems(self, itemFrom, itemTo) Redraws the items between `itemFrom` and `itemTo`. The starting item must be less than or equal to the ending one. Just as :meth:`RefreshItem` this is only useful for virtual list controls. :param `itemFrom`: :type `itemFrom`: long :param `itemTo`: :type `itemTo`: long .. method:: ScrollList(self, dx, dy) Scrolls the list control. If in icon, small icon or report view mode, `dx` specifies the number of pixels to scroll. If in list view mode, `dx` specifies the number of columns to scroll. `dy` always specifies the number of pixels to scroll vertically. :param `dx`: :type `dx`: int :param `dy`: :type `dy`: int :rtype: `bool` .. note:: This method is currently only implemented in the Windows version. .. method:: Select(self, idx, on=1) [de]select an item .. method:: SetBackgroundColour(self, col) Sets the background colour. Note that the :meth:`Window.GetBackgroundColour` function of :ref:`Window` base class can be used to retrieve the current background colour. :param `col`: :type `col`: Colour :rtype: `bool` .. method:: SetColumn(self, col, item) Sets information about this column. See :meth:`SetItem` for more information. :param `col`: :type `col`: int :param `item`: :type `item`: ListItem :rtype: `bool` .. method:: SetColumnImage(self, col, image) .. method:: SetColumnWidth(self, col, width) Sets the column width. `width` can be a width in pixels or ``LIST_AUTOSIZE`` (-1) or ``LIST_AUTOSIZE_USEHEADER`` (-2). ``LIST_AUTOSIZE`` will resize the column to the length of its longest item. ``LIST_AUTOSIZE_USEHEADER`` will resize the column to the length of the header (Win32) or 80 pixels (other platforms). In small or normal icon view, `col` must be -1, and the column width is set for all columns. :param `col`: :type `col`: int :param `width`: :type `width`: int :rtype: `bool` .. method:: SetColumnsOrder(self, orders) Changes the order in which the columns are shown. By default, the columns of a list control appear on the screen in order of their indices, i.e. the column 0 appears first, the column 1 next and so on. However by using this function it is possible to arbitrarily reorder the columns visual order and the user can also rearrange the columns interactively by dragging them. In this case, the index of the column is not the same as its order and the functions :meth:`GetColumnOrder` and :meth:`GetColumnIndexFromOrder` should be used to translate between them. Notice that all the other functions still work with the column indices, i.e. the visual positioning of the columns on screen doesn't affect the code setting or getting their values for example. The `orders` array must have the same number elements as the number of columns and contain each position exactly once. Its n-th element contains the index of the column to be shown in n-th position, so for a control with three columns passing an array with elements 2, 0 and 1 results in the third column being displayed first, the first one next and the second one last. Example of using it: :: listCtrl = wx.ListCtrl(parent, style=wx.LC_REPORT) for i in range(3): listCtrl.InsertColumn(i, "Column %d"%i) order = [2, 0, 1] listCtrl.SetColumnsOrder(order) # now listCtrl.GetColumnsOrder() will return order and # listCtrl.GetColumnIndexFromOrder(n) will return order[n] and # listCtrl.GetColumnOrder() will return 1, 2 and 0 for the column 0, # 1 and 2 respectively Please notice that this function makes sense for report view only and currently is only implemented in wxMSW port. To avoid explicit tests for ``__WXMSW__`` in your code, please use ``HAS_LISTCTRL_COLUMN_ORDER`` as this will allow it to start working under the other platforms when support for the column reordering is added there. :param `orders`: :type `orders`: list of integers :rtype: `bool` .. seealso:: :meth:`GetColumnsOrder` .. method:: SetImageList(self, imageList, which) Sets the image list associated with the control. `which` is one of ``IMAGE_LIST_NORMAL`` , ``IMAGE_LIST_SMALL`` , ``IMAGE_LIST_STATE`` (the last is unimplemented). This method does not take ownership of the image list, you have to delete it yourself. :param `imageList`: :type `imageList`: ImageList :param `which`: :type `which`: int .. seealso:: :meth:`AssignImageList` .. method:: SetItem(self, *args, **kw) |overload| **Overloaded Implementations**: **~~~** **SetItem** `(self, info)` Sets the data of an item. Using the ListItem's mask and state mask, you can change only selected attributes of a :ref:`ListCtrl` item. :param `info`: :type `info`: ListItem :rtype: `bool` **~~~** **SetItem** `(self, index, column, label, imageId=-1)` Sets an item string field at a particular column. :param `index`: :type `index`: long :param `column`: :type `column`: int :param `label`: :type `label`: string :param `imageId`: :type `imageId`: int :rtype: `long` **~~~** .. method:: SetItemBackgroundColour(self, item, col) Sets the background colour for this item. This function only works in report view mode. The colour can be retrieved using :meth:`GetItemBackgroundColour` . :param `item`: :type `item`: long :param `col`: :type `col`: Colour .. method:: SetItemColumnImage(self, item, column, image) Sets the image associated with the item. In report view, you can specify the column. The image is an index into the image list associated with the list control. :param `item`: :type `item`: long :param `column`: :type `column`: long :param `image`: :type `image`: int :rtype: `bool` .. method:: SetItemCount(self, count) This method can only be used with virtual list controls. It is used to indicate to the control the number of items it contains. After calling it, the main program should be ready to handle calls to various item callbacks (such as :meth:`ListCtrl.OnGetItemText` ) for all items in the range from 0 to `count`. Notice that the control is not necessarily redrawn after this call as it may be undesirable if an item which is not visible on the screen anyhow was added to or removed from a control displaying many items, if you do need to refresh the display you can just call :meth:`Refresh` manually. :param `count`: :type `count`: long .. method:: SetItemData(self, item, data) Associates application-defined data with this item. Notice that this function cannot be used to associate pointers with the control items, use :meth:`SetItemPtrData` instead. :param `item`: :type `item`: long :param `data`: :type `data`: long :rtype: `bool` .. method:: SetItemFont(self, item, font) Sets the item's font. :param `item`: :type `item`: long :param `font`: :type `font`: Font .. method:: SetItemImage(self, item, image, selImage=-1) Sets the unselected and selected images associated with the item. The images are indices into the image list associated with the list control. :param `item`: :type `item`: long :param `image`: :type `image`: int :param `selImage`: :type `selImage`: int :rtype: `bool` .. method:: SetItemPosition(self, item, pos) Sets the position of the item, in icon or small icon view. Windows only. :param `item`: :type `item`: long :param `pos`: :type `pos`: Point :rtype: `bool` .. method:: SetItemPtrData(self, item, data) Associates application-defined data with this item. The `data` parameter may be either an integer or a pointer cast to the ``UIntPtr`` type which is guaranteed to be large enough to be able to contain all integer types and pointers. :param `item`: :type `item`: long :param `data`: :type `data`: int :rtype: `bool` .. versionadded:: 2.8.4 .. method:: SetItemState(self, item, state, stateMask) Sets the item state. The `stateMask` is a combination of ``LIST_STATE_XXX`` constants described in :ref:`ListItem` documentation. For each of the bits specified in `stateMask`, the corresponding state is set or cleared depending on whether `state` argument contains the same bit or not. So to select an item you can use :: listCtrl.SetItemState(item, wx.LIST_STATE_SELECTED, wx.LIST_STATE_SELECTED) while to deselect it you should use :: listCtrl.SetItemState(item, 0, wx.LIST_STATE_SELECTED) Consider using :ref:`ListView` if possible to avoid dealing with this error-prone and confusing method. :param `item`: :type `item`: long :param `state`: :type `state`: long :param `stateMask`: :type `stateMask`: long :rtype: `bool` .. method:: SetItemText(self, item, text) Sets the item text for this item. :param `item`: :type `item`: long :param `text`: :type `text`: string .. method:: SetItemTextColour(self, item, col) Sets the colour for this item. This function only works in report view. The colour can be retrieved using :meth:`GetItemTextColour` . :param `item`: :type `item`: long :param `col`: :type `col`: Colour .. method:: SetSingleStyle(self, style, add=True) Adds or removes a single window style. :param `style`: :type `style`: long :param `add`: :type `add`: bool .. method:: SetTextColour(self, col) Sets the text colour of the list control. :param `col`: :type `col`: Colour .. method:: SetWindowStyleFlag(self, style) Sets the whole window style, deleting all items. :param `style`: :type `style`: long .. method:: SortItems(self, fnSortCallBack) Call this function to sort the items in the list control. Sorting is done using the specified `fnSortCallBack` function. This function must have the following prototype: :: def ListCompareFunction(self, item1, item2): pass It is called each time when the two items must be compared and should return 0 if the items are equal, negative value if the first item is less than the second one and positive value if the first one is greater than the second one (the same convention as used by ``qsort(3)`` ). The parameter `item1` is the client data associated with the first item (``NOT`` the index). The parameter `item2` is the client data associated with the second item (``NOT`` the index). The parameter `data` is the value passed to :meth:`SortItems` itself. Notice that the control may only be sorted on client data associated with the items, so you must use SetItemData if you want to be able to sort the items in the control. Please see the for an example of using this function. :param `fnSortCallBack`: :type `fnSortCallBack`: PyObject :rtype: `bool` .. attribute:: Column See :meth:`~ListCtrl.GetColumn` and :meth:`~ListCtrl.SetColumn` .. attribute:: ColumnCount See :meth:`~ListCtrl.GetColumnCount` .. attribute:: ColumnsOrder See :meth:`~ListCtrl.GetColumnsOrder` and :meth:`~ListCtrl.SetColumnsOrder` .. attribute:: CountPerPage See :meth:`~ListCtrl.GetCountPerPage` .. attribute:: EditControl See :meth:`~ListCtrl.GetEditControl` .. attribute:: FocusedItem See :meth:`~ListCtrl.GetFocusedItem` .. attribute:: Item See :meth:`~ListCtrl.GetItem` and :meth:`~ListCtrl.SetItem` .. attribute:: ItemCount See :meth:`~ListCtrl.GetItemCount` and :meth:`~ListCtrl.SetItemCount` .. attribute:: ItemPosition See :meth:`~ListCtrl.GetItemPosition` and :meth:`~ListCtrl.SetItemPosition` .. attribute:: ItemRect See :meth:`~ListCtrl.GetItemRect` .. attribute:: ItemSpacing See :meth:`~ListCtrl.GetItemSpacing` .. attribute:: MainWindow See :meth:`~ListCtrl.GetMainWindow` .. attribute:: SelectedItemCount See :meth:`~ListCtrl.GetSelectedItemCount` .. attribute:: TextColour See :meth:`~ListCtrl.GetTextColour` and :meth:`~ListCtrl.SetTextColour` .. attribute:: TopItem See :meth:`~ListCtrl.GetTopItem` .. attribute:: ViewRect See :meth:`~ListCtrl.GetViewRect`