source: ogBrowser-Git/qtermwidget/src/kb-layouts/vt420pc.keytab @ 35c9d5b

dbus-interfacejenkinsmainshutdown-environment
Last change on this file since 35c9d5b was 050d67a, checked in by adelcastillo <adelcastillo@…>, 16 years ago

Ahora el browser tiene consola en vez del output.
Pasado todo el sistema de compilacion a cmake.

git-svn-id: https://opengnsys.es/svn/trunk@408 a21b9725-9963-47de-94b9-378ad31fedc9

  • Property mode set to 100644
File size: 4.2 KB
RevLine 
[050d67a]1# [vt420pc.keytab] Konsole Keyboard Table (VT420pc keys)
2# adapted by ferdinand gassauer f.gassauer@aon.at
3# Nov 2000
4#
5################################################################
6#
7# The escape sequences emmited by the
8# keys Shift+F1 to Shift+F12 might not fit your needs
9#
10################# IMPORTANT NOTICE #############################
11# the key bindings (Kcontrol -> look and feel -> keybindgs)
12# overrule the settings in this file. The key bindings might be
13# changed by the user WITHOUT notification of the maintainer of
14# the keytab file. Konsole will not work as expected by
15# the maintainer of the keytab file.
16################################################################
17#
18# --------------------------------------------------------------
19
20keyboard "DEC VT420 Terminal"
21
22# --------------------------------------------------------------
23#
24# This configuration table allows to customize the
25# meaning of the keys.
26#
27# The syntax is that each entry has the form :
28#
29#   "key" Keyname { ("+"|"-") Modename } ":" (String|Operation)
30#
31# Keynames are those defined in <qnamespace.h> with the
32# "Qt::Key_" removed. (We'd better insert the list here)
33#
34# Mode names are :
35#
36# - Shift
37# - Alt
38# - Control
39#
40#   The VT100 emulation has two modes that can affect the
41#   sequences emitted by certain keys. These modes are
42#   under control of the client program.
43#   
44# - Newline     : effects Return and Enter key.
45# - Application : effects Up and Down key.
46#
47# - Ansi        : effects Up and Down key (This is for VT52, really).
48#
49# Operations are
50#
51# - scrollUpLine
52# - scrollUpPage
53# - scrollDownLine
54# - scrollDownPage
55#
56# - emitSelection
57#
58# If the key is not found here, the text of the
59# key event as provided by QT is emitted, possibly
60# preceeded by ESC if the Alt key is pressed.
61#
62# --------------------------------------------------------------
63
64key Escape : "\E"
65key Tab    : "\t"
66key Backtab: "\E[Z"
67
68# VT100 can add an extra \n after return.
69# The NewLine mode is set by an escape sequence.
70
71key Return-NewLine : "\r" 
72key Return+NewLine : "\r\n"
73
74# Some desperately try to save the ^H.
75# may be not everyone wants this
76
77key Backspace : "\x08"  # Control H
78key Delete    : "\x7f"
79
80# These codes are for the VT420pc
81# The Ansi mode (i.e. VT100 mode) is set by
82# an escape sequence
83
84key Up   -Shift-Ansi : "\EA"
85key Down -Shift-Ansi : "\EB"
86key Right-Shift-Ansi : "\EC"
87key Left -Shift-Ansi : "\ED"
88
89# VT100 emits a mode bit together
90# with the arrow keys.The AppCuKeys
91# mode is set by an escape sequence.
92
93key Up   -Shift+Ansi+AppCuKeys : "\EOA"
94key Down -Shift+Ansi+AppCuKeys : "\EOB"
95key Right-Shift+Ansi+AppCuKeys : "\EOC"
96key Left -Shift+Ansi+AppCuKeys : "\EOD"
97
98key Up   -Shift+Ansi-AppCuKeys : "\E[A"
99key Down -Shift+Ansi-AppCuKeys : "\E[B"
100key Right-Shift+Ansi-AppCuKeys : "\E[C"
101key Left -Shift+Ansi-AppCuKeys : "\E[D"
102
103# function keys
104
105key F1 -Shift    : "\E[11~" 
106key F2 -Shift    : "\E[12~"
107key F3 -Shift    : "\E[13~"
108key F4 -Shift    : "\E[14~"
109key F5 -Shift    : "\E[15~"
110key F6 -Shift    : "\E[17~"
111key F7 -Shift    : "\E[18~"
112key F8 -Shift    : "\E[19~"
113key F9 -Shift    : "\E[20~"
114key F10-Shift    : "\E[21~"
115key F11-Shift    : "\E[23~"
116key F12-Shift    : "\E[24~" 
117#
118# Shift F1-F12
119#
120key F1 +Shift    : "\E[11;2~"
121key F2 +Shift    : "\E[12;2~"
122key F3 +Shift    : "\E[13;2~"
123key F4 +Shift    : "\E[14;2~"
124key F5 +Shift    : "\E[15;2~"
125key F6 +Shift    : "\E[17;2~"
126key F7 +Shift    : "\E[18;2~"
127key F8 +Shift    : "\E[19;2~"
128key F9 +Shift    : "\E[20;2~"
129key F10+Shift    : "\E[21;2~"
130key F11+Shift    : "\E[23;2~"
131key F12+Shift    : "\E[24;2~"
132
133key Home   : "\E[H" 
134key End    : "\E[F" 
135
136key Prior -Shift : "\E[5~" 
137key Next  -Shift : "\E[6~" 
138key Insert-Shift : "\E[2~" 
139
140# Keypad-Enter. See comment on Return above.
141
142key Enter+NewLine : "\r\n"
143key Enter-NewLine : "\r" 
144
145key Space +Control : "\x00"
146
147# some of keys are used by konsole.
148
149key Up    +Shift   : scrollLineUp
150key Prior +Shift   : scrollPageUp
151key Down  +Shift   : scrollLineDown
152key Next  +Shift   : scrollPageDown
153
154key ScrollLock     : scrollLock
155
156#----------------------------------------------------------
157
158# keypad characters as offered by Qt
159# cannot be recognized as such.
160
161#----------------------------------------------------------
162
163# Following other strings as emitted by konsole.
Note: See TracBrowser for help on using the repository browser.