DESCRIPTION

See external documentation: wxListBox.

This class is derived (and can use functions) from:

wxControlWithItems

wxControl

wxWindow

wxEvtHandler

DATA TYPES

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()

See external documentation.

new(Parent, Id) -> wxListBox()

Types:

Parent = wxWindow() (see module wxWindow)

Id = integer()

Equivalent to new(Parent, Id, []).

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)}

See external documentation.

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)]

Equivalent to create(This, Parent, Id, Pos, Size, Choices, []).

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)}

See external documentation.

deselect(This, N) -> ok

Types:

This = wxListBox()

N = integer()

See external documentation.

getSelections(This) -> Result

Types:

Result = {Res::integer(), ASelections::[integer()]}

This = wxListBox()

See external documentation.

insertItems(This, Items, Pos) -> ok

Types:

This = wxListBox()

Items = [chardata() (see module unicode)]

Pos = integer()

See external documentation.

isSelected(This, N) -> boolean()

Types:

This = wxListBox()

N = integer()

See external documentation.

set(This, Items) -> ok

Types:

This = wxListBox()

Items = [chardata() (see module unicode)]

See external documentation.

hitTest(This, Point) -> integer()

Types:

This = wxListBox()

Point = {X::integer(), Y::integer()}

See external documentation.

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

AUTHORS

<>