aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/managers/input/InputManager.cpp
diff options
context:
space:
mode:
authorZach DeCook <[email protected]>2024-01-23 19:15:01 -0500
committerGitHub <[email protected]>2024-01-24 00:15:01 +0000
commitdf17991b1c3f9f5f8da546f2523e5092e266123a (patch)
treebc83a76f93d8d59081bd4c3abb0612dc13771e21 /src/managers/input/InputManager.cpp
parent791e1b96b3cd12d56648b3ce7ffb0832eba2b37d (diff)
downloadHyprland-df17991b1c3f9f5f8da546f2523e5092e266123a.tar.gz
Hyprland-df17991b1c3f9f5f8da546f2523e5092e266123a.zip
input: Allow disabling touchscreen input (#4517)
* enable/disable touch device * ConfigManager: update documentation of 'enabled'
Diffstat (limited to 'src/managers/input/InputManager.cpp')
-rw-r--r--src/managers/input/InputManager.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/managers/input/InputManager.cpp b/src/managers/input/InputManager.cpp
index 5a98accb..8a98fe67 100644
--- a/src/managers/input/InputManager.cpp
+++ b/src/managers/input/InputManager.cpp
@@ -1460,12 +1460,16 @@ void CInputManager::newTouchDevice(wlr_input_device* pDevice) {
}
void CInputManager::setTouchDeviceConfigs(STouchDevice* dev) {
-
auto setConfig = [&](STouchDevice* const PTOUCHDEV) -> void {
if (wlr_input_device_is_libinput(PTOUCHDEV->pWlrDevice)) {
const auto LIBINPUTDEV = (libinput_device*)wlr_libinput_get_device_handle(PTOUCHDEV->pWlrDevice);
- const int ROTATION = std::clamp(g_pConfigManager->getDeviceInt(PTOUCHDEV->name, "transform", "input:touchdevice:transform"), 0, 7);
+ const auto ENABLED = g_pConfigManager->getDeviceInt(PTOUCHDEV->name, "enabled", "input:touchdevice:enabled");
+ const auto mode = ENABLED ? LIBINPUT_CONFIG_SEND_EVENTS_ENABLED : LIBINPUT_CONFIG_SEND_EVENTS_DISABLED;
+ if (libinput_device_config_send_events_get_mode(LIBINPUTDEV) != mode)
+ libinput_device_config_send_events_set_mode(LIBINPUTDEV, mode);
+
+ const int ROTATION = std::clamp(g_pConfigManager->getDeviceInt(PTOUCHDEV->name, "transform", "input:touchdevice:transform"), 0, 7);
if (libinput_device_config_calibration_has_matrix(LIBINPUTDEV))
libinput_device_config_calibration_set_matrix(LIBINPUTDEV, MATRICES[ROTATION]);