wxFrame(3erl) Erlang Module Definition wxFrame(3erl)
NAME
wxFrame - See external documentation: wxFrame.
DESCRIPTION
See external documentation: wxFrame.
This class is derived (and can use functions) from:
wxTopLevelWindow
wxWindow
wxEvtHandler
DATA TYPES
wxFrame():
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() -> wxFrame()
See external documentation.
new(Parent, Id, Title) -> wxFrame()
Types:
Parent = wxWindow:wxWindow()
Id = integer()
Title = unicode:chardata()
Equivalent to new(Parent, Id, Title, []).
new(Parent, Id, Title, Options::[Option]) -> wxFrame()
Types:
Parent = wxWindow:wxWindow()
Id = integer()
Title = unicode:chardata()
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::in-
teger(), H::integer()}} | {style, integer()}
See external documentation.
create(This, Parent, Id, Title) -> boolean()
Types:
This = wxFrame()
Parent = wxWindow:wxWindow()
Id = integer()
Title = unicode:chardata()
Equivalent to create(This, Parent, Id, Title, []).
create(This, Parent, Id, Title, Options::[Option]) -> boolean()
Types:
This = wxFrame()
Parent = wxWindow:wxWindow()
Id = integer()
Title = unicode:chardata()
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::in-
teger(), H::integer()}} | {style, integer()}
See external documentation.
createStatusBar(This) -> wxStatusBar:wxStatusBar()
Types:
This = wxFrame()
Equivalent to createStatusBar(This, []).
createStatusBar(This, Options::[Option]) -> wxStatusBar:wxStatusBar()
Types:
This = wxFrame()
Option = {number, integer()} | {style, integer()} | {id, in-
teger()}
See external documentation.
createToolBar(This) -> wxToolBar:wxToolBar()
Types:
This = wxFrame()
Equivalent to createToolBar(This, []).
createToolBar(This, Options::[Option]) -> wxToolBar:wxToolBar()
Types:
This = wxFrame()
Option = {style, integer()} | {id, integer()}
See external documentation.
getClientAreaOrigin(This) -> {X::integer(), Y::integer()}
Types:
This = wxFrame()
See external documentation.
getMenuBar(This) -> wxMenuBar:wxMenuBar()
Types:
This = wxFrame()
See external documentation.
getStatusBar(This) -> wxStatusBar:wxStatusBar()
Types:
This = wxFrame()
See external documentation.
getStatusBarPane(This) -> integer()
Types:
This = wxFrame()
See external documentation.
getToolBar(This) -> wxToolBar:wxToolBar()
Types:
This = wxFrame()
See external documentation.
processCommand(This, Winid) -> boolean()
Types:
This = wxFrame()
Winid = integer()
See external documentation.
sendSizeEvent(This) -> ok
Types:
This = wxFrame()
See external documentation.
setMenuBar(This, Menubar) -> ok
Types:
This = wxFrame()
Menubar = wxMenuBar:wxMenuBar()
See external documentation.
setStatusBar(This, Statbar) -> ok
Types:
This = wxFrame()
Statbar = wxStatusBar:wxStatusBar()
See external documentation.
setStatusBarPane(This, N) -> ok
Types:
This = wxFrame()
N = integer()
See external documentation.
setStatusText(This, Text) -> ok
Types:
This = wxFrame()
Text = unicode:chardata()
Equivalent to setStatusText(This, Text, []).
setStatusText(This, Text, Options::[Option]) -> ok
Types:
This = wxFrame()
Text = unicode:chardata()
Option = {number, integer()}
See external documentation.
setStatusWidths(This, Widths_field) -> ok
Types:
This = wxFrame()
Widths_field = [integer()]
See external documentation.
setToolBar(This, Toolbar) -> ok
Types:
This = wxFrame()
Toolbar = wxToolBar:wxToolBar()
See external documentation.
destroy(This::wxFrame()) -> ok
Destroys this object, do not use object again
AUTHORS
<>
wx 1.9.1 wxFrame(3erl)