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