DESCRIPTION
See external documentation: wxNotebook.
This class is derived (and can use functions) from:
wxControl
wxWindow
wxEvtHandler
DATA TYPES
-
- wxNotebook():
-
-
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() -> wxNotebook()
-
See external documentation.
new(Parent, Winid) -> wxNotebook()
-
Types:
-
Parent = wxWindow() (see module wxWindow)
Winid = integer()
-
Parent = wxWindow() (see module wxWindow)
-
Equivalent to new(Parent, Winid, []).
new(Parent, Winid, Options::[Option]) -> wxNotebook()
-
Types:
-
Parent = wxWindow() (see module wxWindow)
Winid = integer()
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}
-
Parent = wxWindow() (see module wxWindow)
-
See external documentation.
addPage(This, Page, Text) -> boolean()
-
Types:
-
This = wxNotebook()
Page = wxWindow() (see module wxWindow)
Text = chardata() (see module unicode)
-
This = wxNotebook()
-
Equivalent to addPage(This, Page, Text, []).
addPage(This, Page, Text, Options::[Option]) -> boolean()
-
Types:
-
This = wxNotebook()
Page = wxWindow() (see module wxWindow)
Text = chardata() (see module unicode)
Option = {bSelect, boolean()} | {imageId, integer()}
-
This = wxNotebook()
-
See external documentation.
advanceSelection(This) -> ok
-
Types:
-
This = wxNotebook()
-
This = wxNotebook()
-
Equivalent to advanceSelection(This, []).
advanceSelection(This, Options::[Option]) -> ok
-
Types:
-
This = wxNotebook()
Option = {forward, boolean()}
-
This = wxNotebook()
-
See external documentation.
assignImageList(This, ImageList) -> ok
-
Types:
-
This = wxNotebook()
ImageList = wxImageList() (see module wxImageList)
-
This = wxNotebook()
-
See external documentation.
create(This, Parent, Id) -> boolean()
-
Types:
-
This = wxNotebook()
Parent = wxWindow() (see module wxWindow)
Id = integer()
-
This = wxNotebook()
-
Equivalent to create(This, Parent, Id, []).
create(This, Parent, Id, Options::[Option]) -> boolean()
-
Types:
-
This = wxNotebook()
Parent = wxWindow() (see module wxWindow)
Id = integer()
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}
-
This = wxNotebook()
-
See external documentation.
deleteAllPages(This) -> boolean()
-
Types:
-
This = wxNotebook()
-
This = wxNotebook()
-
See external documentation.
deletePage(This, NPage) -> boolean()
-
Types:
-
This = wxNotebook()
NPage = integer()
-
This = wxNotebook()
-
See external documentation.
removePage(This, NPage) -> boolean()
-
Types:
-
This = wxNotebook()
NPage = integer()
-
This = wxNotebook()
-
See external documentation.
getCurrentPage(This) -> wxWindow() (see module wxWindow)
-
Types:
-
This = wxNotebook()
-
This = wxNotebook()
-
See external documentation.
getImageList(This) -> wxImageList() (see module wxImageList)
-
Types:
-
This = wxNotebook()
-
This = wxNotebook()
-
See external documentation.
getPage(This, N) -> wxWindow() (see module wxWindow)
-
Types:
-
This = wxNotebook()
N = integer()
-
This = wxNotebook()
-
See external documentation.
getPageCount(This) -> integer()
-
Types:
-
This = wxNotebook()
-
This = wxNotebook()
-
See external documentation.
getPageImage(This, NPage) -> integer()
-
Types:
-
This = wxNotebook()
NPage = integer()
-
This = wxNotebook()
-
See external documentation.
getPageText(This, NPage) -> charlist() (see module unicode)
-
Types:
-
This = wxNotebook()
NPage = integer()
-
This = wxNotebook()
-
See external documentation.
getRowCount(This) -> integer()
-
Types:
-
This = wxNotebook()
-
This = wxNotebook()
-
See external documentation.
getSelection(This) -> integer()
-
Types:
-
This = wxNotebook()
-
This = wxNotebook()
-
See external documentation.
getThemeBackgroundColour(This) -> wx_colour4() (see module wx)
-
Types:
-
This = wxNotebook()
-
This = wxNotebook()
-
See external documentation.
hitTest(This, Pt) -> Result
-
Types:
-
Result = {Res::integer(), Flags::integer()}
This = wxNotebook()
Pt = {X::integer(), Y::integer()}
-
Result = {Res::integer(), Flags::integer()}
-
See external documentation.
insertPage(This, Position, Win, StrText) -> boolean()
-
Types:
-
This = wxNotebook()
Position = integer()
Win = wxWindow() (see module wxWindow)
StrText = chardata() (see module unicode)
-
This = wxNotebook()
-
Equivalent to insertPage(This, Position, Win, StrText, []).
insertPage(This, Position, Win, StrText, Options::[Option]) -> boolean()
-
Types:
-
This = wxNotebook()
Position = integer()
Win = wxWindow() (see module wxWindow)
StrText = chardata() (see module unicode)
Option = {bSelect, boolean()} | {imageId, integer()}
-
This = wxNotebook()
-
See external documentation.
setImageList(This, ImageList) -> ok
-
Types:
-
This = wxNotebook()
ImageList = wxImageList() (see module wxImageList)
-
This = wxNotebook()
-
See external documentation.
setPadding(This, Padding) -> ok
-
Types:
-
This = wxNotebook()
Padding = {W::integer(), H::integer()}
-
This = wxNotebook()
-
See external documentation.
setPageSize(This, Size) -> ok
-
Types:
-
This = wxNotebook()
Size = {W::integer(), H::integer()}
-
This = wxNotebook()
-
See external documentation.
setPageImage(This, NPage, NImage) -> boolean()
-
Types:
-
This = wxNotebook()
NPage = integer()
NImage = integer()
-
This = wxNotebook()
-
See external documentation.
setPageText(This, NPage, StrText) -> boolean()
-
Types:
-
This = wxNotebook()
NPage = integer()
StrText = chardata() (see module unicode)
-
This = wxNotebook()
-
See external documentation.
setSelection(This, NPage) -> integer()
-
Types:
-
This = wxNotebook()
NPage = integer()
-
This = wxNotebook()
-
See external documentation.
changeSelection(This, NPage) -> integer()
-
Types:
-
This = wxNotebook()
NPage = integer()
-
This = wxNotebook()
-
See external documentation.
destroy(This::wxNotebook()) -> ok
-
Destroys this object, do not use object again
AUTHORS
<>