Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wxkeyevent(3erl) [linux man page]

wxKeyEvent(3erl)					     Erlang Module Definition						  wxKeyEvent(3erl)

NAME
wxKeyEvent - See external documentation: wxKeyEvent. DESCRIPTION
See external documentation: wxKeyEvent . Use wxEvtHandler:connect/3 with EventType: : char , char_hook , key_down , key_up See also the message variant #wxKey{ } event record type. This class is derived (and can use functions) from: wxEvent DATA TYPES
wxKeyEvent() : 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
altDown(This::wxKeyEvent()) -> bool() See external documentation . cmdDown(This::wxKeyEvent()) -> bool() See external documentation . controlDown(This::wxKeyEvent()) -> bool() See external documentation . getKeyCode(This::wxKeyEvent()) -> integer() See external documentation . getModifiers(This::wxKeyEvent()) -> integer() See external documentation . getPosition(This::wxKeyEvent()) -> {X::integer(), Y::integer()} See external documentation . getRawKeyCode(This::wxKeyEvent()) -> integer() See external documentation . getRawKeyFlags(This::wxKeyEvent()) -> integer() See external documentation . getUnicodeKey(This::wxKeyEvent()) -> integer() See external documentation . getX(This::wxKeyEvent()) -> integer() See external documentation . getY(This::wxKeyEvent()) -> integer() See external documentation . hasModifiers(This::wxKeyEvent()) -> bool() See external documentation . metaDown(This::wxKeyEvent()) -> bool() See external documentation . shiftDown(This::wxKeyEvent()) -> bool() See external documentation . AUTHORS
<> wxErlang 0.98.9 wxKeyEvent(3erl)

Check Out this Related Man Page

wxTextCtrl(3erl)					     Erlang Module Definition						  wxTextCtrl(3erl)

NAME
wxTextCtrl - See external documentation: wxTextCtrl. DESCRIPTION
See external documentation: wxTextCtrl . This class is derived (and can use functions) from: wxControl wxWindow wxEvtHandler DATA TYPES
wxTextCtrl() : 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() -> wxTextCtrl() See external documentation . new(Parent::wxWindow() (see module wxWindow), Id::integer()) -> wxTextCtrl() Equivalent to new(Parent, Id, []) . new(Parent::wxWindow() (see module wxWindow), Id::integer(), Options::[Option]) -> wxTextCtrl() Types Option = {value, string()} | {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} | {validator, wx() (see module wx)} See external documentation . appendText(This::wxTextCtrl(), Text::string()) -> ok See external documentation . canCopy(This::wxTextCtrl()) -> bool() See external documentation . canCut(This::wxTextCtrl()) -> bool() See external documentation . canPaste(This::wxTextCtrl()) -> bool() See external documentation . canRedo(This::wxTextCtrl()) -> bool() See external documentation . canUndo(This::wxTextCtrl()) -> bool() See external documentation . clear(This::wxTextCtrl()) -> ok See external documentation . copy(This::wxTextCtrl()) -> ok See external documentation . create(This::wxTextCtrl(), Parent::wxWindow() (see module wxWindow), Id::integer()) -> bool() Equivalent to create(This, Parent, Id, []) . create(This::wxTextCtrl(), Parent::wxWindow() (see module wxWindow), Id::integer(), Options::[Option]) -> bool() Types Option = {value, string()} | {pos, {X::integer(), Y::integer()}} | {size, {W::integer(), H::integer()}} | {style, integer()} | {validator, wx() (see module wx)} See external documentation . cut(This::wxTextCtrl()) -> ok See external documentation . discardEdits(This::wxTextCtrl()) -> ok See external documentation . emulateKeyPress(This::wxTextCtrl(), Event::wxKeyEvent() (see module wxKeyEvent)) -> bool() See external documentation . getDefaultStyle(This::wxTextCtrl()) -> wxTextAttr() (see module wxTextAttr) See external documentation . getInsertionPoint(This::wxTextCtrl()) -> integer() See external documentation . getLastPosition(This::wxTextCtrl()) -> integer() See external documentation . getLineLength(This::wxTextCtrl(), LineNo::integer()) -> integer() See external documentation . getLineText(This::wxTextCtrl(), LineNo::integer()) -> string() See external documentation . getNumberOfLines(This::wxTextCtrl()) -> integer() See external documentation . getRange(This::wxTextCtrl(), From::integer(), To::integer()) -> string() See external documentation . getSelection(This::wxTextCtrl()) -> {From::integer(), To::integer()} See external documentation . getStringSelection(This::wxTextCtrl()) -> string() See external documentation . getStyle(This::wxTextCtrl(), Position::integer(), Style::wxTextAttr() (see module wxTextAttr)) -> bool() See external documentation . getValue(This::wxTextCtrl()) -> string() See external documentation . isEditable(This::wxTextCtrl()) -> bool() See external documentation . isModified(This::wxTextCtrl()) -> bool() See external documentation . isMultiLine(This::wxTextCtrl()) -> bool() See external documentation . isSingleLine(This::wxTextCtrl()) -> bool() See external documentation . loadFile(This::wxTextCtrl(), File::string()) -> bool() Equivalent to loadFile(This, File, []) . loadFile(This::wxTextCtrl(), File::string(), Options::[Option]) -> bool() Types Option = {fileType, integer()} See external documentation . markDirty(This::wxTextCtrl()) -> ok See external documentation . paste(This::wxTextCtrl()) -> ok See external documentation . positionToXY(This::wxTextCtrl(), Pos::integer()) -> {bool(), X::integer(), Y::integer()} See external documentation . redo(This::wxTextCtrl()) -> ok See external documentation . remove(This::wxTextCtrl(), From::integer(), To::integer()) -> ok See external documentation . replace(This::wxTextCtrl(), From::integer(), To::integer(), Value::string()) -> ok See external documentation . saveFile(This::wxTextCtrl()) -> bool() Equivalent to saveFile(This, []) . saveFile(This::wxTextCtrl(), Options::[Option]) -> bool() Types Option = {file, string()} | {fileType, integer()} See external documentation . setDefaultStyle(This::wxTextCtrl(), Style::wxTextAttr() (see module wxTextAttr)) -> bool() See external documentation . setEditable(This::wxTextCtrl(), Editable::bool()) -> ok See external documentation . setInsertionPoint(This::wxTextCtrl(), Pos::integer()) -> ok See external documentation . setInsertionPointEnd(This::wxTextCtrl()) -> ok See external documentation . setMaxLength(This::wxTextCtrl(), Len::integer()) -> ok See external documentation . setSelection(This::wxTextCtrl(), From::integer(), To::integer()) -> ok See external documentation . setStyle(This::wxTextCtrl(), Start::integer(), End::integer(), Style::wxTextAttr() (see module wxTextAttr)) -> bool() See external documentation . setValue(This::wxTextCtrl(), Value::string()) -> ok See external documentation . showPosition(This::wxTextCtrl(), Pos::integer()) -> ok See external documentation . undo(This::wxTextCtrl()) -> ok See external documentation . writeText(This::wxTextCtrl(), Text::string()) -> ok See external documentation . xYToPosition(This::wxTextCtrl(), X::integer(), Y::integer()) -> integer() See external documentation . destroy(This::wxTextCtrl()) -> ok Destroys this object, do not use object again AUTHORS
<> wxErlang 0.98.9 wxTextCtrl(3erl)
Man Page