On this page:
4.1 TTY Input Port
make-tty-input-port
tty-input-port-mouse-enable
tty-input-port-mouse-disable
4.2 TTY Output Port
make-tty-output-port
4.3 TTY Ports
make-tty-ports
4.4 TTY Term
make-tty-term
8.16.0.4

4 TeleTYpe Terminal🔗ℹ

Dominik Pantůček <dominik.pantucek@trustica.cz>

These modules unify handling of the low-level local terminal I/O on different platforms. Only make-tty-term should be used by any high-level code.

4.1 TTY Input Port🔗ℹ

 (require tui/term/tty-input-port) package: tui-term

This module provides the implementation of an terminal input port for local terminal device.

procedure

(make-tty-input-port [in 
  #:resize-handler resize-handler]) 
  input-port?
  in : input-port? = (current-input-port)
  resize-handler : 
(-> nonnegative-integer?
    nonnegative-integer?
    void?)
 = void
Creates a custom input-port? on top of given input port in which must be connected to the program’s terminal. The terminal is put into a raw mode, buffering is disabled and platform-dependent initialization is performed.

Used in platform hook (see tui/term/term-struct for more information) for enabling mouse on local terminals. Currently it is used only on Windows systems.

Similar to tty-input-port-mouse-enable - but it disables the mouse input instead.

4.2 TTY Output Port🔗ℹ

 (require tui/term/tty-output-port) package: tui-term

In this module the local terminal output port is implemented.

procedure

(make-tty-output-port [out])  output-port?

  out : output-port? = (current-output-port)
Performs output port setup (mainly on Windows) and returns a wrapper port which passes all writes to the underlying out port.

4.3 TTY Ports🔗ℹ

 (require tui/term/tty-ports) package: tui-term

This module ensures proper handling of low-level terminal initialization on different platforms and allows correct initialization of a pair of input and output ports.

procedure

(make-tty-ports #:resize-handler resize-handler)

  
input-port? output-port?
  resize-handler : (-> fixnum? fixnum? void?)
Creates a pair of input and output ports connected to local terminal after initializing the low-level facilities first.

A special initialization is performed upon first call to this procedure.

4.4 TTY Term🔗ℹ

 (require tui/term/tty) package: tui-term

This module wraps all the low-level TTY features into a standardized tterm? interface that can be directly used with with-term form.

procedure

(make-tty-term)  tterm?

Initializes the local terminal for interactive usage, creates appropriate I/O ports and returns the resulting tterm struct.