input: minor fixes and cleanups for scroll-factor

This commit is contained in:
Isaac Freund 2024-04-16 13:25:12 +02:00
parent 8a3018a311
commit df5cb5dfe8
No known key found for this signature in database
GPG Key ID: 86DED400DDFD7A11
5 changed files with 28 additions and 12 deletions

View File

@ -506,7 +506,9 @@ However note that not every input device supports every property.
active, the scroll direction is inverted. active, the scroll direction is inverted.
*input* _name_ *scroll-factor* _factor_ *input* _name_ *scroll-factor* _factor_
Set the scroll factor of the input device. Needs a non-negative float. Set the scroll factor of the input device. Accepts a postive value
greater than 0. For example, a _factor_ of 0.5 will make scrolling twice
as slow while a _factor_ of 3 will make scrolling 3 times as fast.
*input* _name_ *left-handed* *enabled*|*disabled* *input* _name_ *left-handed* *enabled*|*disabled*
Enable or disable the left handed mode of the input device. Enable or disable the left handed mode of the input device.

View File

@ -313,8 +313,16 @@ fn handleAxis(listener: *wl.Listener(*wlr.Pointer.event.Axis), event: *wlr.Point
cursor.seat.wlr_seat.pointerNotifyAxis( cursor.seat.wlr_seat.pointerNotifyAxis(
event.time_msec, event.time_msec,
event.orientation, event.orientation,
event.delta * device.scroll_factor, event.delta * device.config.scroll_factor,
@intFromFloat(@as(f32, @floatFromInt(event.delta_discrete)) * device.scroll_factor), @intFromFloat(math.clamp(
@round(@as(f32, @floatFromInt(event.delta_discrete)) * device.config.scroll_factor),
// It seems that clamping to exactly the bounds of an i32 is insufficient to make the
// @intFromFloat() call safe due to the max/min i32 not being exactly representable
// by an f32. Dividing by 2 is a low effort way to ensure the value is in bounds and
// allow users to set their scroll-factor to inf without crashing river.
math.minInt(i32) / 2,
math.maxInt(i32) / 2,
)),
event.source, event.source,
); );
} }

View File

@ -253,10 +253,10 @@ pub const MapToOutput = struct {
}; };
pub const ScrollFactor = struct { pub const ScrollFactor = struct {
value: ?f32, value: ?f32 = null,
fn apply(scroll_factor: ScrollFactor, device: *InputDevice) void { fn apply(scroll_factor: ScrollFactor, device: *InputDevice) void {
device.scroll_factor = scroll_factor.value orelse 1.0; device.config.scroll_factor = scroll_factor.value orelse 1.0;
} }
}; };
@ -272,7 +272,7 @@ drag: ?DragState = null,
@"disable-while-trackpointing": ?DwtpState = null, @"disable-while-trackpointing": ?DwtpState = null,
@"middle-emulation": ?MiddleEmulation = null, @"middle-emulation": ?MiddleEmulation = null,
@"natural-scroll": ?NaturalScroll = null, @"natural-scroll": ?NaturalScroll = null,
@"scroll-factor": ScrollFactor = .{ .value = 1.0 }, @"scroll-factor": ScrollFactor = .{},
@"left-handed": ?LeftHanded = null, @"left-handed": ?LeftHanded = null,
tap: ?TapState = null, tap: ?TapState = null,
@"tap-button-map": ?TapButtonMap = null, @"tap-button-map": ?TapButtonMap = null,
@ -317,9 +317,12 @@ pub fn parse(config: *InputConfig, setting: []const u8, value: []const u8) !void
.value = math.clamp(try std.fmt.parseFloat(f32, value), -1.0, 1.0), .value = math.clamp(try std.fmt.parseFloat(f32, value), -1.0, 1.0),
}; };
} else if (comptime mem.eql(u8, field.name, "scroll-factor")) { } else if (comptime mem.eql(u8, field.name, "scroll-factor")) {
config.@"scroll-factor" = ScrollFactor{ const unvalidated = try std.fmt.parseFloat(f32, value);
.value = @max(try std.fmt.parseFloat(f32, value), 0.0), if (unvalidated > 0) {
}; config.@"scroll-factor" = ScrollFactor{ .value = unvalidated };
} else {
return error.OutOfBounds;
}
} else if (comptime mem.eql(u8, field.name, "scroll-button")) { } else if (comptime mem.eql(u8, field.name, "scroll-button")) {
const ret = c.libevdev_event_code_from_name(c.EV_KEY, value.ptr); const ret = c.libevdev_event_code_from_name(c.EV_KEY, value.ptr);
if (ret < 1) return error.InvalidButton; if (ret < 1) return error.InvalidButton;

View File

@ -34,7 +34,6 @@ const Tablet = @import("Tablet.zig");
const log = std.log.scoped(.input_manager); const log = std.log.scoped(.input_manager);
scroll_factor: f32,
seat: *Seat, seat: *Seat,
wlr_device: *wlr.InputDevice, wlr_device: *wlr.InputDevice,
@ -45,6 +44,10 @@ destroy: wl.Listener(*wlr.InputDevice) = wl.Listener(*wlr.InputDevice).init(hand
/// and name. However identifiers of InputConfigs are unique. /// and name. However identifiers of InputConfigs are unique.
identifier: []const u8, identifier: []const u8,
config: struct {
scroll_factor: f32 = 1.0,
} = .{},
/// InputManager.devices /// InputManager.devices
link: wl.list.Link, link: wl.list.Link,
@ -74,7 +77,6 @@ pub fn init(device: *InputDevice, seat: *Seat, wlr_device: *wlr.InputDevice) !vo
} }
device.* = .{ device.* = .{
.scroll_factor = 1.0,
.seat = seat, .seat = seat,
.wlr_device = wlr_device, .wlr_device = wlr_device,
.identifier = identifier, .identifier = identifier,

View File

@ -105,6 +105,7 @@ pub const Error = error{
UnknownCommand, UnknownCommand,
NotEnoughArguments, NotEnoughArguments,
TooManyArguments, TooManyArguments,
OutOfBounds,
Overflow, Overflow,
InvalidButton, InvalidButton,
InvalidCharacter, InvalidCharacter,
@ -150,7 +151,7 @@ pub fn errToMsg(err: Error) [:0]const u8 {
Error.ConflictingOptions => "options conflict", Error.ConflictingOptions => "options conflict",
Error.NotEnoughArguments => "not enough arguments", Error.NotEnoughArguments => "not enough arguments",
Error.TooManyArguments => "too many arguments", Error.TooManyArguments => "too many arguments",
Error.Overflow => "value out of bounds", Error.OutOfBounds, Error.Overflow => "value out of bounds",
Error.InvalidButton => "invalid button", Error.InvalidButton => "invalid button",
Error.InvalidCharacter => "invalid character in argument", Error.InvalidCharacter => "invalid character in argument",
Error.InvalidDirection => "invalid direction. Must be 'next' or 'previous'", Error.InvalidDirection => "invalid direction. Must be 'next' or 'previous'",