forked from kofal.net/zmk
refactor(pointing): Allow stopping event propagation
Allow input processors to return a special value if a given input event
should not be further processed/propagated.
feat(pointing): Add behavior input processor
Add the ability to intercept certain input events and trigger behaviors
when they occur.
Co-authored-by: Jorge Villalobos <minusfive@users.noreply.github.com>
Co-authored-by: Cem Aksoylar <caksoylar@users.noreply.github.com>
33 lines
1.0 KiB
C
33 lines
1.0 KiB
C
/*
|
|
* Copyright (c) 2022 The ZMK Contributors
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <zmk/matrix.h>
|
|
#include <zmk/combos.h>
|
|
#include <zmk/input_listeners.h>
|
|
#include <zmk/sensors.h>
|
|
|
|
/**
|
|
* Gets the virtual key position to use for the sensor with the given index.
|
|
*/
|
|
#define ZMK_VIRTUAL_KEY_POSITION_SENSOR(index) (ZMK_KEYMAP_LEN + (index))
|
|
|
|
/**
|
|
* Gets the sensor number from the virtual key position.
|
|
*/
|
|
#define ZMK_SENSOR_POSITION_FROM_VIRTUAL_KEY_POSITION(vkp) ((vkp) - ZMK_KEYMAP_LEN)
|
|
|
|
/**
|
|
* Gets the virtual key position to use for the combo with the given index.
|
|
*/
|
|
#define ZMK_VIRTUAL_KEY_POSITION_COMBO(index) \
|
|
(ZMK_VIRTUAL_KEY_POSITION_SENSOR(ZMK_KEYMAP_SENSORS_LEN) + (index))
|
|
|
|
#define ZMK_VIRTUAL_KEY_POSITION_BEHAVIOR_INPUT_PROCESSOR(listener_index, processor_index) \
|
|
(ZMK_VIRTUAL_KEY_POSITION_COMBO(ZMK_COMBOS_LEN) + \
|
|
(ZMK_INPUT_LISTENERS_LEN * (processor_index)) + (listener_index))
|