wxListCtrl
Module
Module Summary
Description
See external documentation: wxListCtrl.
This class is derived (and can use functions) from:
wxControl
wxWindow
wxEvtHandler
DATA TYPES
Exports
Types
Types
Creates a listctrl with optional callback functions:
OnGetItemText = (This, Item, Column) -> unicode:charlist() OnGetItemAttr = (This, Item) -> wxListItemAttr:wxListItemAttr() OnGetItemColumnImage = (This, Item, Column) -> integer()
Types
Equivalent to arrange(This, []).
Types
Equivalent to create(This, Parent, []).
Types
Types
Equivalent to findItem(This, Start, Str, []).
See external documentation.
Also:
findItem(This, Start, Pt, Direction) -> integer() when
This::wxListCtrl(), Start::integer(), Pt::{X::integer(), Y::integer()}, Direction::integer().
Types
Types
Types
Types
Types
Types
Equivalent to getItemRect(This, Item, []).
Types
Types
Equivalent to getNextItem(This, Item, []).
Types
Types
Types
Types
Types
See external documentation.
Also:
insertColumn(This, Col, Info) -> integer() when
This::wxListCtrl(), Col::integer(), Info::wxListItem:wxListItem().
Types
See external documentation.
Also:
insertItem(This, Index, Label) -> integer() when
This::wxListCtrl(), Index::integer(), Label::unicode:chardata().
Equivalent to setItem(This, Index, Col, Label, []).
Types
Equivalent to setItemImage(This, Item, Image, []).
Equivalent to setSingleStyle(This, Style, []).
Sort the items in the list control
SortCallBack(Item1,Item2) -> integer()
SortCallBack receives the client data associated with two items
to compare, and should return 0 if the items are equal, a negative
value if the first item is less than the second one and a positive
value if the first item is greater than the second one.
NOTE: The callback may not call other (wx) processes.