wxListCtrl
Description
See external documentation: wxListCtrl.
This class is derived (and can use functions) from:
wxControl
wxWindow
wxEvtHandler
DATA TYPES
new(Parent) -> wxListCtrl()
Types
new(Parent, Options::[Option]) -> wxListCtrl()
Types
Types
Equivalent to arrange(This, []).
Types
create(This, Parent) -> wxListCtrl()
Equivalent to create(This, Parent, []).
create(This, Parent, Options::[Option]) -> wxListCtrl()
Types
Types
editLabel(This, Item) -> wxTextCtrl:wxTextCtrl()
Equivalent to findItem(This, Start, Str, []).
Types
See external documentation.
Also:
findItem(This, Start, Pt, Direction) -> integer() when
This::wxListCtrl(), Start::integer(), Pt::{X::integer(), Y::integer()}, Direction::integer().
Types
Types
getEditControl(This) -> wxTextCtrl:wxTextCtrl()
Types
getImageList(This, Which) -> wxImageList:wxImageList()
getItemBackgroundColour(This, Item) -> wx:wx_colour4()
Types
getItemFont(This, Item) -> wxFont:wxFont()
Types
Types
Equivalent to getItemRect(This, Item, []).
Types
Types
getItemText(This, Item) -> unicode:charlist()
getItemTextColour(This, Item) -> wx:wx_colour4()
Equivalent to getNextItem(This, Item, []).
Types
getTextColour(This) -> wx:wx_colour4()
Types
Types
Types
Types
Types
See external documentation.
Also:
insertColumn(This, Col, Info) -> integer() when
This::wxListCtrl(), Col::integer(), Info::wxListItem:wxListItem().
Types
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, []).
sortItems(This::wxListCtrl(), SortCallBack::function()) -> boolean()
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.