1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// based on
// "a very simple Brasilian ABNT2 keybaord
// by Ricardo Y. Igarashi (iga@that.com.br)
// Adds suport for dead-keys in I18N applications
// by Conectiva (http://www.conectiva.com.br)"
//
// $XdotOrg: xc/programs/xkbcomp/symbols/pc/br,v 1.1.4.3 2004/03/05 13:41:32 eich Exp $
// $XFree86: xc/programs/xkbcomp/symbols/pc/br,v 1.3 2003/04/19 12:22:11 pascal Exp $
xkb_symbols "abnt2" {
include "pc/latin"
name[Group1]="Brazilian";
key <AE02> { [ 2, at, twosuperior, onehalf ] };
key <AE03> { [ 3, numbersign, threesuperior, threequarters ] };
key <AE04> { [ 4, dollar, sterling, onequarter ] };
key <AE05> { [ 5, percent, cent, threeeighths ] };
key <AE06> { [ 6, dead_diaeresis, notsign, diaeresis ] };
key <AE12> { [ equal, plus, section, dead_ogonek ] };
key <AD03> { [ e, E, EuroSign, EuroSign ] };
key <AD04> { [ r, R, registered, registered ] };
key <AD11> { [dead_acute, dead_grave, acute, grave ] };
key <AD12> { [bracketleft, braceleft, ordfeminine, dead_macron ] };
key <AC10> { [ ccedilla, Ccedilla, dead_acute, dead_doubleacute] };
key <AC11> { [dead_tilde, dead_circumflex, asciitilde, asciicircum ] };
key <AC12> { [bracketright, braceright, masculine, masculine ] };
key <TLDE> { [apostrophe, quotedbl, notsign, notsign ] };
key <BKSL> { [ backslash, bar, masculine, dead_breve ] };
key <AB03> { [ c, C, copyright, copyright ] };
key <AB07> { [ m, M, mu, mu ] };
key <AB10> { [ semicolon, colon, dead_belowdot, dead_abovedot ] };
// ABNT-2 keyboard has this special key
key <AB11> { [ slash, question, degree, questiondown ] };
key <KPPT> { [KP_Decimal ] };
key <KPDL> { [ KP_Delete, comma ] };
include "level3(ralt_switch_multikey)"
};
partial alphanumeric_keys
xkb_symbols "nodeadkeys" {
include "pc/br(abnt2)" // for consistent naming
key <AE06> { [ 6, diaeresis, notsign, notsign ] };
key <AD11> { [apostrophe, grave ] };
key <AC10> { [ ccedilla, Ccedilla, acute, doubleacute ] };
key <AC11> { [asciitilde, asciicircum ] };
key <AB10> { [ semicolon, colon, dead_belowdot, abovedot ] };
};
|