Provided by: erlang-manpages_20.2.2+dfsg-1ubuntu2_all
NAME
wxDialog - See external documentation: wxDialog.
DESCRIPTION
See external documentation: wxDialog. This class is derived (and can use functions) from: wxTopLevelWindow wxWindow wxEvtHandler
DATA TYPES
wxDialog(): 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() -> wxDialog() See external documentation. new(Parent, Id, Title) -> wxDialog() Types: Parent = wxWindow:wxWindow() Id = integer() Title = unicode:chardata() Equivalent to new(Parent, Id, Title, []). new(Parent, Id, Title, Options::[Option]) -> wxDialog() 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. create(This, Parent, Id, Title) -> boolean() Types: This = wxDialog() Parent = wxWindow:wxWindow() Id = integer() Title = unicode:chardata() Equivalent to create(This, Parent, Id, Title, []). create(This, Parent, Id, Title, Options::[Option]) -> boolean() Types: This = wxDialog() Parent = wxWindow:wxWindow() Id = integer() Title = unicode:chardata() Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} See external documentation. createButtonSizer(This, Flags) -> wxSizer:wxSizer() Types: This = wxDialog() Flags = integer() See external documentation. createStdDialogButtonSizer(This, Flags) -> wxStdDialogButtonSizer:wxStdDialogButtonSizer() Types: This = wxDialog() Flags = integer() See external documentation. endModal(This, RetCode) -> ok Types: This = wxDialog() RetCode = integer() See external documentation. getAffirmativeId(This) -> integer() Types: This = wxDialog() See external documentation. getReturnCode(This) -> integer() Types: This = wxDialog() See external documentation. isModal(This) -> boolean() Types: This = wxDialog() See external documentation. setAffirmativeId(This, AffirmativeId) -> ok Types: This = wxDialog() AffirmativeId = integer() See external documentation. setReturnCode(This, ReturnCode) -> ok Types: This = wxDialog() ReturnCode = integer() See external documentation. show(This) -> boolean() Types: This = wxDialog() Equivalent to show(This, []). show(This, Options::[Option]) -> boolean() Types: This = wxDialog() Option = {show, boolean()} See external documentation. showModal(This) -> integer() Types: This = wxDialog() See external documentation. destroy(This::wxDialog()) -> ok Destroys this object, do not use object again
AUTHORS
<> wx 1.8.3 wxDialog(3erl)