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

dbus-interfacejenkinsmain
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: 3.1 KB
Line 
1# [linux.keytab] Konsole Keyboard Table (Linux console keys)
2#
3# --------------------------------------------------------------
4
5# NOT TESTED, MAY NEED SOME CLEANUPS
6keyboard "Linux console"
7
8# --------------------------------------------------------------
9#
10# This configuration table allows to customize the
11# meaning of the keys.
12#
13# The syntax is that each entry has the form :
14#
15#   "key" Keyname { ("+"|"-") Modename } ":" (String|Operation)
16#
17# Keynames are those defined in <qnamespace.h> with the
18# "Qt::Key_" removed. (We'd better insert the list here)
19#
20# Mode names are :
21#
22# - Shift
23# - Alt
24# - Control
25#
26#   The VT100 emulation has two modes that can affect the
27#   sequences emitted by certain keys. These modes are
28#   under control of the client program.
29#   
30# - Newline     : effects Return and Enter key.
31# - Application : effects Up and Down key.
32#
33# - Ansi        : effects Up and Down key (This is for VT52, really).
34#
35# Operations are
36#
37# - scrollUpLine
38# - scrollUpPage
39# - scrollDownLine
40# - scrollDownPage
41#
42# - emitSelection
43#
44# If the key is not found here, the text of the
45# key event as provided by QT is emitted, possibly
46# preceeded by ESC if the Alt key is pressed.
47#
48# --------------------------------------------------------------
49
50key Escape : "\E"
51key Tab    : "\t"
52
53# VT100 can add an extra \n after return.
54# The NewLine mode is set by an escape sequence.
55
56key Return-NewLine : "\r" 
57key Return+NewLine : "\r\n"
58
59# Some desperately try to save the ^H.
60
61key Backspace : "\x7f"
62key Delete    : "\E[3~"
63
64# These codes are for the VT52 mode of VT100
65# The Ansi mode (i.e. VT100 mode) is set by
66# an escape sequence
67
68key Up   -Shift-Ansi : "\EA"
69key Down -Shift-Ansi : "\EB"
70key Right-Shift-Ansi : "\EC"
71key Left -Shift-Ansi : "\ED"
72
73# VT100 emits a mode bit together
74# with the arrow keys.The AppCuKeys
75# mode is set by an escape sequence.
76
77key Up   -Shift+Ansi+AppCuKeys : "\EOA"
78key Down -Shift+Ansi+AppCuKeys : "\EOB"
79key Right-Shift+Ansi+AppCuKeys : "\EOC"
80key Left -Shift+Ansi+AppCuKeys : "\EOD"
81
82key Up   -Shift+Ansi-AppCuKeys : "\E[A"
83key Down -Shift+Ansi-AppCuKeys : "\E[B"
84key Right-Shift+Ansi-AppCuKeys : "\E[C"
85key Left -Shift+Ansi-AppCuKeys : "\E[D"
86
87# linux functions keys F1-F5 differ from xterm
88
89key F1 : "\E[[A"
90key F2 : "\E[[B"
91key F3 : "\E[[C"
92key F4 : "\E[[D"
93key F5 : "\E[[E"
94
95key F6     : "\E[17~"
96key F7     : "\E[18~"
97key F8     : "\E[19~"
98key F9     : "\E[20~"
99key F10    : "\E[21~"
100key F11    : "\E[23~"
101key F12    : "\E[24~"
102
103key Home   : "\E[1~" 
104key End    : "\E[4~" 
105
106key Prior -Shift : "\E[5~" 
107key Next  -Shift : "\E[6~" 
108key Insert-Shift : "\E[2~" 
109
110# Keypad-Enter. See comment on Return above.
111
112key Enter+NewLine : "\r\n"
113key Enter-NewLine : "\r" 
114
115key Space +Control : "\x00"
116
117# some of keys are used by konsole.
118
119key Up    +Shift   : scrollLineUp
120key Prior +Shift   : scrollPageUp
121key Down  +Shift   : scrollLineDown
122key Next  +Shift   : scrollPageDown
123
124key ScrollLock     : scrollLock
125
126#----------------------------------------------------------
127
128# keypad characters as offered by Qt
129# cannot be recognized as such.
130
131#----------------------------------------------------------
132
133# Following other strings as emitted by konsole.
Note: See TracBrowser for help on using the repository browser.