wxListBox
MODULE
wxListBox
MODULE SUMMARY
See external documentation: wxListBox.
DESCRIPTION
See external documentation: wxListBox.
  
This class is derived (and can use functions) from:
  
wxControlWithItems
  
wxControl
  
wxWindow
  
wxEvtHandler
  
- wxListBox()
- 
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. 
 
EXPORTS
new() -> wxListBox()
new(Parent, Id) -> wxListBox()
Types:
Parent = wxWindow() (see module wxWindow)
Id = integer()
 
new(Parent, Id, Option::[Option]) -> wxListBox()
Types:
Parent = wxWindow() (see module wxWindow)
Id = integer()
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {choices, [chardata() (see module unicode)]} | {style, integer()} | {validator, wx_object() (see module wx)}
 
create(This, Parent, Id, Pos, Size, Choices) -> boolean()
Types:
This = wxListBox()
Parent = wxWindow() (see module wxWindow)
Id = integer()
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [chardata() (see module unicode)]
 
create(This, Parent, Id, Pos, Size, Choices, Option::[Option]) -> boolean()
Types:
This = wxListBox()
Parent = wxWindow() (see module wxWindow)
Id = integer()
Pos = {X::integer(), Y::integer()}
Size = {W::integer(), H::integer()}
Choices = [chardata() (see module unicode)]
Option = {style, integer()} | {validator, wx_object() (see module wx)}
 
deselect(This, N) -> ok
Types:
This = wxListBox()
N = integer()
 
getSelections(This) -> Result
Types:
Result = {Res::integer(), ASelections::[integer()]}
This = wxListBox()
 
insertItems(This, Items, Pos) -> ok
Types:
This = wxListBox()
Items = [chardata() (see module unicode)]
Pos = integer()
 
isSelected(This, N) -> boolean()
Types:
This = wxListBox()
N = integer()
 
set(This, Items) -> ok
Types:
This = wxListBox()
Items = [chardata() (see module unicode)]
 
hitTest(This, Point) -> integer()
Types:
This = wxListBox()
Point = {X::integer(), Y::integer()}
 
setFirstItem(This, N) -> ok
Types:
This = wxListBox()
N = integer()
 
See external documentation.
  
 Also:
  setFirstItem(This, S) -> ok when
  	This::wxListBox(), S::unicode:chardata().
 
destroy(This::wxListBox()) -> ok
Destroys this object, do not use object again