summaryrefslogtreecommitdiff
path: root/users/ajp10304/ajp10304.h
blob: 130c84160756f0469aea1311f2599aed927d4f48 (plain)
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
61
62
63
/* Copyright 2021 Alan Pocklington
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include QMK_KEYBOARD_H

enum ajp10304_layers {
  _QWERTY,
  _COLEMAK,
  _MAC,
  _LOWER,
  _MLWR,
  _RAISE,
  _MRSE,
  _FUNC,
  _MFNC,
  _FUNC2,
  _MFNC2,
  _ADJUST,
  _MOUSE,
  _NUMPAD
};

enum ajp10304_keycodes {
  QWERTY = SAFE_RANGE,
  COLEMAK,
  MAC,
  FUNC,
  MFNC,
  FUNC2,
  MFNC2,
  LOWER,
  MLWR,
  RAISE,
  MRSE,
  MOUSE,
  NUMPAD,
  M_CUSTOM,
  M_WORD_SEL,
  M_WORD_SEL_MAC,
  M_LINE_SEL,
  M_LINE_SEL_MAC,
  M_LINE_DEL,
  M_LINE_DEL_MAC,
  M_DUP,
  M_DUP_MAC,
  M_JOIN,
  M_JOIN_MAC,
  M_MODE,
  M_MODE_MAC
};