.TH wxDialog 3erl "wx 1.3.1" "" "Erlang Module Definition" .SH NAME wxDialog \- See external documentation: wxDialog. .SH DESCRIPTION .LP See external documentation: wxDialog\&. .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 \fIwxDialog()\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() -> wxDialog() .br .RS .LP See external documentation\&. .RE .LP .B new(Parent, Id, Title) -> wxDialog() .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]) -> wxDialog() .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 = wxDialog() .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 = wxDialog() .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 createButtonSizer(This, Flags) -> wxSizer() (see module wxSizer) .br .RS .LP Types: .RS 3 This = wxDialog() .br Flags = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B createStdDialogButtonSizer(This, Flags) -> wxStdDialogButtonSizer() (see module wxStdDialogButtonSizer) .br .RS .LP Types: .RS 3 This = wxDialog() .br Flags = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B endModal(This, RetCode) -> ok .br .RS .LP Types: .RS 3 This = wxDialog() .br RetCode = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getAffirmativeId(This) -> integer() .br .RS .LP Types: .RS 3 This = wxDialog() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getReturnCode(This) -> integer() .br .RS .LP Types: .RS 3 This = wxDialog() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B isModal(This) -> boolean() .br .RS .LP Types: .RS 3 This = wxDialog() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B setAffirmativeId(This, AffirmativeId) -> ok .br .RS .LP Types: .RS 3 This = wxDialog() .br AffirmativeId = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B setReturnCode(This, ReturnCode) -> ok .br .RS .LP Types: .RS 3 This = wxDialog() .br ReturnCode = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B show(This) -> boolean() .br .RS .LP Types: .RS 3 This = wxDialog() .br .RE .RE .RS .LP Equivalent to \fBshow(This, [])\fR\&\&. .RE .LP .B show(This, Option::[Option]) -> boolean() .br .RS .LP Types: .RS 3 This = wxDialog() .br Option = {show, boolean()} .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B showModal(This) -> integer() .br .RS .LP Types: .RS 3 This = wxDialog() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B destroy(This::wxDialog()) -> ok .br .RS .LP Destroys this object, do not use object again .RE .SH AUTHORS .LP .I <>