mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-22 03:19:24 +00:00
Add swap hands toggle functions (#20381)
This commit is contained in:
parent
5d6d959421
commit
f5b7491883
@ -47,6 +47,11 @@ const uint8_t PROGMEM encoder_hand_swap_config[NUM_ENCODERS] = { 1, 0 };
|
|||||||
|
|
||||||
### Functions :id=functions
|
### Functions :id=functions
|
||||||
|
|
||||||
| Function | Description |
|
User callback functions to manipulate Swap-Hands:
|
||||||
|----------------------|---------------------------------------------|
|
|
||||||
| `is_swap_hands_on()` | Returns true if Swap-Hands is currently on. |
|
| Function | Description |
|
||||||
|
|-----------------------|---------------------------------------------|
|
||||||
|
| `swap_hands_on()` | Turns Swap-Hands on. |
|
||||||
|
| `swap_hands_off()` | Turns Swap-Hands off. |
|
||||||
|
| `swap_hands_toggle()` | Toggles Swap-Hands. |
|
||||||
|
| `is_swap_hands_on()` | Returns true if Swap-Hands is currently on. |
|
||||||
|
@ -165,6 +165,18 @@ void set_swap_hands_state(size_t index, uint8_t *swap_state, bool on) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void swap_hands_on(void) {
|
||||||
|
swap_hands = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void swap_hands_off(void) {
|
||||||
|
swap_hands = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void swap_hands_toggle(void) {
|
||||||
|
swap_hands = !swap_hands;
|
||||||
|
}
|
||||||
|
|
||||||
bool is_swap_hands_on(void) {
|
bool is_swap_hands_on(void) {
|
||||||
return swap_hands;
|
return swap_hands;
|
||||||
}
|
}
|
||||||
|
@ -84,6 +84,18 @@ typedef uint32_t swap_state_row_t;
|
|||||||
# error "MATRIX_COLS: invalid value"
|
# error "MATRIX_COLS: invalid value"
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Enable swap hands
|
||||||
|
*/
|
||||||
|
void swap_hands_on(void);
|
||||||
|
/**
|
||||||
|
* @brief Disable swap hands
|
||||||
|
*/
|
||||||
|
void swap_hands_off(void);
|
||||||
|
/**
|
||||||
|
* @brief Toggle swap hands enable state
|
||||||
|
*/
|
||||||
|
void swap_hands_toggle(void);
|
||||||
/**
|
/**
|
||||||
* @brief Get the swap hands enable state
|
* @brief Get the swap hands enable state
|
||||||
*
|
*
|
||||||
@ -91,6 +103,7 @@ typedef uint32_t swap_state_row_t;
|
|||||||
* @return false
|
* @return false
|
||||||
*/
|
*/
|
||||||
bool is_swap_hands_on(void);
|
bool is_swap_hands_on(void);
|
||||||
|
|
||||||
void process_hand_swap(keyevent_t *record);
|
void process_hand_swap(keyevent_t *record);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user