class RecvLine(insults.TerminalProtocol): (source)
Known subclasses: twisted.conch.recvline.HistoricRecvLine
TerminalProtocol
which adds line editing features.
Clients will be prompted for lines of input with all the usual features: character echoing, left and right arrow support for moving the cursor to different areas of the line buffer, backspace and delete for removing characters, and insert for toggling between typeover and insert mode. Tabs will be expanded to enough spaces to move the cursor to the next tabstop (every four characters by default). Enter causes the line buffer to be cleared and the line to be passed to the lineReceived() method which, by default, does nothing. Subclasses are responsible for redrawing the input prompt (this will probably change).
Method | character |
Undocumented |
Method | connection |
Called after a connection has been established. |
Method | current |
Undocumented |
Method | draw |
Write a line containing the current input prompt and the current line buffer at the current cursor position. |
Method | handle_ |
Undocumented |
Method | handle_ |
Undocumented |
Method | handle_ |
Undocumented |
Method | handle_ |
Undocumented |
Method | handle_ |
Undocumented |
Method | handle_ |
Undocumented |
Method | handle_ |
Undocumented |
Method | handle_ |
Undocumented |
Method | handle_ |
Undocumented |
Method | initialize |
Undocumented |
Method | keystroke |
A keystroke was received. |
Method | line |
Undocumented |
Method | set |
Undocumented |
Method | set |
Undocumented |
Method | terminal |
Called to indicate the size of the terminal. |
Method | unhandled |
Called when an unsupported control sequence is received. |
Constant | TABSTOP |
Undocumented |
Class Variable | pn |
Undocumented |
Class Variable | ps |
Undocumented |
Instance Variable | height |
Undocumented |
Instance Variable | key |
Undocumented |
Instance Variable | line |
Undocumented |
Instance Variable | line |
Undocumented |
Instance Variable | mode |
Undocumented |
Instance Variable | width |
Undocumented |
Class Variable | _log |
Undocumented |
Class Variable | _printable |
Undocumented |
Inherited from TerminalProtocol
:
Method | connection |
Called when the connection has been lost. |
Method | make |
Called with an ITerminalTransport when a connection is established. |
Instance Variable | terminal |
Undocumented |
twisted.conch.recvline.HistoricRecvLine
Called after a connection has been established.
Write a line containing the current input prompt and the current line buffer at the current cursor position.
A keystroke was received.
Each keystroke corresponds to one invocation of this method. keyID is a string identifier for that key. Printable characters are represented by themselves. Control keys, such as arrows and function keys, are represented with symbolic constants on ServerProtocol
.
Called to indicate the size of the terminal.
A terminal of 80x24 should be assumed if this method is not called. This method might not be called for real terminals.
Called when an unsupported control sequence is received.
Parameters | |
seq:str | The whole control sequence which could not be interpreted. |