]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/keymap_extras/keymap_german_ch.h
Add standard definitions for ALGR and KC_ALGR (#4389)
[qmk_firmware.git] / quantum / keymap_extras / keymap_german_ch.h
1 /* Copyright 2016 heartsekai
2  *
3  * This program is free software: you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 2 of the License, or
6  * (at your option) any later version.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  */
16 #ifndef KEYMAP_SWISS_GERMAN
17 #define KEYMAP_SWISS_GERMAN
18
19 #include "keymap.h"
20
21 // Alt gr
22 #define CH_ALGR KC_RALT
23
24 // normal characters
25 #define CH_Z KC_Y
26 #define CH_Y KC_Z
27
28 #define CH_A KC_A
29 #define CH_B KC_B
30 #define CH_C KC_C
31 #define CH_D KC_D
32 #define CH_E KC_E
33 #define CH_F KC_F
34 #define CH_G KC_G
35 #ifdef CH_H
36 // The ChibiOS ch.h file defines this...
37 #undef CH_H
38 #endif
39 #define CH_H KC_H
40 #define CH_I KC_I
41 #define CH_J KC_J
42 #define CH_K KC_K
43 #define CH_L KC_L
44 #define CH_M KC_M
45 #define CH_N KC_N
46 #define CH_O KC_O
47 #define CH_P KC_P
48 #define CH_Q KC_Q
49 #define CH_R KC_R
50 #define CH_S KC_S
51 #define CH_T KC_T
52 #define CH_U KC_U
53 #define CH_V KC_V
54 #define CH_W KC_W
55 #define CH_X KC_X
56
57 #define CH_0 KC_0
58 #define CH_1 KC_1
59 #define CH_2 KC_2
60 #define CH_3 KC_3
61 #define CH_4 KC_4
62 #define CH_5 KC_5
63 #define CH_6 KC_6
64 #define CH_7 KC_7
65 #define CH_8 KC_8
66 #define CH_9 KC_9
67
68 #define CH_DOT KC_DOT
69 #define CH_COMM KC_COMM
70
71 #define CH_QUOT KC_MINS // ' ? ´
72 #define CH_AE KC_QUOT
73 #define CH_UE KC_LBRC
74 #define CH_OE KC_SCLN
75
76 #define CH_PARA KC_GRAVE // secction sign § and °
77 #define CH_CARR KC_EQL // carret ^ ` ~
78 #define CH_DIER KC_RBRC // dieresis ¨ ! ]
79 #define CH_DLR KC_BSLS // $ £ }
80 #define CH_LESS KC_NUBS // < and > and backslash
81 #define CH_MINS KC_SLSH // - and _
82
83 // shifted characters
84 #define CH_RING LSFT(CH_PARA) // °
85 #define CH_PLUS LSFT(KC_1) // +
86 #define CH_DQOT LSFT(KC_2) // "
87 #define CH_PAST LSFT(KC_3) // *
88 #define CH_CELA  LSFT(KC_4) // ç
89 #define CH_PERC LSFT(KC_5) // %
90 #define CH_AMPR LSFT(KC_6) // &
91 #define CH_SLSH LSFT(KC_7) // /
92 #define CH_LPRN LSFT(KC_8) // (
93 #define CH_RPRN LSFT(KC_9) // )
94 #define CH_EQL  LSFT(KC_0) // =
95 #define CH_QST  LSFT(CH_QUOT) // ?
96 #define CH_GRV  LSFT(CH_CARR) // `
97 #define CH_EXLM LSFT(CH_DIER) // !
98 #define CH_POND LSFT(CH_DLR) // £
99 #define CH_MORE LSFT(CH_LESS) // >
100 #define CH_COLN LSFT(KC_DOT) // :
101 #define CH_SCLN LSFT(KC_COMM) // ;
102 #define CH_UNDS LSFT(CH_MINS) // _
103
104 // Alt Gr-ed characters
105 #define CH_BRBR ALGR(KC_1) // ¦ brocken bar
106 #define CH_AT ALGR(KC_2) // @
107 #define CH_HASH ALGR(KC_3) // #
108 #define CH_NOTL ALGR(KC_6) // ¬ negative logic
109 #define CH_PIPE ALGR(KC_7) // |
110 #define CH_CENT ALGR(KC_8) // ¢ cent
111 #define CH_ACUT ALGR(CH_QUOT) // ´
112 #define CH_TILD ALGR(CH_CARR) // ~
113 #define CH_EURO ALGR(KC_E) // €
114 #define CH_LBRC ALGR(CH_UE) // [
115 #define CH_RBRC ALGR(CH_DIER) // ]
116 #define CH_LCBR ALGR(CH_AE) // {
117 #define CH_RCBR ALGR(CH_DLR) // }
118 #define CH_BSLS ALGR(CH_LESS) // backslash
119
120 #endif