.TH wxFrame 3erl "wx 0.99.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 \fBwxTopLevelWindow\fR\& .br \fBwxWindow\fR\& .br \fBwxEvtHandler\fR\& .SH "DATA TYPES" .RS 2 .TP 2 .B \fIwxFrame()\fR\&: .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() (see module wxWindow) .br Id = integer() .br Title = chardata() (see module unicode) .br .RE .RE .RS .LP Equivalent to \fBnew(Parent, Id, Title, [])\fR\&\&. .RE .LP .B new(Parent, Id, Title, Option::[Option]) -> wxFrame() .br .RS .LP Types: .RS 3 Parent = wxWindow() (see module wxWindow) .br Id = integer() .br Title = chardata() (see module unicode) .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() (see module wxWindow) .br Id = integer() .br Title = chardata() (see module unicode) .br .RE .RE .RS .LP Equivalent to \fBcreate(This, Parent, Id, Title, [])\fR\&\&. .RE .LP .B create(This, Parent, Id, Title, Option::[Option]) -> boolean() .br .RS .LP Types: .RS 3 This = wxFrame() .br Parent = wxWindow() (see module wxWindow) .br Id = integer() .br Title = chardata() (see module unicode) .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() (see module wxStatusBar) .br .RS .LP Types: .RS 3 This = wxFrame() .br .RE .RE .RS .LP Equivalent to \fBcreateStatusBar(This, [])\fR\&\&. .RE .LP .B createStatusBar(This, Option::[Option]) -> wxStatusBar() (see module 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() (see module wxToolBar) .br .RS .LP Types: .RS 3 This = wxFrame() .br .RE .RE .RS .LP Equivalent to \fBcreateToolBar(This, [])\fR\&\&. .RE .LP .B createToolBar(This, Option::[Option]) -> wxToolBar() (see module 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() (see module wxMenuBar) .br .RS .LP Types: .RS 3 This = wxFrame() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getStatusBar(This) -> wxStatusBar() (see module 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() (see module 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() (see module 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() (see module 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 = chardata() (see module unicode) .br .RE .RE .RS .LP Equivalent to \fBsetStatusText(This, Text, [])\fR\&\&. .RE .LP .B setStatusText(This, Text, Option::[Option]) -> ok .br .RS .LP Types: .RS 3 This = wxFrame() .br Text = chardata() (see module unicode) .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() (see module 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 <>