[Overview][Constants][Types][Procedures and functions][Index] Reference for unit 'keyboard' (#rtl)

TTreeElement

Tree element

Declaration

Source position: keyboard.pp line 36

type TTreeElement = record

  Next: PTreeElement;

  

Reference to next scancode in the tree

  Parent: PTreeElement;

  

Reference to parent scancode in the tree

  Child: PTreeElement;

  

Reference to child scancode in the tree

  CanBeTerminal: Boolean;

  

This scancode is possibly the last of a sequence scancode

  char: Byte;

  

Key Character

  ScanValue: Byte;

  

Key scancode

  CharValue: Byte;

  

Character value for scancode

  SpecialHandler: Tprocedure;

  

Procedure to handle this sequence

end;

Description

TTreeELement is used to describe key scancode sequences, and is used to handle special key combinations in AddSpecialSequence on unix platforms. There should be no need to handle records of this type.

See also

AddSpecialSequence

  

Add a handler for a special key sequence


Documentation generated on: Nov 14 2015