logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

process_tap_dance.h (3693B)


  1. /* Copyright 2016 Jack Humbert
  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. #pragma once
  17. #include <stdint.h>
  18. #include <stdbool.h>
  19. #include "action.h"
  20. #include "quantum_keycodes.h"
  21. typedef struct {
  22. uint16_t interrupting_keycode;
  23. uint8_t count;
  24. uint8_t weak_mods;
  25. #ifndef NO_ACTION_ONESHOT
  26. uint8_t oneshot_mods;
  27. #endif
  28. bool pressed : 1;
  29. bool finished : 1;
  30. bool interrupted : 1;
  31. } tap_dance_state_t;
  32. typedef void (*tap_dance_user_fn_t)(tap_dance_state_t *state, void *user_data);
  33. typedef struct tap_dance_action_t {
  34. tap_dance_state_t state;
  35. struct {
  36. tap_dance_user_fn_t on_each_tap;
  37. tap_dance_user_fn_t on_dance_finished;
  38. tap_dance_user_fn_t on_reset;
  39. tap_dance_user_fn_t on_each_release;
  40. } fn;
  41. void *user_data;
  42. } tap_dance_action_t;
  43. typedef struct {
  44. uint16_t kc1;
  45. uint16_t kc2;
  46. } tap_dance_pair_t;
  47. typedef struct {
  48. uint16_t kc;
  49. uint8_t layer;
  50. void (*layer_function)(uint8_t);
  51. } tap_dance_dual_role_t;
  52. #define ACTION_TAP_DANCE_DOUBLE(kc1, kc2) \
  53. { .fn = {tap_dance_pair_on_each_tap, tap_dance_pair_finished, tap_dance_pair_reset, NULL}, .user_data = (void *)&((tap_dance_pair_t){kc1, kc2}), }
  54. #define ACTION_TAP_DANCE_LAYER_MOVE(kc, layer) \
  55. { .fn = {tap_dance_dual_role_on_each_tap, tap_dance_dual_role_finished, tap_dance_dual_role_reset, NULL}, .user_data = (void *)&((tap_dance_dual_role_t){kc, layer, layer_move}), }
  56. #define ACTION_TAP_DANCE_LAYER_TOGGLE(kc, layer) \
  57. { .fn = {NULL, tap_dance_dual_role_finished, tap_dance_dual_role_reset, NULL}, .user_data = (void *)&((tap_dance_dual_role_t){kc, layer, layer_invert}), }
  58. #define ACTION_TAP_DANCE_FN(user_fn) \
  59. { .fn = {NULL, user_fn, NULL, NULL}, .user_data = NULL, }
  60. #define ACTION_TAP_DANCE_FN_ADVANCED(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset) \
  61. { .fn = {user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset, NULL}, .user_data = NULL, }
  62. #define ACTION_TAP_DANCE_FN_ADVANCED_WITH_RELEASE(user_fn_on_each_tap, user_fn_on_each_release, user_fn_on_dance_finished, user_fn_on_dance_reset) \
  63. { .fn = {user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset, user_fn_on_each_release}, .user_data = NULL, }
  64. #define TD_INDEX(code) QK_TAP_DANCE_GET_INDEX(code)
  65. #define TAP_DANCE_KEYCODE(state) TD(((tap_dance_action_t *)state) - tap_dance_actions)
  66. void reset_tap_dance(tap_dance_state_t *state);
  67. /* To be used internally */
  68. bool preprocess_tap_dance(uint16_t keycode, keyrecord_t *record);
  69. bool process_tap_dance(uint16_t keycode, keyrecord_t *record);
  70. void tap_dance_task(void);
  71. void tap_dance_pair_on_each_tap(tap_dance_state_t *state, void *user_data);
  72. void tap_dance_pair_finished(tap_dance_state_t *state, void *user_data);
  73. void tap_dance_pair_reset(tap_dance_state_t *state, void *user_data);
  74. void tap_dance_dual_role_on_each_tap(tap_dance_state_t *state, void *user_data);
  75. void tap_dance_dual_role_finished(tap_dance_state_t *state, void *user_data);
  76. void tap_dance_dual_role_reset(tap_dance_state_t *state, void *user_data);