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
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:
Id = integer()
Title = unicode:chardata()
Equivalent to new(Parent, Id, Title, []).
new(Parent, Id, Title, Options::[Option]) ->
wxFrame()
Types:
Id = integer()
Title = unicode:chardata()
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}
See external documentation.
create(This, Parent, Id, Title) -> boolean()
Types:
Parent = wxWindow:wxWindow()
Id = integer()
Title = unicode:chardata()
Equivalent to create(This, Parent, Id, Title, []).
create(This, Parent, Id, Title, Options::[Option]) ->
boolean()
Types:
Parent = wxWindow:wxWindow()
Id = integer()
Title = unicode:chardata()
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}
See external documentation.
createStatusBar(This) ->
wxStatusBar:wxStatusBar()
Types:
Equivalent to createStatusBar(This, []).
createStatusBar(This, Options::[Option]) ->
wxStatusBar:wxStatusBar()
Types:
Option = {number, integer()} | {style, integer()} | {id, integer()}
See external documentation.
createToolBar(This) -> wxToolBar:wxToolBar()
Types:
Equivalent to createToolBar(This, []).
createToolBar(This, Options::[Option]) ->
wxToolBar:wxToolBar()
Types:
Option = {style, integer()} | {id, integer()}
See external documentation.
getClientAreaOrigin(This) -> {X::integer(),
Y::integer()}
Types:
See external documentation.
getMenuBar(This) -> wxMenuBar:wxMenuBar()
Types:
See external documentation.
getStatusBar(This) -> wxStatusBar:wxStatusBar()
Types:
See external documentation.
getStatusBarPane(This) -> integer()
Types:
See external documentation.
getToolBar(This) -> wxToolBar:wxToolBar()
Types:
See external documentation.
processCommand(This, Winid) -> boolean()
Types:
Winid = integer()
See external documentation.
sendSizeEvent(This) -> ok
Types:
See external documentation.
setMenuBar(This, Menubar) -> ok
Types:
Menubar = wxMenuBar:wxMenuBar()
See external documentation.
setStatusBar(This, Statbar) -> ok
Types:
Statbar = wxStatusBar:wxStatusBar()
See external documentation.
setStatusBarPane(This, N) -> ok
Types:
N = integer()
See external documentation.
setStatusText(This, Text) -> ok
Types:
Text = unicode:chardata()
Equivalent to setStatusText(This, Text, []).
setStatusText(This, Text, Options::[Option]) -> ok
Types:
Text = unicode:chardata()
Option = {number, integer()}
See external documentation.
setStatusWidths(This, Widths_field) -> ok
Types:
Widths_field = [integer()]
See external documentation.
setToolBar(This, Toolbar) -> ok
Types:
Toolbar = wxToolBar:wxToolBar()
See external documentation.
destroy(This::wxFrame()) -> ok
Destroys this object, do not use object again
AUTHORS¶
<>wx 1.8 |