Implement unmap-pointer
This commit is contained in:
parent
882a271d81
commit
9a2e11620c
@ -200,6 +200,10 @@ that tag 1 through 9 are visible.
|
|||||||
Removes the mapping defined by the arguments *-release*, *modifiers* and *key* from *mode*.
|
Removes the mapping defined by the arguments *-release*, *modifiers* and *key* from *mode*.
|
||||||
See *map* for an explanation of the arguments.
|
See *map* for an explanation of the arguments.
|
||||||
|
|
||||||
|
*unmap-pointer* _mode_ _modifiers_ _button_
|
||||||
|
Removes the mapping defined by the arguments *modifiers* and *button* from *mode*.
|
||||||
|
See *map-pointer* for an explanation of the arguments.
|
||||||
|
|
||||||
*view-padding* _pixels_
|
*view-padding* _pixels_
|
||||||
Set the padding around the edge of each view to _pixels_.
|
Set the padding around the edge of each view to _pixels_.
|
||||||
|
|
||||||
|
@ -76,6 +76,7 @@ const str_to_impl_fn = [_]struct {
|
|||||||
.{ .name = "toggle-fullscreen", .impl = @import("command/toggle_fullscreen.zig").toggleFullscreen },
|
.{ .name = "toggle-fullscreen", .impl = @import("command/toggle_fullscreen.zig").toggleFullscreen },
|
||||||
.{ .name = "toggle-view-tags", .impl = @import("command/tags.zig").toggleViewTags },
|
.{ .name = "toggle-view-tags", .impl = @import("command/tags.zig").toggleViewTags },
|
||||||
.{ .name = "unmap", .impl = @import("command/map.zig").unmap },
|
.{ .name = "unmap", .impl = @import("command/map.zig").unmap },
|
||||||
|
.{ .name = "unmap-pointer", .impl = @import("command/map.zig").unmapPointer },
|
||||||
.{ .name = "view-padding", .impl = @import("command/config.zig").viewPadding },
|
.{ .name = "view-padding", .impl = @import("command/config.zig").viewPadding },
|
||||||
.{ .name = "xcursor-theme", .impl = @import("command/xcursor_theme.zig").xcursorTheme },
|
.{ .name = "xcursor-theme", .impl = @import("command/xcursor_theme.zig").xcursorTheme },
|
||||||
.{ .name = "zoom", .impl = @import("command/zoom.zig").zoom },
|
.{ .name = "zoom", .impl = @import("command/zoom.zig").zoom },
|
||||||
|
@ -89,29 +89,16 @@ pub fn mapPointer(
|
|||||||
|
|
||||||
const mode_id = try modeNameToId(allocator, seat, args[1], out);
|
const mode_id = try modeNameToId(allocator, seat, args[1], out);
|
||||||
const modifiers = try parseModifiers(allocator, args[2], out);
|
const modifiers = try parseModifiers(allocator, args[2], out);
|
||||||
|
const event_code = try parseEventCode(allocator, args[3], out);
|
||||||
|
|
||||||
const event_code = blk: {
|
|
||||||
const event_code_name = try std.cstr.addNullByte(allocator, args[3]);
|
|
||||||
defer allocator.free(event_code_name);
|
|
||||||
const ret = c.libevdev_event_code_from_name(c.EV_KEY, event_code_name);
|
|
||||||
if (ret < 1) {
|
|
||||||
out.* = try std.fmt.allocPrint(allocator, "unknown button {}", .{args[3]});
|
|
||||||
return Error.Other;
|
|
||||||
}
|
|
||||||
break :blk @intCast(u32, ret);
|
|
||||||
};
|
|
||||||
|
|
||||||
// Check if the mapping already exists
|
|
||||||
const mode_pointer_mappings = &seat.input_manager.server.config.modes.items[mode_id].pointer_mappings;
|
const mode_pointer_mappings = &seat.input_manager.server.config.modes.items[mode_id].pointer_mappings;
|
||||||
for (mode_pointer_mappings.items) |existing| {
|
if (pointerMappingExists(mode_pointer_mappings, modifiers, event_code)) |_| {
|
||||||
if (existing.event_code == event_code and existing.modifiers == modifiers) {
|
out.* = try std.fmt.allocPrint(
|
||||||
out.* = try std.fmt.allocPrint(
|
allocator,
|
||||||
allocator,
|
"a pointer mapping for modifiers '{}' and button '{}' already exists",
|
||||||
"a pointer mapping for modifiers '{}' and button '{}' already exists",
|
.{ args[2], args[3] },
|
||||||
.{ args[2], args[3] },
|
);
|
||||||
);
|
return Error.Other;
|
||||||
return Error.Other;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const action = if (std.mem.eql(u8, args[4], "move-view"))
|
const action = if (std.mem.eql(u8, args[4], "move-view"))
|
||||||
@ -139,7 +126,7 @@ fn modeNameToId(allocator: *std.mem.Allocator, seat: *Seat, mode_name: []const u
|
|||||||
return config.mode_to_id.get(mode_name) orelse {
|
return config.mode_to_id.get(mode_name) orelse {
|
||||||
out.* = try std.fmt.allocPrint(
|
out.* = try std.fmt.allocPrint(
|
||||||
allocator,
|
allocator,
|
||||||
"cannot add mapping to non-existant mode '{}'",
|
"cannot add/remove mapping to/from non-existant mode '{}'",
|
||||||
.{mode_name},
|
.{mode_name},
|
||||||
);
|
);
|
||||||
return Error.Other;
|
return Error.Other;
|
||||||
@ -157,6 +144,17 @@ fn mappingExists(mappings: *std.ArrayList(Mapping), modifiers: u32, keysym: u32,
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns the index of the PointerMapping with matching modifiers and event code, if any.
|
||||||
|
fn pointerMappingExists(pointer_mappings: *std.ArrayList(PointerMapping), modifiers: u32, event_code: u32) ?usize {
|
||||||
|
for (pointer_mappings.items) |mapping, i| {
|
||||||
|
if (mapping.modifiers == modifiers and mapping.event_code == event_code) {
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
fn parseEventCode(allocator: *std.mem.Allocator, event_code_str: []const u8, out: *?[]const u8) !u32 {
|
fn parseEventCode(allocator: *std.mem.Allocator, event_code_str: []const u8, out: *?[]const u8) !u32 {
|
||||||
const event_code_name = try std.cstr.addNullByte(allocator, event_code_str);
|
const event_code_name = try std.cstr.addNullByte(allocator, event_code_str);
|
||||||
defer allocator.free(event_code_name);
|
defer allocator.free(event_code_name);
|
||||||
@ -270,3 +268,33 @@ pub fn unmap(
|
|||||||
var mapping = mode_mappings.swapRemove(mapping_idx);
|
var mapping = mode_mappings.swapRemove(mapping_idx);
|
||||||
mapping.deinit();
|
mapping.deinit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Remove a pointer mapping for a given mode
|
||||||
|
///
|
||||||
|
/// Example:
|
||||||
|
/// unmap-pointer normal Mod4 BTN_LEFT
|
||||||
|
pub fn unmapPointer(
|
||||||
|
allocator: *std.mem.Allocator,
|
||||||
|
seat: *Seat,
|
||||||
|
args: []const []const u8,
|
||||||
|
out: *?[]const u8,
|
||||||
|
) Error!void {
|
||||||
|
if (args.len < 4) return Error.NotEnoughArguments;
|
||||||
|
if (args.len > 4) return Error.TooManyArguments;
|
||||||
|
|
||||||
|
const mode_id = try modeNameToId(allocator, seat, args[1], out);
|
||||||
|
const modifiers = try parseModifiers(allocator, args[2], out);
|
||||||
|
const event_code = try parseEventCode(allocator, args[3], out);
|
||||||
|
|
||||||
|
const mode_pointer_mappings = &seat.input_manager.server.config.modes.items[mode_id].pointer_mappings;
|
||||||
|
const mapping_idx = pointerMappingExists(mode_pointer_mappings, modifiers, event_code) orelse {
|
||||||
|
out.* = try std.fmt.allocPrint(
|
||||||
|
allocator,
|
||||||
|
"there is no mapping for modifiers '{}' and button '{}'",
|
||||||
|
.{ args[2], args[3] },
|
||||||
|
);
|
||||||
|
return Error.Other;
|
||||||
|
};
|
||||||
|
|
||||||
|
_ = mode_pointer_mappings.swapRemove(mapping_idx);
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user