TTreeElement
Tree element
Declaration
Source position: keyboard.pp line 35
Type
TTreeElement = record
Next : PTreeElement;
Parent : PTreeElement;
Child : PTreeElement;
CanBeTerminal : Boolean;
char : Byte;
ScanValue : Byte;
CharValue : Byte;
SpecialHandler : Tprocedure;
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
Name | Description |
---|---|
AddSpecialSequence | Add a handler for a special key sequence |
Byte | An unsigned 8-bits integer |
Byte | An unsigned 8-bits integer |
Byte | An unsigned 8-bits integer |
Tprocedure | Procedure prototype |