2019-02-26 22:01:46 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "quantum.h"
|
2019-03-06 21:20:51 +01:00
|
|
|
#include "version.h"
|
2019-02-26 22:01:46 +01:00
|
|
|
|
2019-05-21 19:59:08 +02:00
|
|
|
enum my_layers {
|
|
|
|
_NUMPAD = 0, //Macropad numpad
|
|
|
|
_NAVKEY, //Macropad nav keys
|
|
|
|
_MEDIA, //Macropad media controls
|
|
|
|
_RGB, //Macropad RGB controls
|
|
|
|
_FN1PAD, //Macropad reset and make commands
|
|
|
|
_QWERTY = 0, //Qwerty with custom shortcuts and functions
|
|
|
|
_DEFAULT, //Default ANSI for gaming, enable with FN2+RCtl
|
|
|
|
_FN1_60, //Function keys, arrows, custom shortcuts, volume control
|
|
|
|
_FN2_60 //RGB Underglow controls and RESET
|
|
|
|
};
|
2019-02-26 22:01:46 +01:00
|
|
|
|
|
|
|
//Aliases for longer keycodes
|
|
|
|
#define KC_CAD LALT(LCTL(KC_DEL))
|
|
|
|
#define KC_LOCK LGUI(KC_L)
|
|
|
|
#define CA_QUOT LCA(KC_QUOT)
|
|
|
|
#define CA_SCLN LCA(KC_SCLN)
|
|
|
|
#define KC_CTLE LCTL_T(KC_ESC)
|
2019-05-21 19:59:08 +02:00
|
|
|
#define LT_SPCF LT(_FN1_60, KC_SPC)
|
2020-05-15 19:59:25 +02:00
|
|
|
#define LT_BPCF LT(_FN1_60, KC_BSPC)
|
2019-02-26 22:01:46 +01:00
|
|
|
#define TD_TESC TD(TD_ESC)
|
|
|
|
#define TD_TWIN TD(TD_WIN)
|
2019-03-23 04:50:56 +01:00
|
|
|
#define TD_TCTL TD(TD_RCTL)
|
2019-05-21 19:59:08 +02:00
|
|
|
#define CA_COPY LCTL(KC_C)
|
|
|
|
#define CA_PSTE LCTL(KC_V)
|
2019-03-23 04:50:56 +01:00
|
|
|
|
|
|
|
enum cust_keys {
|
2019-05-12 02:51:37 +02:00
|
|
|
KC_MAKE = SAFE_RANGE,
|
2019-03-28 19:46:34 +01:00
|
|
|
KC_RDP
|
2019-03-23 04:50:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enum tap_dance {
|
|
|
|
TD_WIN,
|
|
|
|
TD_ESC,
|
|
|
|
TD_RCTL
|
|
|
|
};
|
|
|
|
|
|
|
|
// define a type containing as many tapdance states as you need
|
|
|
|
typedef enum {
|
|
|
|
SINGLE_TAP,
|
|
|
|
SINGLE_HOLD,
|
|
|
|
DOUBLE_TAP
|
|
|
|
} td_state_t;
|
|
|
|
|
|
|
|
// function to determine the current tapdance state
|
|
|
|
int cur_dance (qk_tap_dance_state_t *state);
|
|
|
|
|
|
|
|
// `finished` and `reset` functions for each tapdance keycode
|
|
|
|
void ctl_copy_finished (qk_tap_dance_state_t *state, void *user_data);
|
|
|
|
void ctl_copy_reset (qk_tap_dance_state_t *state, void *user_data);
|