wxListCtrl(3erl) | Erlang Module Definition | wxListCtrl(3erl) |
wxListCtrl - See external documentation: wxListCtrl.
See external documentation: wxListCtrl.
This class is derived (and can use functions) from:
wxControl
wxWindow
wxEvtHandler
An object reference, The representation is internal and can be changed without notice. It can't be used for comparsion stored on disc or distributed for use on other nodes.
new() -> wxListCtrl()
See external documentation.
new(Parent) -> wxListCtrl()
Types:
new(Parent, Options::[Option]) -> wxListCtrl()
Types:
Creates a listctrl with optional callback functions:
OnGetItemText = (This, Item, Column) -> unicode:charlist() OnGetItemAttr = (This, Item) -> wxListItemAttr:wxListItemAttr() OnGetItemColumnImage = (This, Item, Column) -> integer()
See external documentation.
arrange(This) -> boolean()
Types:
Equivalent to arrange(This, []).
arrange(This, Options::[Option]) -> boolean()
Types:
See external documentation.
assignImageList(This, ImageList, Which) -> ok
Types:
See external documentation.
clearAll(This) -> ok
Types:
See external documentation.
create(This, Parent) -> wxListCtrl()
Types:
Equivalent to create(This, Parent, []).
create(This, Parent, Options::[Option]) -> wxListCtrl()
Types:
See external documentation.
deleteAllItems(This) -> boolean()
Types:
See external documentation.
deleteColumn(This, Col) -> boolean()
Types:
See external documentation.
deleteItem(This, Item) -> boolean()
Types:
See external documentation.
editLabel(This, Item) -> wxTextCtrl:wxTextCtrl()
Types:
See external documentation.
ensureVisible(This, Item) -> boolean()
Types:
See external documentation.
findItem(This, Start, Str) -> integer()
Types:
Equivalent to findItem(This, Start, Str, []).
findItem(This, Start, Str, Options::[Option]) ->
integer()
findItem(This, Start, Pt, Direction) -> integer()
Types:
See external documentation.
Also:
findItem(This, Start, Pt, Direction) -> integer() when
This::wxListCtrl(), Start::integer(), Pt::{X::integer(), Y::integer()},
Direction::integer().
getColumn(This, Col, Item) -> boolean()
Types:
See external documentation.
getColumnCount(This) -> integer()
Types:
See external documentation.
getColumnWidth(This, Col) -> integer()
Types:
See external documentation.
getCountPerPage(This) -> integer()
Types:
See external documentation.
getEditControl(This) -> wxTextCtrl:wxTextCtrl()
Types:
See external documentation.
getImageList(This, Which) -> wxImageList:wxImageList()
Types:
See external documentation.
getItem(This, Info) -> boolean()
Types:
See external documentation.
getItemBackgroundColour(This, Item) -> wx:wx_colour4()
Types:
See external documentation.
getItemCount(This) -> integer()
Types:
See external documentation.
getItemData(This, Item) -> integer()
Types:
See external documentation.
getItemFont(This, Item) -> wxFont:wxFont()
Types:
See external documentation.
getItemPosition(This, Item) -> Result
Types:
See external documentation.
getItemRect(This, Item) -> Result
Types:
Equivalent to getItemRect(This, Item, []).
getItemRect(This, Item, Options::[Option]) -> Result
Types:
See external documentation.
getItemSpacing(This) -> {W::integer(), H::integer()}
Types:
See external documentation.
getItemState(This, Item, StateMask) -> integer()
Types:
See external documentation.
getItemText(This, Item) -> unicode:charlist()
Types:
See external documentation.
getItemTextColour(This, Item) -> wx:wx_colour4()
Types:
See external documentation.
getNextItem(This, Item) -> integer()
Types:
Equivalent to getNextItem(This, Item, []).
getNextItem(This, Item, Options::[Option]) -> integer()
Types:
See external documentation.
getSelectedItemCount(This) -> integer()
Types:
See external documentation.
getTextColour(This) -> wx:wx_colour4()
Types:
See external documentation.
getTopItem(This) -> integer()
Types:
See external documentation.
getViewRect(This) -> {X::integer(), Y::integer(),
W::integer(), H::integer()}
Types:
See external documentation.
hitTest(This, Point) -> Result
Types:
See external documentation.
insertColumn(This, Col, Heading) -> integer()
insertColumn(This, Col, Info) -> integer()
Types:
See external documentation.
Also:
insertColumn(This, Col, Info) -> integer() when
This::wxListCtrl(), Col::integer(), Info::wxListItem:wxListItem().
insertColumn(This, Col, Heading, Options::[Option]) ->
integer()
Types:
See external documentation.
insertItem(This, Info) -> integer()
Types:
See external documentation.
insertItem(This, Index, ImageIndex) -> integer()
insertItem(This, Index, Label) -> integer()
Types:
See external documentation.
Also:
insertItem(This, Index, Label) -> integer() when
This::wxListCtrl(), Index::integer(), Label::unicode:chardata().
insertItem(This, Index, Label, ImageIndex) -> integer()
Types:
See external documentation.
refreshItem(This, Item) -> ok
Types:
See external documentation.
refreshItems(This, ItemFrom, ItemTo) -> ok
Types:
See external documentation.
scrollList(This, Dx, Dy) -> boolean()
Types:
See external documentation.
setBackgroundColour(This, Colour) -> boolean()
Types:
See external documentation.
setColumn(This, Col, Item) -> boolean()
Types:
See external documentation.
setColumnWidth(This, Col, Width) -> boolean()
Types:
See external documentation.
setImageList(This, ImageList, Which) -> ok
Types:
See external documentation.
setItem(This, Info) -> boolean()
Types:
See external documentation.
setItem(This, Index, Col, Label) -> integer()
Types:
Equivalent to setItem(This, Index, Col, Label, []).
setItem(This, Index, Col, Label, Options::[Option]) ->
integer()
Types:
See external documentation.
setItemBackgroundColour(This, Item, Col) -> ok
Types:
See external documentation.
setItemCount(This, Count) -> ok
Types:
See external documentation.
setItemData(This, Item, Data) -> boolean()
Types:
See external documentation.
setItemFont(This, Item, F) -> ok
Types:
See external documentation.
setItemImage(This, Item, Image) -> boolean()
Types:
Equivalent to setItemImage(This, Item, Image, []).
setItemImage(This, Item, Image, Options::[Option]) ->
boolean()
Types:
See external documentation.
setItemColumnImage(This, Item, Column, Image) ->
boolean()
Types:
See external documentation.
setItemPosition(This, Item, Pos) -> boolean()
Types:
See external documentation.
setItemState(This, Item, State, StateMask) -> boolean()
Types:
See external documentation.
setItemText(This, Item, Str) -> ok
Types:
See external documentation.
setItemTextColour(This, Item, Col) -> ok
Types:
See external documentation.
setSingleStyle(This, Style) -> ok
Types:
Equivalent to setSingleStyle(This, Style, []).
setSingleStyle(This, Style, Options::[Option]) -> ok
Types:
See external documentation.
setTextColour(This, Col) -> ok
Types:
See external documentation.
setWindowStyleFlag(This, Style) -> ok
Types:
See external documentation.
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.
destroy(This::wxListCtrl()) -> ok
Destroys this object, do not use object again
<>
wx 1.9.2 |