View Source wxChoice (wx v2.4.3)
A choice item is used to select one of a list of strings.
Unlike a wxListBox
, only the selection is visible until the user pulls down the menu
of choices.
Styles
This class supports the following styles:
- wxCB_SORT: Sorts the entries alphabetically.
See:
This class is derived, and can use functions, from:
wxWidgets docs: wxChoice
Events
Event types emitted from this class:
Summary
Functions
Equivalent to create(This, Parent, Id, Pos, Size, Choices, [])
.
Deletes an item from the control.
Destroys the object
Gets the number of columns in this choice item.
Default constructor.
Equivalent to new(Parent, Id, [])
.
Constructor, creating and showing a choice.
Equivalent to setColumns(This, [])
.
Sets the number of columns in this choice item.
Types
-type wxChoice() :: wx:wx_object().
Functions
-spec create(This, Parent, Id, Pos, Size, Choices) -> boolean() when This :: wxChoice(), Parent :: wxWindow:wxWindow(), Id :: integer(), Pos :: {X :: integer(), Y :: integer()}, Size :: {W :: integer(), H :: integer()}, Choices :: [unicode:chardata()].
Equivalent to create(This, Parent, Id, Pos, Size, Choices, [])
.
-spec create(This, Parent, Id, Pos, Size, Choices, [Option]) -> boolean() when This :: wxChoice(), Parent :: wxWindow:wxWindow(), Id :: integer(), Pos :: {X :: integer(), Y :: integer()}, Size :: {W :: integer(), H :: integer()}, Choices :: [unicode:chardata()], Option :: {style, integer()} | {validator, wx:wx_object()}.
Deletes an item from the control.
The client data associated with the item will be also deleted if it is owned by the control. Note that it is an error (signalled by an assert failure in debug builds) to remove an item with the index negative or greater or equal than the number of items in the control.
If there is a currently selected item below the item being deleted, i.e. if wxControlWithItems:getSelection/1
returns a
valid index greater than or equal to n
, the selection is invalidated when this function
is called. However if the selected item appears before the item being deleted, the
selection is preserved unchanged.
-spec destroy(This :: wxChoice()) -> ok.
Destroys the object
Gets the number of columns in this choice item.
Remark: This is implemented for GTK and Motif only and always returns 1 for the other platforms.
-spec new() -> wxChoice().
Default constructor.
See: create/7
-spec new(Parent, Id) -> wxChoice() when Parent :: wxWindow:wxWindow(), Id :: integer().
Equivalent to new(Parent, Id, [])
.
-spec new(Parent, Id, [Option]) -> wxChoice() when Parent :: wxWindow:wxWindow(), Id :: integer(), Option :: {pos, {X :: integer(), Y :: integer()}} | {size, {W :: integer(), H :: integer()}} | {choices, [unicode:chardata()]} | {style, integer()} | {validator, wx:wx_object()}.
Constructor, creating and showing a choice.
See: create/7
-spec setColumns(This) -> ok when This :: wxChoice().
Equivalent to setColumns(This, [])
.
Sets the number of columns in this choice item.
Remark: This is implemented for GTK and Motif only and doesn’t do anything under other platforms.