.TH wxDialog 3erl "wx 1.8" "" "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 wxDialog(): .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() -> \fBwxDialog()\fR\& .br .RS .LP See external documentation\&. .RE .LP .B new(Parent, Id, Title) -> \fBwxDialog()\fR\& .br .RS .LP Types: .RS 3 Parent = \fBwxWindow:wxWindow()\fR\& .br Id = integer() .br Title = \fBunicode:chardata()\fR\& .br .RE .RE .RS .LP Equivalent to \fBnew(Parent, Id, Title, [])\fR\&\&. .RE .LP .B new(Parent, Id, Title, Options::[Option]) -> \fBwxDialog()\fR\& .br .RS .LP Types: .RS 3 Parent = \fBwxWindow:wxWindow()\fR\& .br Id = integer() .br Title = \fBunicode:chardata()\fR\& .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 = \fBwxDialog()\fR\& .br Parent = \fBwxWindow:wxWindow()\fR\& .br Id = integer() .br Title = \fBunicode:chardata()\fR\& .br .RE .RE .RS .LP Equivalent to \fBcreate(This, Parent, Id, Title, [])\fR\&\&. .RE .LP .B create(This, Parent, Id, Title, Options::[Option]) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxDialog()\fR\& .br Parent = \fBwxWindow:wxWindow()\fR\& .br Id = integer() .br Title = \fBunicode:chardata()\fR\& .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) -> \fBwxSizer:wxSizer()\fR\& .br .RS .LP Types: .RS 3 This = \fBwxDialog()\fR\& .br Flags = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B createStdDialogButtonSizer(This, Flags) -> \fBwxStdDialogButtonSizer:wxStdDialogButtonSizer()\fR\& .br .RS .LP Types: .RS 3 This = \fBwxDialog()\fR\& .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 = \fBwxDialog()\fR\& .br RetCode = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getAffirmativeId(This) -> integer() .br .RS .LP Types: .RS 3 This = \fBwxDialog()\fR\& .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B getReturnCode(This) -> integer() .br .RS .LP Types: .RS 3 This = \fBwxDialog()\fR\& .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B isModal(This) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxDialog()\fR\& .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B setAffirmativeId(This, AffirmativeId) -> ok .br .RS .LP Types: .RS 3 This = \fBwxDialog()\fR\& .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 = \fBwxDialog()\fR\& .br ReturnCode = integer() .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B show(This) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxDialog()\fR\& .br .RE .RE .RS .LP Equivalent to \fBshow(This, [])\fR\&\&. .RE .LP .B show(This, Options::[Option]) -> boolean() .br .RS .LP Types: .RS 3 This = \fBwxDialog()\fR\& .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 = \fBwxDialog()\fR\& .br .RE .RE .RS .LP See external documentation\&. .RE .LP .B destroy(This::\fBwxDialog()\fR\&) -> ok .br .RS .LP Destroys this object, do not use object again .RE .SH AUTHORS .LP .I <>