GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
wxToggleButton(3) Erlang Module Definition wxToggleButton(3)

wxToggleButton - Functions for wxToggleButton class

wxToggleButton is a button that stays pressed when clicked by the user. In other words, it is similar to wxCheckBox in functionality but looks like a wxButton.

Since wxWidgets version 2.9.0 this control emits an update UI event.

You can see wxToggleButton in action in page_samples_widgets.

See: wxCheckBox, wxButton, wxBitmapToggleButton (not implemented in wx)

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

wxWidgets docs: wxToggleButton

Event types emitted from this class: command_togglebutton_clicked

wxToggleButton() = wx:wx_object()

new() -> wxToggleButton()


Default constructor.

new(Parent, Id, Label) -> wxToggleButton()


Types:

Parent = wxWindow:wxWindow()
Id = integer()
Label = unicode:chardata()

new(Parent, Id, Label, Options :: [Option]) -> wxToggleButton()


Types:

Parent = wxWindow:wxWindow()
Id = integer()
Label = unicode:chardata()
Option = {pos, {X :: integer(), Y :: integer()}} | {size, {W :: integer(), H :: integer()}} | {style, integer()} | {validator, wx:wx_object()}

Constructor, creating and showing a toggle button.

See: create/5, wxValidator (not implemented in wx)

destroy(This :: wxToggleButton()) -> ok


Destructor, destroying the toggle button.

create(This, Parent, Id, Label) -> boolean()


Types:

This = wxToggleButton()
Parent = wxWindow:wxWindow()
Id = integer()
Label = unicode:chardata()

create(This, Parent, Id, Label, Options :: [Option]) -> boolean()


Types:

This = wxToggleButton()
Parent = wxWindow:wxWindow()
Id = integer()
Label = unicode:chardata()
Option = {pos, {X :: integer(), Y :: integer()}} | {size, {W :: integer(), H :: integer()}} | {style, integer()} | {validator, wx:wx_object()}

Creates the toggle button for two-step construction.

See new/4 for details.

getValue(This) -> boolean()


Types:

This = wxToggleButton()

Gets the state of the toggle button.

Return: Returns true if it is pressed, false otherwise.

setValue(This, State) -> ok


Types:

This = wxToggleButton()
State = boolean()

Sets the toggle button to the given state.

This does not cause a EVT_TOGGLEBUTTON event to be emitted.

wx 2.1.1 wxWidgets team.

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.