table of contents
- stretch 1:19.2.1+dfsg-2+deb9u2
- testing 1:21.2.6+dfsg-1
- unstable 1:21.2.6+dfsg-1
- experimental 1:22.0.4+dfsg-1
wxListbook(3erl) | Erlang Module Definition | wxListbook(3erl) |
NAME¶
wxListbook - See external documentation: wxListbook.DESCRIPTION¶
See external documentation: wxListbook.This class is derived (and can use functions) from:
wxControl
wxWindow
wxEvtHandler
DATA TYPES¶
- wxListbook():
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() -> wxListbook()See external documentation.
new(Parent, Id) -> wxListbook()
Types:
Id = integer()
Equivalent to new(Parent, Id, []).
new(Parent, Id, Options::[Option]) ->
wxListbook()
Types:
Id = integer()
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}
See external documentation.
addPage(This, Page, Text) -> boolean()
Types:
Page = wxWindow:wxWindow()
Text = unicode:chardata()
Equivalent to addPage(This, Page, Text, []).
addPage(This, Page, Text, Options::[Option]) ->
boolean()
Types:
Page = wxWindow:wxWindow()
Text = unicode:chardata()
Option = {bSelect, boolean()} | {imageId, integer()}
See external documentation.
advanceSelection(This) -> ok
Types:
Equivalent to advanceSelection(This, []).
advanceSelection(This, Options::[Option]) -> ok
Types:
Option = {forward, boolean()}
See external documentation.
assignImageList(This, ImageList) -> ok
Types:
ImageList = wxImageList:wxImageList()
See external documentation.
create(This, Parent, Id) -> boolean()
Types:
Parent = wxWindow:wxWindow()
Id = integer()
Equivalent to create(This, Parent, Id, []).
create(This, Parent, Id, Options::[Option]) -> boolean()
Types:
Parent = wxWindow:wxWindow()
Id = integer()
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}
See external documentation.
deleteAllPages(This) -> boolean()
Types:
See external documentation.
deletePage(This, N) -> boolean()
Types:
N = integer()
See external documentation.
removePage(This, N) -> boolean()
Types:
N = integer()
See external documentation.
getCurrentPage(This) -> wxWindow:wxWindow()
Types:
See external documentation.
getImageList(This) -> wxImageList:wxImageList()
Types:
See external documentation.
getPage(This, N) -> wxWindow:wxWindow()
Types:
N = integer()
See external documentation.
getPageCount(This) -> integer()
Types:
See external documentation.
getPageImage(This, N) -> integer()
Types:
N = integer()
See external documentation.
getPageText(This, N) -> unicode:charlist()
Types:
N = integer()
See external documentation.
getSelection(This) -> integer()
Types:
See external documentation.
hitTest(This, Pt) -> Result
Types:
This = wxListbook()
Pt = {X::integer(), Y::integer()}
See external documentation.
insertPage(This, N, Page, Text) -> boolean()
Types:
N = integer()
Page = wxWindow:wxWindow()
Text = unicode:chardata()
Equivalent to insertPage(This, N, Page, Text, []).
insertPage(This, N, Page, Text, Options::[Option]) ->
boolean()
Types:
N = integer()
Page = wxWindow:wxWindow()
Text = unicode:chardata()
Option = {bSelect, boolean()} | {imageId, integer()}
See external documentation.
setImageList(This, ImageList) -> ok
Types:
ImageList = wxImageList:wxImageList()
See external documentation.
setPageSize(This, Size) -> ok
Types:
Size = {W::integer(), H::integer()}
See external documentation.
setPageImage(This, N, ImageId) -> boolean()
Types:
N = integer()
ImageId = integer()
See external documentation.
setPageText(This, N, StrText) -> boolean()
Types:
N = integer()
StrText = unicode:chardata()
See external documentation.
setSelection(This, N) -> integer()
Types:
N = integer()
See external documentation.
changeSelection(This, N) -> integer()
Types:
N = integer()
See external documentation.
destroy(This::wxListbook()) -> ok
Destroys this object, do not use object again
AUTHORS¶
<>wx 1.8 |