mirror of
https://github.com/MezzalunaWM/Mezzaluna.git
synced 2026-03-08 04:57:32 -04:00
basic add and del mousemaps work, drag is yet to be implemented
This commit is contained in:
parent
64dccb248d
commit
9d8463255c
5 changed files with 81 additions and 112 deletions
|
|
@ -12,6 +12,7 @@ const LayerSurface = @import("LayerSurface.zig");
|
|||
const Output = @import("Output.zig");
|
||||
const View = @import("View.zig");
|
||||
const Keymap = @import("types/Keymap.zig");
|
||||
const Mousemap = @import("types/Mousemap.zig");
|
||||
const Hook = @import("types/Hook.zig");
|
||||
const Events = @import("types/Events.zig");
|
||||
const Popup = @import("Popup.zig");
|
||||
|
|
@ -103,6 +104,7 @@ pub fn init(self: *Server) void {
|
|||
.cursor = undefined,
|
||||
.remote_lua_manager = RemoteLuaManager.init() catch Utils.oomPanic(),
|
||||
.keymaps = .init(gpa),
|
||||
.mousemaps = .init(gpa),
|
||||
.hooks = .init(gpa),
|
||||
.events = try .init(gpa),
|
||||
.remote_lua_clients = .{},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue