// $Xorg: de,v 1.3 2000/08/17 19:54:42 cpqbld Exp $ // $XFree86: xc/programs/xkbcomp/symbols/de,v 3.14 2003/09/08 13:12:37 pascal Exp $ default partial alphanumeric_keys xkb_symbols "basic" { // Describes the differences between a very simple US/ASCII // keyboard and a very simple German keyboard // Alphanumeric section name[Group1]= "German"; key { [ dead_circumflex, degree ], [ notsign ] }; key { [ 2, quotedbl ], [ twosuperior ] }; key { [ 3, section ], [ threesuperior,sterling ] }; key { [ 4, dollar ], [ onequarter, currency ] }; key { [ 5, percent ], [ onehalf ] }; key { [ 6, ampersand ], [ threequarters ] }; key { [ 7, slash ], [ braceleft ] }; key { [ 8, parenleft ], [ bracketleft ] }; key { [ 9, parenright ], [ bracketright, plusminus ] }; key { [ 0, equal ], [ braceright, degree ] }; key { [ ssharp, question ], [ backslash, questiondown ] }; key { [ dead_acute, dead_grave ], [ dead_cedilla, dead_ogonek ] }; key { [ q, Q ], [ at ] }; key { [ e, E ], [ EuroSign ] }; key { [ t, T ] }; key { [ z, Z ] }; key { [ u, U ] }; key { [ i, I ] }; key { [ udiaeresis, Udiaeresis ], [ dead_diaeresis ] }; key { [ plus, asterisk ], [ dead_tilde, dead_macron ] }; key { [ f, F ] }; key { [ g, G ] }; key { [ odiaeresis, Odiaeresis ], [ dead_doubleacute ] }; key { [ adiaeresis, Adiaeresis ], [ dead_circumflex ] }; key { [ less, greater ], [ bar ] }; key { [ y, Y ], [ guillemotleft,less ] }; key { [ m, M ], [ mu ] }; key { [ comma, semicolon ] }; key { [ period, colon ], [ periodcentered, division ] }; key { [ minus, underscore ] }; key { [ numbersign, apostrophe ], [ dead_grave ] }; key { [ Mode_switch, Multi_key ] }; // End alphanumeric section, begin "Keypad" key { [ KP_Delete, KP_Separator ] }; // End "Keypad" section // begin modifier mappings modifier_map Shift { Shift_L }; modifier_map Lock { Caps_Lock }; modifier_map Control{ Control_L }; modifier_map Mod3 { Mode_switch }; }; partial alphanumeric_keys xkb_symbols "nodeadkeys" { // modify the default German layout to not have any dead keys include "de(basic)" key { [ asciicircum, degree ], [ notsign ] }; key { [ apostrophe, grave ], [ cedilla ] }; key { [ udiaeresis, Udiaeresis ], [ diaeresis ] }; key { [ plus, asterisk ], [ asciitilde, macron ] }; key { [ odiaeresis, Odiaeresis ], [ doubleacute ] }; key { [ adiaeresis, Adiaeresis ], [ asciicircum ] }; key { [ numbersign, apostrophe ], [ grave ] }; }; partial alphanumeric_keys xkb_symbols "deadgraveacute" { // modify the default German layout to have only acute and grave // as dead keys (tilde and circumflex are needed as spacing characters // in many programming languages) include "de(basic)" key { [ asciicircum, degree ], [ notsign ] }; key { [ plus, asterisk ], [ asciitilde, dead_macron ] }; key { [ numbersign, apostrophe ], [ grave ] }; }; partial alphanumeric_keys xkb_symbols "deadacute" { // modify the default German layout to have only acute as // dead keys (ASCII grave, tilde and circumflex are needed as // spacing characters in many programming languages and text formatters) include "de(deadgraveacute)" key { [ dead_acute, grave ], [ dead_cedilla, dead_ogonek ] }; key { [ numbersign, apostrophe ], [ dead_grave ] }; }; partial alphanumeric_keys xkb_symbols "de_ro" { // add romanian-specific characters to the basic German layout. // Romanian symbols are accessible with combination of and // 'a', 's', 't', 'i', 'รค (ä)' (+ for capital letters). // To view romanian specific symbols, add "export LC_CTYPE=ro_RO" // or "export LC_CTYPE=de_DE.utf8" to your .profile. include "de(basic)" name[Group1]="Romanian for German keyboard"; key { [ t, T ], [ tcedilla, Tcedilla ] }; key { [ i, I ], [ icircumflex, Icircumflex ] }; key { [ a, A ], [ acircumflex, Acircumflex ] }; key { [ s, S ], [ scedilla, Scedilla ] }; key { [ adiaeresis, Adiaeresis ], [ abreve, Abreve ] }; }; partial alphanumeric_keys xkb_symbols "de_ro_nodeadkeys" { // add romanian-specific characters to the "nodeadkeys" German layout. // Read the comment for de_ro ! include "de(nodeadkeys)" key { [ t, T ], [ tcedilla, Tcedilla ] }; key { [ i, I ], [ icircumflex, Icircumflex ] }; key { [ a, A ], [ acircumflex, Acircumflex ] }; key { [ s, S ], [ scedilla, Scedilla ] }; key { [ adiaeresis, Adiaeresis ], [ abreve, Abreve ] }; };