table of contents
other versions
- jessie 1:17.3-dfsg-4+deb8u2
- jessie-backports 1:19.2.1+dfsg-2+deb9u1~bpo8+1
- stretch 1:19.2.1+dfsg-2+deb9u2
- testing 1:21.2.5+dfsg-1
- unstable 1:21.2.6+dfsg-1
- experimental 1:22.0~rc1+dfsg-1
wxBitmapButton(3erl) | Erlang Module Definition | wxBitmapButton(3erl) |
NAME¶
wxBitmapButton - See external documentation: wxBitmapButton.DESCRIPTION¶
See external documentation: wxBitmapButton. This class is derived (and can use functions) from:DATA TYPES¶
- wxBitmapButton():
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() -> wxBitmapButton()
See external documentation.
new(Parent, Id, Bitmap) -> wxBitmapButton()
Types:
Parent = wxWindow() (see module wxWindow)
Id = integer()
Bitmap = wxBitmap() (see module wxBitmap)
Equivalent to new(Parent, Id, Bitmap, []).
new(Parent, Id, Bitmap, Option::[Option]) -> wxBitmapButton()
Types:
Parent = wxWindow() (see module wxWindow)
Id = integer()
Bitmap = wxBitmap() (see module wxBitmap)
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(),
H::integer()}} | {style, integer()} | {validator, wx_object() (see module wx)}
See external documentation.
create(This, Parent, Id, Bitmap) -> boolean()
Types:
This = wxBitmapButton()
Parent = wxWindow() (see module wxWindow)
Id = integer()
Bitmap = wxBitmap() (see module wxBitmap)
Equivalent to create(This, Parent, Id, Bitmap, []).
create(This, Parent, Id, Bitmap, Option::[Option]) -> boolean()
Types:
This = wxBitmapButton()
Parent = wxWindow() (see module wxWindow)
Id = integer()
Bitmap = wxBitmap() (see module wxBitmap)
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(),
H::integer()}} | {style, integer()} | {validator, wx_object() (see module wx)}
See external documentation.
getBitmapDisabled(This) -> wxBitmap() (see module wxBitmap)
Types:
This = wxBitmapButton()
See external documentation.
getBitmapFocus(This) -> wxBitmap() (see module wxBitmap)
Types:
This = wxBitmapButton()
See external documentation.
getBitmapLabel(This) -> wxBitmap() (see module wxBitmap)
Types:
This = wxBitmapButton()
See external documentation.
getBitmapSelected(This) -> wxBitmap() (see module wxBitmap)
Types:
This = wxBitmapButton()
See external documentation.
setBitmapDisabled(This, Disabled) -> ok
Types:
This = wxBitmapButton()
Disabled = wxBitmap() (see module wxBitmap)
See external documentation.
setBitmapFocus(This, Focus) -> ok
Types:
This = wxBitmapButton()
Focus = wxBitmap() (see module wxBitmap)
See external documentation.
setBitmapLabel(This, Bitmap) -> ok
Types:
This = wxBitmapButton()
Bitmap = wxBitmap() (see module wxBitmap)
See external documentation.
setBitmapSelected(This, Sel) -> ok
Types:
This = wxBitmapButton()
Sel = wxBitmap() (see module wxBitmap)
See external documentation.
destroy(This::wxBitmapButton()) -> ok
Destroys this object, do not use object again
AUTHORS¶
<>wx 1.3.1 |