Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wxdialog(3erl) [linux man page]

wxDialog(3erl)						     Erlang Module Definition						    wxDialog(3erl)

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

Check Out this Related Man Page

wxSplitterWindow(3erl)					     Erlang Module Definition					    wxSplitterWindow(3erl)

NAME
wxSplitterWindow - See external documentation: wxSplitterWindow. DESCRIPTION
See external documentation: wxSplitterWindow . This class is derived (and can use functions) from: wxWindow wxEvtHandler DATA TYPES
wxSplitterWindow() : 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() -> wxSplitterWindow() See external documentation . new(Parent::wxWindow() (see module wxWindow)) -> wxSplitterWindow() Equivalent to new(Parent, []) . new(Parent::wxWindow() (see module wxWindow), Options::[Option]) -> wxSplitterWindow() Types Option = {id, integer()} | {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} See external documentation . create(This::wxSplitterWindow(), Parent::wxWindow() (see module wxWindow)) -> bool() Equivalent to create(This, Parent, []) . create(This::wxSplitterWindow(), Parent::wxWindow() (see module wxWindow), Options::[Option]) -> bool() Types Option = {id, integer()} | {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} See external documentation . getMinimumPaneSize(This::wxSplitterWindow()) -> integer() See external documentation . getSashGravity(This::wxSplitterWindow()) -> float() See external documentation . getSashPosition(This::wxSplitterWindow()) -> integer() See external documentation . getSplitMode(This::wxSplitterWindow()) -> WxSplitMode Types WxSplitMode = integer() See external documentation . WxSplitMode is one of ?wxSPLIT_HORIZONTAL | ?wxSPLIT_VERTICAL getWindow1(This::wxSplitterWindow()) -> wxWindow() (see module wxWindow) See external documentation . getWindow2(This::wxSplitterWindow()) -> wxWindow() (see module wxWindow) See external documentation . initialize(This::wxSplitterWindow(), Window::wxWindow() (see module wxWindow)) -> ok See external documentation . isSplit(This::wxSplitterWindow()) -> bool() See external documentation . replaceWindow(This::wxSplitterWindow(), WinOld::wxWindow() (see module wxWindow), WinNew::wxWindow() (see module wxWindow)) -> bool() See external documentation . setSashGravity(This::wxSplitterWindow(), Gravity::float()) -> ok See external documentation . setSashPosition(This::wxSplitterWindow(), Position::integer()) -> ok Equivalent to setSashPosition(This, Position, []) . setSashPosition(This::wxSplitterWindow(), Position::integer(), Options::[Option]) -> ok Types Option = {redraw, bool()} See external documentation . setSashSize(This::wxSplitterWindow(), Width::integer()) -> ok See external documentation . setMinimumPaneSize(This::wxSplitterWindow(), Min::integer()) -> ok See external documentation . setSplitMode(This::wxSplitterWindow(), Mode::integer()) -> ok See external documentation . splitHorizontally(This::wxSplitterWindow(), Window1::wxWindow() (see module wxWindow), Window2::wxWindow() (see module wxWindow)) -> bool() Equivalent to splitHorizontally(This, Window1, Window2, []) . splitHorizontally(This::wxSplitterWindow(), Window1::wxWindow() (see module wxWindow), Window2::wxWindow() (see module wxWindow), Options::[Option]) -> bool() Types Option = {sashPosition, integer()} See external documentation . splitVertically(This::wxSplitterWindow(), Window1::wxWindow() (see module wxWindow), Window2::wxWindow() (see module wxWindow)) -> bool() Equivalent to splitVertically(This, Window1, Window2, []) . splitVertically(This::wxSplitterWindow(), Window1::wxWindow() (see module wxWindow), Window2::wxWindow() (see module wxWindow), Options::[Option]) -> bool() Types Option = {sashPosition, integer()} See external documentation . unsplit(This::wxSplitterWindow()) -> bool() Equivalent to unsplit(This, []) . unsplit(This::wxSplitterWindow(), Options::[Option]) -> bool() Types Option = {toRemove, wxWindow() (see module wxWindow)} See external documentation . updateSize(This::wxSplitterWindow()) -> ok See external documentation . destroy(This::wxSplitterWindow()) -> ok Destroys this object, do not use object again AUTHORS
<> wxErlang 0.98.9 wxSplitterWindow(3erl)
Man Page