This commit is contained in:
jlo62 2025-04-01 13:56:14 +03:00 committed by GitHub
commit e3e45e5759
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 70 additions and 9 deletions

View file

@ -263,6 +263,7 @@ sway_cmd input_cmd_map_to_region;
sway_cmd input_cmd_middle_emulation; sway_cmd input_cmd_middle_emulation;
sway_cmd input_cmd_natural_scroll; sway_cmd input_cmd_natural_scroll;
sway_cmd input_cmd_pointer_accel; sway_cmd input_cmd_pointer_accel;
sway_cmd input_cmd_sensitivity;
sway_cmd input_cmd_rotation_angle; sway_cmd input_cmd_rotation_angle;
sway_cmd input_cmd_scroll_factor; sway_cmd input_cmd_scroll_factor;
sway_cmd input_cmd_repeat_delay; sway_cmd input_cmd_repeat_delay;

View file

@ -158,6 +158,7 @@ struct input_config {
int middle_emulation; int middle_emulation;
int natural_scroll; int natural_scroll;
float pointer_accel; float pointer_accel;
float sensitivity;
float rotation_angle; float rotation_angle;
float scroll_factor; float scroll_factor;
int repeat_delay; int repeat_delay;

View file

@ -76,4 +76,6 @@ char *input_device_get_identifier(struct wlr_input_device *device);
const char *input_device_get_type(struct sway_input_device *device); const char *input_device_get_type(struct sway_input_device *device);
struct sway_input_device *input_sway_device_from_wlr(struct wlr_input_device *device);
#endif #endif

View file

@ -31,6 +31,7 @@ static const struct cmd_handler input_handlers[] = {
{ "scroll_button_lock", input_cmd_scroll_button_lock }, { "scroll_button_lock", input_cmd_scroll_button_lock },
{ "scroll_factor", input_cmd_scroll_factor }, { "scroll_factor", input_cmd_scroll_factor },
{ "scroll_method", input_cmd_scroll_method }, { "scroll_method", input_cmd_scroll_method },
{ "sensitivity", input_cmd_sensitivity },
{ "tap", input_cmd_tap }, { "tap", input_cmd_tap },
{ "tap_button_map", input_cmd_tap_button_map }, { "tap_button_map", input_cmd_tap_button_map },
{ "tool_mode", input_cmd_tool_mode }, { "tool_mode", input_cmd_tool_mode },

View file

@ -0,0 +1,30 @@
#include <math.h>
#include <stdlib.h>
#include <string.h>
#include "sway/config.h"
#include "sway/commands.h"
#include "sway/input/input-manager.h"
#include "util.h"
struct cmd_results *input_cmd_sensitivity(int argc, char **argv) {
struct cmd_results *error = NULL;
if ((error = checkarg(argc, "sensitivity", EXPECTED_AT_LEAST, 1))) {
return error;
}
struct input_config *ic = config->handler_context.input_config;
if (!ic) {
return cmd_results_new(CMD_FAILURE, "No input device defined.");
}
float sensitivity = parse_float(argv[0]);
if (isnan(sensitivity)) {
return cmd_results_new(CMD_INVALID,
"Invalid sensitivity; expected float.");
} else if (sensitivity < 0) {
return cmd_results_new(CMD_INVALID,
"Sensitivity cannot be negative.");
}
ic->sensitivity = sensitivity;
return cmd_results_new(CMD_SUCCESS, NULL);
}

View file

@ -34,6 +34,7 @@ struct input_config *new_input_config(const char* identifier) {
input->accel_profile = INT_MIN; input->accel_profile = INT_MIN;
input->rotation_angle = FLT_MIN; input->rotation_angle = FLT_MIN;
input->pointer_accel = FLT_MIN; input->pointer_accel = FLT_MIN;
input->sensitivity = FLT_MIN;
input->scroll_factor = FLT_MIN; input->scroll_factor = FLT_MIN;
input->scroll_button = INT_MIN; input->scroll_button = INT_MIN;
input->scroll_button_lock = INT_MIN; input->scroll_button_lock = INT_MIN;
@ -86,6 +87,9 @@ void merge_input_config(struct input_config *dst, struct input_config *src) {
if (src->pointer_accel != FLT_MIN) { if (src->pointer_accel != FLT_MIN) {
dst->pointer_accel = src->pointer_accel; dst->pointer_accel = src->pointer_accel;
} }
if (src->sensitivity != FLT_MIN) {
dst->sensitivity = src->sensitivity;
}
if (src->scroll_factor != FLT_MIN) { if (src->scroll_factor != FLT_MIN) {
dst->scroll_factor = src->scroll_factor; dst->scroll_factor = src->scroll_factor;
} }

View file

@ -1,5 +1,6 @@
#include <assert.h> #include <assert.h>
#include <math.h> #include <math.h>
#include <float.h>
#include <libevdev/libevdev.h> #include <libevdev/libevdev.h>
#include <linux/input-event-codes.h> #include <linux/input-event-codes.h>
#include <errno.h> #include <errno.h>
@ -20,6 +21,7 @@
#include "util.h" #include "util.h"
#include "sway/commands.h" #include "sway/commands.h"
#include "sway/input/cursor.h" #include "sway/input/cursor.h"
#include "sway/input/input-manager.h"
#include "sway/input/keyboard.h" #include "sway/input/keyboard.h"
#include "sway/input/tablet.h" #include "sway/input/tablet.h"
#include "sway/layers.h" #include "sway/layers.h"
@ -30,7 +32,8 @@
#include "sway/tree/root.h" #include "sway/tree/root.h"
#include "sway/tree/view.h" #include "sway/tree/view.h"
#include "sway/tree/workspace.h" #include "sway/tree/workspace.h"
#include "wlr-layer-shell-unstable-v1-protocol.h" #include "sway/commands.h"
#include "sway/config.h"
static uint32_t get_current_time_msec(void) { static uint32_t get_current_time_msec(void) {
struct timespec now; struct timespec now;
@ -331,10 +334,15 @@ static void handle_pointer_motion_relative(
struct wl_listener *listener, void *data) { struct wl_listener *listener, void *data) {
struct sway_cursor *cursor = wl_container_of(listener, cursor, motion); struct sway_cursor *cursor = wl_container_of(listener, cursor, motion);
struct wlr_pointer_motion_event *e = data; struct wlr_pointer_motion_event *e = data;
struct sway_input_device *sid = input_sway_device_from_wlr(&e->pointer->base);
struct input_config *ic = sid ? input_device_get_config(sid) : NULL;
float sensitivity = (ic && ic->sensitivity != FLT_MIN) ? ic->sensitivity : 1.0f;
cursor_handle_activity_from_device(cursor, &e->pointer->base); cursor_handle_activity_from_device(cursor, &e->pointer->base);
pointer_motion(cursor, e->time_msec, &e->pointer->base, e->delta_x, pointer_motion(cursor, e->time_msec, &e->pointer->base, e->delta_x * sensitivity,
e->delta_y, e->unaccel_dx, e->unaccel_dy); e->delta_y * sensitivity, e->unaccel_dx, e->unaccel_dy);
} }
static void handle_pointer_motion_absolute( static void handle_pointer_motion_absolute(

View file

@ -160,7 +160,7 @@ static void apply_input_type_config(struct sway_input_device *input_device) {
} }
} }
static struct sway_input_device *input_sway_device_from_wlr( struct sway_input_device *input_sway_device_from_wlr(
struct wlr_input_device *device) { struct wlr_input_device *device) {
struct sway_input_device *input_device = NULL; struct sway_input_device *input_device = NULL;
wl_list_for_each(input_device, &server.input->devices, link) { wl_list_for_each(input_device, &server.input->devices, link) {

View file

@ -1178,12 +1178,18 @@ json_object *ipc_json_describe_input(struct sway_input_device *device) {
if (device->wlr_device->type == WLR_INPUT_DEVICE_POINTER) { if (device->wlr_device->type == WLR_INPUT_DEVICE_POINTER) {
struct input_config *ic = input_device_get_config(device); struct input_config *ic = input_device_get_config(device);
float scroll_factor = 1.0f; float scroll_factor = 1.0f;
if (ic != NULL && !isnan(ic->scroll_factor) && float sensitivity = 1.0f;
ic->scroll_factor != FLT_MIN) { (void)scroll_factor;
scroll_factor = ic->scroll_factor; (void)sensitivity;
if (ic != NULL) {
if (!isnan(ic->scroll_factor) && ic->scroll_factor != FLT_MIN) {
scroll_factor = ic->scroll_factor;
}
if (!isnan(ic->sensitivity) && ic->sensitivity != FLT_MIN) {
sensitivity = ic->sensitivity;
}
} }
json_object_object_add(object, "scroll_factor",
json_object_new_double(scroll_factor));
} }
#if WLR_HAS_LIBINPUT_BACKEND #if WLR_HAS_LIBINPUT_BACKEND

View file

@ -169,6 +169,7 @@ sway_sources = files(
'commands/input/middle_emulation.c', 'commands/input/middle_emulation.c',
'commands/input/natural_scroll.c', 'commands/input/natural_scroll.c',
'commands/input/pointer_accel.c', 'commands/input/pointer_accel.c',
'commands/input/sensitivity.c',
'commands/input/rotation_angle.c', 'commands/input/rotation_angle.c',
'commands/input/repeat_delay.c', 'commands/input/repeat_delay.c',
'commands/input/repeat_rate.c', 'commands/input/repeat_rate.c',

View file

@ -187,6 +187,10 @@ The following commands may only be used in the configuration file.
*input* <identifier> pointer_accel [<-1|1>] *input* <identifier> pointer_accel [<-1|1>]
Changes the pointer acceleration for the specified input device. Changes the pointer acceleration for the specified input device.
*input* <identifier> sensitivity <floating point value>
Multiplies the sensitivity of a relative pointing input device. Has no
effect on absolute pointing devices.
*input* <identifier> rotation_angle <angle> *input* <identifier> rotation_angle <angle>
Sets the rotation angle of the device to the given clockwise angle in Sets the rotation angle of the device to the given clockwise angle in
degrees. The angle must be between 0.0 (inclusive) and 360.0 (exclusive). degrees. The angle must be between 0.0 (inclusive) and 360.0 (exclusive).

View file

@ -1157,6 +1157,9 @@ following properties:
|- scroll_factor |- scroll_factor
: floating : floating
: (Only pointers) Multiplier applied on scroll event values. : (Only pointers) Multiplier applied on scroll event values.
|- sensitivity
: floating
: (Only pointers) Multiplier applied on relative pointer movements.
|- libinput |- libinput
: object : object
: (Only libinput devices) An object describing the current device settings. : (Only libinput devices) An object describing the current device settings.