2 Virtual Terminal
These modules provide an abstraction layer on top of the underlying VT-capable terminal. The infrastructure provided decodes the incoming keys, mouse events and terminal type and size changes.
2.1 Geometry Handling
(require tui/term/geometry) | package: tui-term |
This module provides basic data structures for handling rectangular geometry in Cartesian coordinates on the terminal grid.
struct
x : exact-integer? y : exact-integer?
struct
w : exact-nonnegative-integer? h : exact-nonnegative-integer?
2.2 Messages
(require tui/term/messages) | package: tui-term |
All the incoming information including decoded keystrokes, mouse movement and window size changes are reported as messages defined in this module. A generic "command" message is defined as well to be used by the application layer.
Use make-tmsg to construct it - although this base struct does not provide any further functionality other than the time when the message was emitted.
procedure
(tkeymsg=? km [ #:key key #:mods mods #:char char]) → boolean? km : tkeymsg? key : (or/c #f char? symbol?) = #f mods : (or/c #f (listof (or/c 'ctrl 'alt 'shift))) = #f char : (or/c #f char?) = #f
procedure
(make-tkeymsg key [mods]) → tkeymsg?
key : (or/c char? symbol?) mods : (listof symbol?) = '()
struct
kind :
(or/c 'move 'button-down 'button-up 'wheel-up 'wheel-down) pos : any/c left : boolean? right : boolean? middle : boolean? button : (or/c #f 'left 'right 'middle)
pos - TODO after porting tpoint/geometry
The left, right and middle fields are #t if particular mouse button is held down when this message was generated.
In case of 'button-down or 'button-up kinds of an event, the button field holds the information about the button being pushed or released.
procedure
(make-tmousemsg kind pos left right middle [ button]) → tmousemsg? kind : symbol? pos : any/c left : boolean? right : boolean? middle : boolean? button : (or/c #f 'left 'right 'middle) = #f
struct
cols : exact-nonnegative-integer? rows : exact-nonnegative-integer?
procedure
(make-tsizemsg cols rows) → tsizemsg?
cols : exact-nonnegative-integer? rows : exact-nonnegative-integer?
procedure
(make-tcmdmsg cmd [info]) → tcmdmsg?
cmd : any/c info : any/c = #f
procedure
(make-tmousemsg-leave msg) → tmousemsg?
msg : tmousemsg?
2.3 VT Input Port
(require tui/term/vt-input-port) | package: tui-term |
Input port wrapper converting stream of ANSI/ECMA (VT) sequences into appropriate messages.
procedure
(vt-input-port? v) → boolean?
v : any/c
procedure
(make-vt-input-port queue [in]) → vt-input-port?
queue : tqueue? in : input-port = (current-input-port)
parameter
(vt-esc-timeout ms) → void? ms : exact-nonnegative-integer?
= 10
procedure
(vt-input-port-enqueue! msg [in]) → void?
msg : tmsg? in : vt-input-port? = (current-input-port)
2.4 VT Output Port
(require tui/term/vt-output-port) | package: tui-term |
This module contains convenience procedures that allow for easy setup and usage of various ANSI/ECMA VT features.
procedure
(term-gotoxy x y) → void?
x : fixnum? y : fixnum?
procedure
(term-clrscr) → void?
procedure
May use platform hook to alter the settings of local input terminal - currently only on Windows.
procedure
May use platform hook to alter the settings of local input terminal - currently only on Windows.
procedure
procedure
procedure
procedure
procedure
(set-term-title title) → void?
title : string?