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