C# Class Mono.Terminal.Entry

Text data entry widget
The Entry widget provides Emacs-like editing functionality, and mouse support.
Inheritance: Widget
Mostrar archivo Open project: mono/mono-curses Class Usage Examples

Public Methods

Method Description
Entry ( int x, int y, int w, string s ) : System

Public constructor.

PositionCursor ( ) : void

Sets the cursor position.

ProcessKey ( int key ) : bool
ProcessMouse ( Curses ev ) : void
Redraw ( ) : void

Private Methods

Method Description
Adjust ( ) : void
SetText ( string new_text ) : void
WordBackward ( int p ) : int
WordForward ( int p ) : int

Method Details

Entry() public method

Public constructor.
public Entry ( int x, int y, int w, string s ) : System
x int
y int
w int
s string
return System

PositionCursor() public method

Sets the cursor position.
public PositionCursor ( ) : void
return void

ProcessKey() public method

public ProcessKey ( int key ) : bool
key int
return bool

ProcessMouse() public method

public ProcessMouse ( Curses ev ) : void
ev Curses
return void

Redraw() public method

public Redraw ( ) : void
return void