wxnotebook(3) - Linux man page
Name
wxNotebook - See external documentation: wxNotebook.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::wxWindow() (see module wxWindow), Winid::integer()) -> wxNotebook()
Equivalent to new(Parent, Winid, []).
new(Parent::wxWindow() (see module wxWindow), Winid::integer(), Options::[Option]) -> wxNotebook()
- Types:
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}
See external documentation.
addPage(This::wxNotebook(), Page::wxWindow() (see module wxWindow), Text::string()) -> bool()
Equivalent to addPage(This, Page, Text, []).
addPage(This::wxNotebook(), Page::wxWindow() (see module wxWindow), Text::string(), Options::[Option]) -> bool()
- Types:
Option = {bSelect, bool()} | {imageId, integer()}
See external documentation.
advanceSelection(This::wxNotebook()) -> ok
Equivalent to advanceSelection(This, []).
advanceSelection(This::wxNotebook(), Options::[Option]) -> ok
- Types:
Option = {forward, bool()}
See external documentation.
assignImageList(This::wxNotebook(), ImageList::wxImageList() (see module wxImageList)) -> ok
See external documentation.
create(This::wxNotebook(), Parent::wxWindow() (see module wxWindow), Id::integer()) -> bool()
Equivalent to create(This, Parent, Id, []).
create(This::wxNotebook(), Parent::wxWindow() (see module wxWindow), Id::integer(), Options::[Option]) -> bool()
- Types:
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}
See external documentation.
deleteAllPages(This::wxNotebook()) -> bool()
See external documentation.
deletePage(This::wxNotebook(), NPage::integer()) -> bool()
See external documentation.
removePage(This::wxNotebook(), NPage::integer()) -> bool()
See external documentation.
getCurrentPage(This::wxNotebook()) -> wxWindow() (see module wxWindow)
See external documentation.
getImageList(This::wxNotebook()) -> wxImageList() (see module wxImageList)
See external documentation.
getPage(This::wxNotebook(), N::integer()) -> wxWindow() (see module wxWindow)
See external documentation.
getPageCount(This::wxNotebook()) -> integer()
See external documentation.
getPageImage(This::wxNotebook(), NPage::integer()) -> integer()
See external documentation.
getPageText(This::wxNotebook(), NPage::integer()) -> string()
See external documentation.
getRowCount(This::wxNotebook()) -> integer()
See external documentation.
getSelection(This::wxNotebook()) -> integer()
See external documentation.
getThemeBackgroundColour(This::wxNotebook()) -> colour() (see module wx)
See external documentation.
hitTest(This::wxNotebook(), Pt::{X::integer(), Y::integer()}) -> {integer(), Flags::integer()}
See external documentation.
insertPage(This::wxNotebook(), Position::integer(), Win::wxWindow() (see module wxWindow), StrText::string()) -> bool()
Equivalent to insertPage(This, Position, Win, StrText, []).
insertPage(This::wxNotebook(), Position::integer(), Win::wxWindow() (see module wxWindow), StrText::string(), Options::[Option]) -> bool()
- Types:
Option = {bSelect, bool()} | {imageId, integer()}
See external documentation.
setImageList(This::wxNotebook(), ImageList::wxImageList() (see module wxImageList)) -> ok
See external documentation.
setPadding(This::wxNotebook(), Padding::{W::integer(), H::integer()}) -> ok
See external documentation.
setPageSize(This::wxNotebook(), Size::{W::integer(), H::integer()}) -> ok
See external documentation.
setPageImage(This::wxNotebook(), NPage::integer(), NImage::integer()) -> bool()
See external documentation.
setPageText(This::wxNotebook(), NPage::integer(), StrText::string()) -> bool()
See external documentation.
setSelection(This::wxNotebook(), NPage::integer()) -> integer()
See external documentation.
changeSelection(This::wxNotebook(), NPage::integer()) -> integer()
See external documentation.
destroy(This::wxNotebook()) -> ok
Destroys this object, do not use object again
Authors
<>