summaryrefslogtreecommitdiff
path: root/users/imchipwood/imchipwood.h
blob: 1e4bc3f74419f512881c290ff9d5c1f528783648 (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
/* Copyright 2021 imchipwood
  *
  * 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/>.
  */
#pragma once

#include "quantum.h"

// change the tapping term to a little bit quicker
#ifdef TAPPING_TERM
  #undef TAPPING_TERM
#endif
#define TAPPING_TERM    175

#ifdef TAPPING_TOGGLE
  #undef TAPPING_TOGGLE
#endif
#define TAPPING_TOGGLE 2


enum td_keycodes {
    TD_REND = 0, // right when tapped, end when double tapped
    TD_LOME,     // left when tapped, home when double tapped
    TD_RSFT_CAPS,
    ALT_F2,    // F2 when tapped, LALT when held, LALT+F2 when double tapped
    CTL_F5,    // F5 when tapped, LCTL when held, LCTL+F5 when double tapped
    ALT_F7,    // F7 when tapped, LALT when held, LALT+F7 when double tapped
    DEL_NLCK,  // DEL when tapped, NUMLOCK when double tapped
};


typedef enum { SINGLE_TAP, SINGLE_HOLD, DOUBLE_TAP } td_state_t;
int cur_dance(tap_dance_state_t *state);

void altf2_finished(tap_dance_state_t *state, void *user_data);
void altf2_reset(tap_dance_state_t *state, void *user_data);
void ctlf5_finished(tap_dance_state_t *state, void *user_data);
void ctlf5_reset(tap_dance_state_t *state, void *user_data);
void altf7_finished(tap_dance_state_t *state, void *user_data);
void altf7_reset(tap_dance_state_t *state, void *user_data);