]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/keymap_extras/keymap_german_ch.h
Add user-overridable callback for cancelling UCIS input (#5564)
[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 // normal characters
22 #define CH_Z KC_Y
23 #define CH_Y KC_Z
24
25 #define CH_A KC_A
26 #define CH_B KC_B
27 #define CH_C KC_C
28 #define CH_D KC_D
29 #define CH_E KC_E
30 #define CH_F KC_F
31 #define CH_G KC_G
32 #ifdef CH_H
33 // The ChibiOS ch.h file defines this...
34 #undef CH_H
35 #endif
36 #define CH_H KC_H
37 #define CH_I KC_I
38 #define CH_J KC_J
39 #define CH_K KC_K
40 #define CH_L KC_L
41 #define CH_M KC_M
42 #define CH_N KC_N
43 #define CH_O KC_O
44 #define CH_P KC_P
45 #define CH_Q KC_Q
46 #define CH_R KC_R
47 #define CH_S KC_S
48 #define CH_T KC_T
49 #define CH_U KC_U
50 #define CH_V KC_V
51 #define CH_W KC_W
52 #define CH_X KC_X
53
54 #define CH_0 KC_0
55 #define CH_1 KC_1
56 #define CH_2 KC_2
57 #define CH_3 KC_3
58 #define CH_4 KC_4
59 #define CH_5 KC_5
60 #define CH_6 KC_6
61 #define CH_7 KC_7
62 #define CH_8 KC_8
63 #define CH_9 KC_9
64
65 #define CH_DOT KC_DOT
66 #define CH_COMM KC_COMM
67
68 #define CH_QUOT KC_MINS // ' ? ´
69 #define CH_AE KC_QUOT
70 #define CH_UE KC_LBRC
71 #define CH_OE KC_SCLN
72
73 #define CH_PARA KC_GRAVE // secction sign § and °
74 #define CH_CARR KC_EQL // carret ^ ` ~
75 #define CH_DIER KC_RBRC // dieresis ¨ ! ]
76 #define CH_DLR KC_BSLS // $ £ }
77 #define CH_LESS KC_NUBS // < and > and backslash
78 #define CH_MINS KC_SLSH // - and _
79
80 // shifted characters
81 #define CH_RING LSFT(CH_PARA) // °
82 #define CH_PLUS LSFT(KC_1) // +
83 #define CH_DQOT LSFT(KC_2) // "
84 #define CH_PAST LSFT(KC_3) // *
85 #define CH_CELA  LSFT(KC_4) // ç
86 #define CH_PERC LSFT(KC_5) // %
87 #define CH_AMPR LSFT(KC_6) // &
88 #define CH_SLSH LSFT(KC_7) // /
89 #define CH_LPRN LSFT(KC_8) // (
90 #define CH_RPRN LSFT(KC_9) // )
91 #define CH_EQL  LSFT(KC_0) // =
92 #define CH_QST  LSFT(CH_QUOT) // ?
93 #define CH_GRV  LSFT(CH_CARR) // `
94 #define CH_EXLM LSFT(CH_DIER) // !
95 #define CH_POND LSFT(CH_DLR) // £
96 #define CH_MORE LSFT(CH_LESS) // >
97 #define CH_COLN LSFT(KC_DOT) // :
98 #define CH_SCLN LSFT(KC_COMM) // ;
99 #define CH_UNDS LSFT(CH_MINS) // _
100
101 // Alt Gr-ed characters
102 #define CH_BRBR ALGR(KC_1) // ¦ brocken bar
103 #define CH_AT ALGR(KC_2) // @
104 #define CH_HASH ALGR(KC_3) // #
105 #define CH_NOTL ALGR(KC_6) // ¬ negative logic
106 #define CH_PIPE ALGR(KC_7) // |
107 #define CH_CENT ALGR(KC_8) // ¢ cent
108 #define CH_ACUT ALGR(CH_QUOT) // ´
109 #define CH_TILD ALGR(CH_CARR) // ~
110 #define CH_EURO ALGR(KC_E) // €
111 #define CH_LBRC ALGR(CH_UE) // [
112 #define CH_RBRC ALGR(CH_DIER) // ]
113 #define CH_LCBR ALGR(CH_AE) // {
114 #define CH_RCBR ALGR(CH_DLR) // }
115 #define CH_BSLS ALGR(CH_LESS) // backslash
116
117 #endif