wxListCtrl
Creation Parameters
- parent
- id [=-1]
- x [=-1]
- y [=-1]
- cx [=-1]
- cy [=-1]
- style [= wxLC_REPORT]
- wxLC_VRULES = #0001
- wxLC_HRULES = #0002
- wxLC_ICON = #0004
- wxLC_SMALL_ICON = #0008
- wxLC_LIST = #0010
- wxLC_REPORT = #0020
- wxLC_ALIGN_TOP = #0040
- wxLC_ALIGN_LEFT = #0080
- wxLC_AUTOARRANGE = #0100
- wxLC_VIRTUAL = #0200
- wxLC_EDIT_LABELS = #0400
- wxLC_NO_HEADER = #0800
- wxLC_NO_SORT_HEADER = #1000
- wxLC_SINGLE_SEL = #2000
- wxLC_SORT_ASCENDING = #4000
- wxLC_SORT_DESCENDING = #8000
- wxLC_MASK_TYPE (wxLC_ICON | wxLC_SMALL_ICON | wxLC_LIST | wxLC_REPORT)
- wxLC_MASK_ALIGN (wxLC_ALIGN_TOP | wxLC_ALIGN_LEFT)
- wxLC_MASK_SORT (wxLC_SORT_ASCENDING | wxLC_SORT_DESCENDING)
Functions/Procedures
- func get_list_event_column( atom event )
- func insert_listctrl_item( atom list, atom index, sequence text, integer image )
- func insert_list_column( atom list, atom col, sequence text, integer format, integer width )
- proc list_imagelist( atom list, atom il, integer which )
- proc set_column_label( atom list, integer column, sequence text )
- proc set_list_item_back_color( atom list, atom item, atom color )
- proc set_list_item_image( atom list, integer item, integer image )
Supertopics
wxListCtrl
Category:
wxListCtrl
The column position: it is only used with COL events. For the column dragging events, it
is the column to the left of the divider being dragged, for the column click events
it may be -1 if the user clicked in the list control header outside any column.
wxListCtrl
[func]
insert_listctrl_item ( atom list, atom index, sequence text, integer image )
Category:
wxListCtrl
wxListCtrl
[func]
insert_list_column ( atom list, atom col, sequence text, integer format, integer width )
Category:
wxListCtrl
wxListCtrl
Category:
wxListCtrl
- list the wxListCtrl
- il the wxImageList
- which
- wxIMAGE_LIST_NORMAL (used in wxLC_ICON mode)
- wxIMAGE_LIST_SMALL (used in wxLC_REPORT, wxLC_LIST modes)
wxListCtrl
[proc]
set_column_label ( atom list, integer column, sequence text )
Category:
wxListCtrl
Changes the label of the specified column (0-based).
wxListCtrl
Category:
wxListCtrl
Sets the background color of a wxListCtrl item.
wxListCtrl
Category:
wxListCtrl
Changes the image displayed for the item. You must have previously
assigned a wxImageList to the list using list_imagelist().