#include </home/zeitlin/src/wx/github/interface/wx/listctrl.h>
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 wxListCtrl::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 wxListCtrl::SetItemCount first and override at least wxListCtrl::OnGetItemText (and optionally wxListCtrl::OnGetItemImage or wxListCtrl::OnGetItemColumnImage and wxListCtrl::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 wxListCtrl features is shown in the corresponding sample.
To intercept events from a list control, use the event table macros described in wxListEvent.
wxMac Note: Starting with wxWidgets 2.8, wxListCtrl 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 wxSystemOptions) to 1.
This class supports the following styles:
wxLC_REPORT
. In other words, the list wraps, unlike a wxListBox. wxLC_REPORT
. The following event handler macros redirect the events to member function handlers 'func' with prototypes like:
Event macros for events emitted by this class:
wxEVT_COMMAND_LIST_BEGIN_DRAG
event type. wxEVT_COMMAND_LIST_BEGIN_RDRAG
event type. wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT
event type. wxEVT_COMMAND_LIST_END_LABEL_EDIT
event type. wxEVT_COMMAND_LIST_DELETE_ITEM
event type. wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
event type. wxEVT_COMMAND_LIST_ITEM_SELECTED
event type. wxEVT_COMMAND_LIST_ITEM_DESELECTED
event type. wxEVT_COMMAND_LIST_ITEM_ACTIVATED
event type. wxEVT_COMMAND_LIST_ITEM_FOCUSED
event type. wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK
event type. wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
event type. wxEVT_COMMAND_LIST_KEY_DOWN
event type. wxEVT_COMMAND_LIST_INSERT_ITEM
event type. wxEVT_COMMAND_LIST_COL_CLICK
event type. wxEVT_COMMAND_LIST_COL_RIGHT_CLICK
event type. wxEVT_COMMAND_LIST_COL_BEGIN_DRAG
event type. wxEVT_COMMAND_LIST_COL_DRAGGING
event type. wxEVT_COMMAND_LIST_COL_END_DRAG
event type. wxEVT_COMMAND_LIST_CACHE_HINT
event type. wxMSW appearance | wxGTK appearance | wxMac appearance |
Public Member Functions | |
wxListCtrl () | |
Default constructor. | |
wxListCtrl (wxWindow *parent, wxWindowID id, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxLC_ICON, const wxValidator &validator=wxDefaultValidator, const wxString &name=wxListCtrlNameStr) | |
Constructor, creating and showing a list control. | |
virtual | ~wxListCtrl () |
Destructor, destroying the list control. | |
long | AppendColumn (const wxString &heading, int format=wxLIST_FORMAT_LEFT, int width=-1) |
Adds a new column to the list control in report view mode. | |
bool | Arrange (int flag=wxLIST_ALIGN_DEFAULT) |
Arranges the items in icon or small icon view. | |
void | AssignImageList (wxImageList *imageList, int which) |
Sets the image list associated with the control and takes ownership of it (i.e. | |
void | ClearAll () |
Deletes all items and all columns. | |
bool | Create (wxWindow *parent, wxWindowID id, const wxPoint &pos=wxDefaultPosition, const wxSize &size=wxDefaultSize, long style=wxLC_ICON, const wxValidator &validator=wxDefaultValidator, const wxString &name=wxListCtrlNameStr) |
Creates the list control. | |
bool | DeleteAllItems () |
Deletes all items in the list control. | |
bool | DeleteColumn (int col) |
Deletes a column. | |
bool | DeleteItem (long item) |
指定された項目を削除します。 | |
wxTextCtrl * | EditLabel (long item, wxClassInfo *textControlClass=wxCLASSINFO(wxTextCtrl)) |
指定された項目のラベル編集を開始します。 | |
bool | EndEditLabel (bool cancel) |
Finish editing the label. | |
bool | EnsureVisible (long item) |
Ensures this item is visible. | |
long | FindItem (long start, const wxString &str, bool partial=false) |
Find an item whose label matches this string, starting from start or the beginning if start is -1 . | |
long | FindItem (long start, wxUIntPtr data) |
Find an item whose data matches this data, starting from start or the beginning if 'start' is -1 . | |
long | FindItem (long start, const wxPoint &pt, int direction) |
Find an item nearest this position in the specified direction, starting from start or the beginning if start is -1. | |
bool | GetColumn (int col, wxListItem &item) const |
Gets information about this column. | |
int | GetColumnCount () const |
Returns the number of columns. | |
int | GetColumnIndexFromOrder (int pos) const |
Gets the column index from its position in visual order. | |
int | GetColumnOrder (int col) const |
Gets the column visual order position. | |
int | GetColumnWidth (int col) const |
Gets the column width (report view only). | |
wxArrayInt | GetColumnsOrder () const |
Returns the array containing the orders of all columns. | |
int | GetCountPerPage () const |
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). | |
wxTextCtrl * | GetEditControl () const |
Returns the edit control being currently used to edit a label. | |
wxImageList * | GetImageList (int which) const |
Returns the specified image list. | |
bool | GetItem (wxListItem &info) const |
Gets information about the item. | |
wxColour | GetItemBackgroundColour (long item) const |
Returns the colour for this item. | |
int | GetItemCount () const |
Returns the number of items in the list control. | |
wxUIntPtr | GetItemData (long item) const |
Gets the application-defined data associated with this item. | |
wxFont | GetItemFont (long item) const |
Returns the item's font. | |
bool | GetItemPosition (long item, wxPoint &pos) const |
Returns the position of the item, in icon or small icon view. | |
bool | GetItemRect (long item, wxRect &rect, int code=wxLIST_RECT_BOUNDS) const |
Returns the rectangle representing the item's size and position, in physical coordinates. | |
wxSize | GetItemSpacing () const |
Retrieves the spacing between icons in pixels: horizontal spacing is returned as x component of the wxSize object and the vertical spacing as its y component. | |
int | GetItemState (long item, long stateMask) const |
Gets the item state. | |
wxString | GetItemText (long item, int col=0) const |
Gets the item text for this item. | |
wxColour | GetItemTextColour (long item) const |
Returns the colour for this item. | |
long | GetNextItem (long item, int geometry=wxLIST_NEXT_ALL, int state=wxLIST_STATE_DONTCARE) const |
Searches for an item with the given geometry or state, starting from item but excluding the item itself. | |
int | GetSelectedItemCount () const |
Returns the number of selected items in the list control. | |
bool | GetSubItemRect (long item, long subItem, wxRect &rect, int code=wxLIST_RECT_BOUNDS) const |
Returns the rectangle representing the size and position, in physical coordinates, of the given subitem, i.e. | |
wxColour | GetTextColour () const |
Gets the text colour of the list control. | |
long | GetTopItem () const |
Gets the index of the topmost visible item when in list or report view. | |
wxRect | GetViewRect () const |
Returns the rectangle taken by all items in the control. | |
long | HitTest (const wxPoint &point, int &flags, long *ptrSubItem=NULL) const |
Determines which item (if any) is at the specified point, giving details in flags. | |
bool | InReportView () const |
Returns true if the control is currently using wxLC_REPORT style. | |
long | InsertColumn (long col, const wxListItem &info) |
For report view mode (only), inserts a column. | |
long | InsertColumn (long col, const wxString &heading, int format=wxLIST_FORMAT_LEFT, int width=wxLIST_AUTOSIZE) |
For report view mode (only), inserts a column. | |
long | InsertItem (wxListItem &info) |
Inserts an item, returning the index of the new item if successful, -1 otherwise. | |
long | InsertItem (long index, const wxString &label) |
Insert an string item. | |
long | InsertItem (long index, int imageIndex) |
Insert an image item. | |
long | InsertItem (long index, const wxString &label, int imageIndex) |
Insert an image/string item. | |
bool | IsVirtual () const |
Returns true if the control is currently in virtual report view. | |
void | RefreshItem (long item) |
Redraws the given item. | |
void | RefreshItems (long itemFrom, long itemTo) |
Redraws the items between itemFrom and itemTo. | |
bool | ScrollList (int dx, int dy) |
Scrolls the list control. | |
virtual bool | SetBackgroundColour (const wxColour &col) |
Sets the background colour. | |
bool | SetColumn (int col, wxListItem &item) |
Sets information about this column. | |
bool | SetColumnWidth (int col, int width) |
Sets the column width. | |
bool | SetColumnsOrder (const wxArrayInt &orders) |
Changes the order in which the columns are shown. | |
void | SetImageList (wxImageList *imageList, int which) |
Sets the image list associated with the control. | |
bool | SetItem (wxListItem &info) |
Sets the data of an item. | |
long | SetItem (long index, int column, const wxString &label, int imageId=-1) |
Sets an item string field at a particular column. | |
void | SetItemBackgroundColour (long item, const wxColour &col) |
Sets the background colour for this item. | |
bool | SetItemColumnImage (long item, long column, int image) |
Sets the image associated with the item. | |
void | SetItemCount (long count) |
This method can only be used with virtual list controls. | |
bool | SetItemData (long item, long data) |
Associates application-defined data with this item. | |
void | SetItemFont (long item, const wxFont &font) |
Sets the item's font. | |
bool | SetItemImage (long item, int image, int selImage=-1) |
Sets the unselected and selected images associated with the item. | |
bool | SetItemPosition (long item, const wxPoint &pos) |
Sets the position of the item, in icon or small icon view. | |
bool | SetItemPtrData (long item, wxUIntPtr data) |
Associates application-defined data with this item. | |
bool | SetItemState (long item, long state, long stateMask) |
Sets the item state. | |
void | SetItemText (long item, const wxString &text) |
Sets the item text for this item. | |
void | SetItemTextColour (long item, const wxColour &col) |
Sets the colour for this item. | |
void | SetSingleStyle (long style, bool add=true) |
Adds or removes a single window style. | |
void | SetTextColour (const wxColour &col) |
Sets the text colour of the list control. | |
void | SetWindowStyleFlag (long style) |
Sets the whole window style, deleting all items. | |
bool | SortItems (wxListCtrlCompare fnSortCallBack, wxIntPtr data) |
Call this function to sort the items in the list control. | |
Protected Member Functions | |
virtual wxListItemAttr * | OnGetItemAttr (long item) const |
This function may be overridden in the derived class for a control with wxLC_VIRTUAL style. | |
virtual wxListItemAttr * | OnGetItemColumnAttr (long item, long column) const |
This function may be overridden in the derived class for a control with wxLC_VIRTUAL style. | |
virtual int | OnGetItemColumnImage (long item, long column) const |
Override this function in the derived class for a control with wxLC_VIRTUAL and wxLC_REPORT styles in order to specify the image index for the given line and column. | |
virtual int | OnGetItemImage (long item) const |
This function must be overridden in the derived class for a control with wxLC_VIRTUAL style having an "image list" (see SetImageList(); if the control doesn't have an image list, it is not necessary to override it). | |
virtual wxString | OnGetItemText (long item, long column) const |
This function must be overridden in the derived class for a control with wxLC_VIRTUAL style. |
wxListCtrl::wxListCtrl | ( | ) |
Default constructor.
wxListCtrl::wxListCtrl | ( | wxWindow * | parent, |
wxWindowID | id, | ||
const wxPoint & | pos = wxDefaultPosition , |
||
const wxSize & | size = wxDefaultSize , |
||
long | style = wxLC_ICON , |
||
const wxValidator & | validator = wxDefaultValidator , |
||
const wxString & | name = wxListCtrlNameStr |
||
) |
Constructor, creating and showing a list control.
parent | Parent window. Must not be NULL. |
id | Window identifier. The value wxID_ANY indicates a default value. |
pos | Window position. If wxDefaultPosition is specified then a default position is chosen. |
size | Window size. If wxDefaultSize is specified then the window is sized appropriately. |
style | Window style. See wxListCtrl. |
validator | Window validator. |
name | Window name. |
virtual wxListCtrl::~wxListCtrl | ( | ) | [virtual] |
Destructor, destroying the list control.
long wxListCtrl::AppendColumn | ( | const wxString & | heading, |
int | format = wxLIST_FORMAT_LEFT , |
||
int | width = -1 |
||
) |
Adds a new column to the list control in report view mode.
This is just a convenient wrapper for InsertColumn() which adds the new column after all the existing ones without having to specify its position explicitly.
bool wxListCtrl::Arrange | ( | int | flag = wxLIST_ALIGN_DEFAULT | ) |
Arranges the items in icon or small icon view.
This only has effect on Win32. flag is one of:
void wxListCtrl::AssignImageList | ( | wxImageList * | imageList, |
int | which | ||
) |
Sets the image list associated with the control and takes ownership of it (i.e.
the control will, unlike when using SetImageList(), delete the list when destroyed). which is one of wxIMAGE_LIST_NORMAL
, wxIMAGE_LIST_SMALL
, wxIMAGE_LIST_STATE
(the last is unimplemented).
void wxListCtrl::ClearAll | ( | ) |
Deletes all items and all columns.
wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS
under all platforms. bool wxListCtrl::Create | ( | wxWindow * | parent, |
wxWindowID | id, | ||
const wxPoint & | pos = wxDefaultPosition , |
||
const wxSize & | size = wxDefaultSize , |
||
long | style = wxLC_ICON , |
||
const wxValidator & | validator = wxDefaultValidator , |
||
const wxString & | name = wxListCtrlNameStr |
||
) |
bool wxListCtrl::DeleteAllItems | ( | ) |
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 wxListCtrl::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.
bool wxListCtrl::DeleteColumn | ( | int | col | ) |
Deletes a column.
bool wxListCtrl::DeleteItem | ( | long | item | ) |
指定された項目を削除します。
This function sends the wxEVT_COMMAND_LIST_DELETE_ITEM
event for the item being deleted.
wxTextCtrl* wxListCtrl::EditLabel | ( | long | item, |
wxClassInfo * | textControlClass = wxCLASSINFO(wxTextCtrl) |
||
) |
指定された項目のラベル編集を開始します。
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.
bool wxListCtrl::EndEditLabel | ( | bool | cancel | ) |
Finish editing the label.
This method allows to programmatically end editing a list control item in place. Usually it will only be called when editing is in progress, i.e. if GetEditControl() returns non-NULL. In particular, do not call it from EVT_LIST_BEGIN_LABEL_EDIT handler as the edit control is not yet fully created by then, just veto the event in this handler instead to prevent the editing from even starting.
Notice that calling this method will result in EVT_LIST_END_LABEL_EDIT event being generated.
Currently only implemented in wxMSW.
cancel | If true, discard the changes made by user, as if Escape key was pressed. Otherwise, accept the changes as if Return was pressed. |
bool wxListCtrl::EnsureVisible | ( | long | item | ) |
Ensures this item is visible.
long wxListCtrl::FindItem | ( | long | start, |
const wxString & | str, | ||
bool | 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.
-1
(wxNOT_FOUND) otherwise. long wxListCtrl::FindItem | ( | long | start, |
wxUIntPtr | data | ||
) |
Find an item whose data matches this data, starting from start or the beginning if 'start' is -1
.
wxPerl Note: In wxPerl this method is implemented as FindItemData(start, data).
-1
(wxNOT_FOUND) otherwise. long wxListCtrl::FindItem | ( | long | start, |
const wxPoint & | pt, | ||
int | direction | ||
) |
Find an item nearest this position in the specified direction, starting from start or the beginning if start is -1.
wxPerl Note: In wxPerl this method is implemented as FindItemAtPos(start, pt, direction).
-1
(wxNOT_FOUND) otherwise. bool wxListCtrl::GetColumn | ( | int | col, |
wxListItem & | item | ||
) | const |
Gets information about this column.
See SetItem() for more information.
wxPerl Note: In wxPerl this method takes only the col parameter and returns a Wx::ListItem
(or undef
).
int wxListCtrl::GetColumnCount | ( | ) | const |
Returns the number of columns.
int wxListCtrl::GetColumnIndexFromOrder | ( | int | pos | ) | const |
Gets the column index from its position in visual order.
After calling SetColumnsOrder(), the index returned by this function corresponds to the value of the element number pos in the array returned by GetColumnsOrder().
Please see SetColumnsOrder() documentation for an example and additional remarks about the columns ordering.
int wxListCtrl::GetColumnOrder | ( | int | col | ) | const |
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 SetColumnsOrder() documentation for an example and additional remarks about the columns ordering.
wxArrayInt wxListCtrl::GetColumnsOrder | ( | ) | const |
Returns the array containing the orders of all columns.
On error, an empty array is returned.
Please see SetColumnsOrder() documentation for an example and additional remarks about the columns ordering.
int wxListCtrl::GetColumnWidth | ( | int | col | ) | const |
Gets the column width (report view only).
int wxListCtrl::GetCountPerPage | ( | ) | const |
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).
wxTextCtrl* wxListCtrl::GetEditControl | ( | ) | const |
Returns the edit control being currently used to edit a label.
Returns NULL if no label is being edited.
wxImageList* wxListCtrl::GetImageList | ( | int | which | ) | const |
Returns the specified image list.
which may be one of:
bool wxListCtrl::GetItem | ( | wxListItem & | info | ) | const |
Gets information about the item.
See SetItem() for more information.
You must call info.SetId() to set the ID of item you're interested in before calling this method, and info.SetMask() with the flags indicating what fields you need to retrieve from info.
wxPerl Note: In wxPerl this method takes as parameter the ID of the item and (optionally) the column, and returns a Wx::ListItem object.
wxColour wxListCtrl::GetItemBackgroundColour | ( | long | item | ) | const |
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).
int wxListCtrl::GetItemCount | ( | ) | const |
Returns the number of items in the list control.
wxUIntPtr wxListCtrl::GetItemData | ( | long | item | ) | const |
Gets the application-defined data associated with this item.
wxFont wxListCtrl::GetItemFont | ( | long | item | ) | const |
Returns the item's font.
bool wxListCtrl::GetItemPosition | ( | long | item, |
wxPoint & | pos | ||
) | const |
Returns the position of the item, in icon or small icon view.
wxPerl Note: In wxPerl this method takes only the item parameter and returns a Wx::Point
(or undef
).
bool wxListCtrl::GetItemRect | ( | long | item, |
wxRect & | rect, | ||
int | code = wxLIST_RECT_BOUNDS |
||
) | const |
Returns the rectangle representing the item's size and position, in physical coordinates.
code is one of wxLIST_RECT_BOUNDS, wxLIST_RECT_ICON, wxLIST_RECT_LABEL.
wxPerl Note: In wxPerl this method takes only the item and code parameters and returns a Wx::Rect
(or undef
).
wxSize wxListCtrl::GetItemSpacing | ( | ) | const |
Retrieves the spacing between icons in pixels: horizontal spacing is returned as x
component of the wxSize object and the vertical spacing as its y
component.
int wxListCtrl::GetItemState | ( | long | item, |
long | stateMask | ||
) | const |
Gets the item state.
For a list of state flags, see SetItem(). The stateMask indicates which state flags are of interest.
wxString wxListCtrl::GetItemText | ( | long | item, |
int | col = 0 |
||
) | const |
Gets the item text for this item.
item | Item (zero-based) index. |
col | Item column (zero-based) index. Column 0 is the default. This parameter is new in wxWidgets 2.9.1. |
wxColour wxListCtrl::GetItemTextColour | ( | long | item | ) | const |
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).
long wxListCtrl::GetNextItem | ( | long | item, |
int | geometry = wxLIST_NEXT_ALL , |
||
int | state = wxLIST_STATE_DONTCARE |
||
) | const |
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:
long item = -1; for ( ;; ) { item = listctrl->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); if ( item == -1 ) break; // this item is selected - do whatever is needed with it wxLogMessage("Item %ld is selected.", item); }
geometry can be one of:
state can be a bitlist of the following:
int wxListCtrl::GetSelectedItemCount | ( | ) | const |
Returns the number of selected items in the list control.
bool wxListCtrl::GetSubItemRect | ( | long | item, |
long | subItem, | ||
wxRect & | rect, | ||
int | code = wxLIST_RECT_BOUNDS |
||
) | const |
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 wxListCtrl is in the report mode. If subItem parameter is equal to the special value wxLIST_GETSUBITEMRECT_WHOLEITEM
the return value is the same as for GetItemRect().
code can be one of wxLIST_RECT_BOUNDS
, wxLIST_RECT_ICON
or wxLIST_RECT_LABEL
.
wxColour wxListCtrl::GetTextColour | ( | ) | const |
Gets the text colour of the list control.
long wxListCtrl::GetTopItem | ( | ) | const |
Gets the index of the topmost visible item when in list or report view.
wxRect wxListCtrl::GetViewRect | ( | ) | const |
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).
long wxListCtrl::HitTest | ( | const wxPoint & | point, |
int & | flags, | ||
long * | ptrSubItem = NULL |
||
) | const |
Determines which item (if any) is at the specified point, giving details in flags.
Returns index of the item or wxNOT_FOUND
if no item is at the specified point.
flags will be a combination of the following flags:
wxLIST_HITTEST_ONITEMICON
, wxLIST_HITTEST_ONITEMLABEL
, wxLIST_HITTEST_ONITEMSTATEICON
.If ptrSubItem is not NULL and the wxListCtrl 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.
wxPerl Note: In wxPerl this method only takes the point parameter and returns a 2-element list (item, flags).
bool wxListCtrl::InReportView | ( | ) | const |
Returns true if the control is currently using wxLC_REPORT style.
long wxListCtrl::InsertColumn | ( | long | col, |
const wxListItem & | info | ||
) |
long wxListCtrl::InsertColumn | ( | long | col, |
const wxString & | heading, | ||
int | format = wxLIST_FORMAT_LEFT , |
||
int | width = wxLIST_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, const wxListItem&) overload and specify wxLIST_MASK_IMAGE in the item mask.
col | The index where the column should be inserted. Valid indices are from 0 up to GetColumnCount() inclusive and the latter can be used to append the new column after the last existing one. |
heading | The string specifying the column heading. |
format | The flags specifying the control heading text alignment. |
width | If positive, the width of the column in pixels. Otherwise it can be wxLIST_AUTOSIZE to choose the default size for the column or wxLIST_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 wxLIST_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 SetColumnWidth() after adding the items with values in this column. |
long wxListCtrl::InsertItem | ( | long | index, |
int | imageIndex | ||
) |
Insert an image item.
index | Index of the new item, supplied by the application |
imageIndex | Index into the image list associated with this control and view style |
wxPerl Note: In wxPerl this method is implemented as InsertImageItem(index, imageIndex).
long wxListCtrl::InsertItem | ( | wxListItem & | info | ) |
Inserts an item, returning the index of the new item if successful, -1 otherwise.
info | wxListItem object |
long wxListCtrl::InsertItem | ( | long | index, |
const wxString & | label | ||
) |
Insert an string item.
index | Index of the new item, supplied by the application |
label | String label |
wxPerl Note: In wxPerl this method is implemented as InsertStringItem(index, label).
long wxListCtrl::InsertItem | ( | long | index, |
const wxString & | label, | ||
int | imageIndex | ||
) |
Insert an image/string item.
index | Index of the new item, supplied by the application |
label | String label |
imageIndex | Index into the image list associated with this control and view style |
wxPerl Note: In wxPerl this method is implemented as InsertImageStringItem(index, label, imageIndex).
bool wxListCtrl::IsVirtual | ( | ) | const |
Returns true if the control is currently in virtual report view.
virtual wxListItemAttr* wxListCtrl::OnGetItemAttr | ( | long | item | ) | const [protected, virtual] |
This function may be overridden in the derived class for a control with wxLC_VIRTUAL
style.
It should return the attribute for the specified item
or NULL to use the default appearance parameters.
wxListCtrl will not delete the pointer or keep a reference of it. You can return the same wxListItemAttr pointer for every OnGetItemAttr() call.
The base class version always returns NULL.
virtual wxListItemAttr* wxListCtrl::OnGetItemColumnAttr | ( | long | item, |
long | column | ||
) | const [protected, virtual] |
This function may be overridden in the derived class for a control with wxLC_VIRTUAL
style.
It should return the attribute for the for the specified item and column or NULL to use the default appearance parameters.
The base class version returns OnGetItemAttr(item)
.
virtual int wxListCtrl::OnGetItemColumnImage | ( | long | item, |
long | column | ||
) | const [protected, virtual] |
Override this function in the derived class for a control with wxLC_VIRTUAL
and wxLC_REPORT
styles in order to specify the image index for the given line and column.
The base class version always calls OnGetItemImage() for the first column, else it returns -1.
virtual int wxListCtrl::OnGetItemImage | ( | long | item | ) | const [protected, virtual] |
This function must be overridden in the derived class for a control with wxLC_VIRTUAL
style having an "image list" (see 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 wxLC_REPORT
style, OnGetItemImage() only gets called for the first column of each line.
The base class version always returns -1.
virtual wxString wxListCtrl::OnGetItemText | ( | long | item, |
long | column | ||
) | const [protected, virtual] |
This function must be overridden in the derived class for a control with wxLC_VIRTUAL
style.
It should return the string containing the text of the given column for the specified item
.
void wxListCtrl::RefreshItem | ( | long | 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.
void wxListCtrl::RefreshItems | ( | long | itemFrom, |
long | itemTo | ||
) |
Redraws the items between itemFrom and itemTo.
The starting item must be less than or equal to the ending one.
Just as RefreshItem() this is only useful for virtual list controls.
bool wxListCtrl::ScrollList | ( | int | dx, |
int | 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.
virtual bool wxListCtrl::SetBackgroundColour | ( | const wxColour & | col | ) | [virtual] |
Sets the background colour.
Note that the wxWindow::GetBackgroundColour() function of wxWindow base class can be used to retrieve the current background colour.
Reimplemented from wxWindow.
bool wxListCtrl::SetColumn | ( | int | col, |
wxListItem & | item | ||
) |
Sets information about this column.
See SetItem() for more information.
bool wxListCtrl::SetColumnsOrder | ( | const wxArrayInt & | 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 GetColumnOrder() and 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:
wxListCtrl *list = new wxListCtrl(...); for ( int i = 0; i < 3; i++ ) list->InsertColumn(i, wxString::Format("Column %d", i)); wxArrayInt order(3); order[0] = 2; order[1] = 0; order[2] = 1; list->SetColumnsOrder(order); // now list->GetColumnsOrder() will return order and // list->GetColumnIndexFromOrder(n) will return order[n] and // list->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 wxHAS_LISTCTRL_COLUMN_ORDER
as this will allow it to start working under the other platforms when support for the column reordering is added there.
bool wxListCtrl::SetColumnWidth | ( | int | col, |
int | width | ||
) |
Sets the column width.
width can be a width in pixels or wxLIST_AUTOSIZE
(-1) or wxLIST_AUTOSIZE_USEHEADER
(-2).
wxLIST_AUTOSIZE
will resize the column to the length of its longest item.
wxLIST_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.
void wxListCtrl::SetImageList | ( | wxImageList * | imageList, |
int | which | ||
) |
Sets the image list associated with the control.
which is one of wxIMAGE_LIST_NORMAL
, wxIMAGE_LIST_SMALL
, wxIMAGE_LIST_STATE
(the last is unimplemented).
This method does not take ownership of the image list, you have to delete it yourself.
bool wxListCtrl::SetItem | ( | wxListItem & | info | ) |
Sets the data of an item.
Using the wxListItem's mask and state mask, you can change only selected attributes of a wxListCtrl item.
long wxListCtrl::SetItem | ( | long | index, |
int | column, | ||
const wxString & | label, | ||
int | imageId = -1 |
||
) |
Sets an item string field at a particular column.
void wxListCtrl::SetItemBackgroundColour | ( | long | item, |
const wxColour & | col | ||
) |
Sets the background colour for this item.
This function only works in report view mode. The colour can be retrieved using GetItemBackgroundColour().
bool wxListCtrl::SetItemColumnImage | ( | long | item, |
long | column, | ||
int | 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.
void wxListCtrl::SetItemCount | ( | long | 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 wxListCtrl::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 Refresh() manually.
bool wxListCtrl::SetItemData | ( | long | item, |
long | data | ||
) |
Associates application-defined data with this item.
Notice that this function cannot be used to associate pointers with the control items, use SetItemPtrData() instead.
void wxListCtrl::SetItemFont | ( | long | item, |
const wxFont & | font | ||
) |
Sets the item's font.
bool wxListCtrl::SetItemImage | ( | long | item, |
int | image, | ||
int | 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.
bool wxListCtrl::SetItemPosition | ( | long | item, |
const wxPoint & | pos | ||
) |
Sets the position of the item, in icon or small icon view.
Windows only.
bool wxListCtrl::SetItemPtrData | ( | long | item, |
wxUIntPtr | data | ||
) |
Associates application-defined data with this item.
The data parameter may be either an integer or a pointer cast to the wxUIntPtr
type which is guaranteed to be large enough to be able to contain all integer types and pointers.
bool wxListCtrl::SetItemState | ( | long | item, |
long | state, | ||
long | stateMask | ||
) |
Sets the item state.
The stateMask is a combination of wxLIST_STATE_XXX
constants described in wxListItem 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
list->SetItemState(item, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
while to deselect it you should use
list->SetItemState(item, 0, wxLIST_STATE_SELECTED);
Consider using wxListView if possible to avoid dealing with this error-prone and confusing method.
void wxListCtrl::SetItemText | ( | long | item, |
const wxString & | text | ||
) |
Sets the item text for this item.
void wxListCtrl::SetItemTextColour | ( | long | item, |
const wxColour & | col | ||
) |
Sets the colour for this item.
This function only works in report view. The colour can be retrieved using GetItemTextColour().
void wxListCtrl::SetSingleStyle | ( | long | style, |
bool | add = true |
||
) |
Adds or removes a single window style.
void wxListCtrl::SetTextColour | ( | const wxColour & | col | ) |
Sets the text colour of the list control.
void wxListCtrl::SetWindowStyleFlag | ( | long | style | ) | [virtual] |
Sets the whole window style, deleting all items.
Reimplemented from wxWindow.
bool wxListCtrl::SortItems | ( | wxListCtrlCompare | fnSortCallBack, |
wxIntPtr | data | ||
) |
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:
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 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 List Control Sample for an example of using this function.
wxPerl Note: In wxPerl the comparison function must take just two parameters; however, you may use a closure to achieve an effect similar to the SortItems third parameter.