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() (see module wxWindow)
Id = integer()
Title = chardata() (see module unicode)
-
Parent = wxWindow() (see module wxWindow)
-
Equivalent to new(Parent, Id, Title, []).
new(Parent, Id, Title, Options::[Option]) -> wxDialog()
-
Types:
-
Parent = wxWindow() (see module wxWindow)
Id = integer()
Title = chardata() (see module unicode)
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}
-
Parent = wxWindow() (see module wxWindow)
-
See external documentation.
create(This, Parent, Id, Title) -> boolean()
-
Types:
-
This = wxDialog()
Parent = wxWindow() (see module wxWindow)
Id = integer()
Title = chardata() (see module unicode)
-
This = wxDialog()
-
Equivalent to create(This, Parent, Id, Title, []).
create(This, Parent, Id, Title, Options::[Option]) -> boolean()
-
Types:
-
This = wxDialog()
Parent = wxWindow() (see module wxWindow)
Id = integer()
Title = chardata() (see module unicode)
Option = {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()}
-
This = wxDialog()
-
See external documentation.
createButtonSizer(This, Flags) -> wxSizer() (see module wxSizer)
-
Types:
-
This = wxDialog()
Flags = integer()
-
This = wxDialog()
-
See external documentation.
createStdDialogButtonSizer(This, Flags) -> wxStdDialogButtonSizer() (see module wxStdDialogButtonSizer)
-
Types:
-
This = wxDialog()
Flags = integer()
-
This = wxDialog()
-
See external documentation.
endModal(This, RetCode) -> ok
-
Types:
-
This = wxDialog()
RetCode = integer()
-
This = wxDialog()
-
See external documentation.
getAffirmativeId(This) -> integer()
-
Types:
-
This = wxDialog()
-
This = wxDialog()
-
See external documentation.
getReturnCode(This) -> integer()
-
Types:
-
This = wxDialog()
-
This = wxDialog()
-
See external documentation.
isModal(This) -> boolean()
-
Types:
-
This = wxDialog()
-
This = wxDialog()
-
See external documentation.
setAffirmativeId(This, AffirmativeId) -> ok
-
Types:
-
This = wxDialog()
AffirmativeId = integer()
-
This = wxDialog()
-
See external documentation.
setReturnCode(This, ReturnCode) -> ok
-
Types:
-
This = wxDialog()
ReturnCode = integer()
-
This = wxDialog()
-
See external documentation.
show(This) -> boolean()
-
Types:
-
This = wxDialog()
-
This = wxDialog()
-
Equivalent to show(This, []).
show(This, Options::[Option]) -> boolean()
-
Types:
-
This = wxDialog()
Option = {show, boolean()}
-
This = wxDialog()
-
See external documentation.
showModal(This) -> integer()
-
Types:
-
This = wxDialog()
-
This = wxDialog()
-
See external documentation.
destroy(This::wxDialog()) -> ok
-
Destroys this object, do not use object again
AUTHORS
<>