table of contents
- buster 1:21.2.6+dfsg-1
- testing 1:23.2.6+dfsg-1
- unstable 1:23.2.6+dfsg-1
- experimental 1:24.0.5+dfsg-1
wxImageList(3erl) | Erlang Module Definition | wxImageList(3erl) |
NAME¶
wxImageList - See external documentation: wxImageList.DESCRIPTION¶
See external documentation: wxImageList.DATA TYPES¶
- wxImageList():
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() -> wxImageList()See external documentation.
new(Width, Height) -> wxImageList()
Types:
Height = integer()
Equivalent to new(Width, Height, []).
new(Width, Height, Options::[Option]) ->
wxImageList()
Types:
Height = integer()
Option = {mask, boolean()} | {initialCount, integer()}
See external documentation.
add(This, Bitmap) -> integer()
Types:
Bitmap = wxBitmap:wxBitmap()
See external documentation.
add(This, Bitmap, Mask) -> integer()
Types:
Bitmap = wxBitmap:wxBitmap()
Mask = wxBitmap:wxBitmap()
See external documentation.
Also:
add(This, Bitmap, MaskColour) -> integer() when
This::wxImageList(), Bitmap::wxBitmap:wxBitmap(),
MaskColour::wx:wx_colour().
create(This, Width, Height) -> boolean()
Types:
Width = integer()
Height = integer()
Equivalent to create(This, Width, Height, []).
create(This, Width, Height, Options::[Option]) ->
boolean()
Types:
Width = integer()
Height = integer()
Option = {mask, boolean()} | {initialCount, integer()}
See external documentation.
draw(This, Index, Dc, X, Y) -> boolean()
Types:
Index = integer()
Dc = wxDC:wxDC()
X = integer()
Y = integer()
Equivalent to draw(This, Index, Dc, X, Y, []).
draw(This, Index, Dc, X, Y, Options::[Option]) ->
boolean()
Types:
Index = integer()
Dc = wxDC:wxDC()
X = integer()
Y = integer()
Option = {flags, integer()} | {solidBackground, boolean()}
See external documentation.
getBitmap(This, Index) -> wxBitmap:wxBitmap()
Types:
Index = integer()
See external documentation.
getIcon(This, Index) -> wxIcon:wxIcon()
Types:
Index = integer()
See external documentation.
getImageCount(This) -> integer()
Types:
See external documentation.
getSize(This, Index) -> Result
Types:
This = wxImageList()
Index = integer()
See external documentation.
remove(This, Index) -> boolean()
Types:
Index = integer()
See external documentation.
removeAll(This) -> boolean()
Types:
See external documentation.
replace(This, Index, Bitmap) -> boolean()
Types:
Index = integer()
Bitmap = wxBitmap:wxBitmap()
See external documentation.
replace(This, Index, Bitmap, Mask) -> boolean()
Types:
Index = integer()
Bitmap = wxBitmap:wxBitmap()
Mask = wxBitmap:wxBitmap()
See external documentation.
destroy(This::wxImageList()) -> ok
Destroys this object, do not use object again
AUTHORS¶
<>wx 1.8.6 |