aboutsummaryrefslogtreecommitdiff
path: root/src/decoration_manager.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/decoration_manager.zig')
-rw-r--r--src/decoration_manager.zig55
1 files changed, 27 insertions, 28 deletions
diff --git a/src/decoration_manager.zig b/src/decoration_manager.zig
index d659159..7106c3d 100644
--- a/src/decoration_manager.zig
+++ b/src/decoration_manager.zig
@@ -1,41 +1,40 @@
+const Self = @This();
+
const std = @import("std");
+
const c = @import("c.zig");
const Decoration = @import("decoration.zig").Decoration;
const Server = @import("server.zig");
-pub const DecorationManager = struct {
- const Self = @This();
-
- server: *Server,
+server: *Server,
- wlr_xdg_decoration_manager: *c.wlr_xdg_decoration_manager_v1,
+wlr_xdg_decoration_manager: *c.wlr_xdg_decoration_manager_v1,
- decorations: std.SinglyLinkedList(Decoration),
+decorations: std.SinglyLinkedList(Decoration),
- listen_new_toplevel_decoration: c.wl_listener,
+listen_new_toplevel_decoration: c.wl_listener,
- pub fn init(self: *Self, server: *Server) !void {
- self.server = server;
- self.wlr_xdg_decoration_manager = c.wlr_xdg_decoration_manager_v1_create(server.wl_display) orelse
- return error.CantCreateWlrXdgDecorationManager;
+pub fn init(self: *Self, server: *Server) !void {
+ self.server = server;
+ self.wlr_xdg_decoration_manager = c.wlr_xdg_decoration_manager_v1_create(server.wl_display) orelse
+ return error.CantCreateWlrXdgDecorationManager;
- self.listen_new_toplevel_decoration.notify = handleNewToplevelDecoration;
- c.wl_signal_add(
- &self.wlr_xdg_decoration_manager.events.new_toplevel_decoration,
- &self.listen_new_toplevel_decoration,
- );
- }
+ self.listen_new_toplevel_decoration.notify = handleNewToplevelDecoration;
+ c.wl_signal_add(
+ &self.wlr_xdg_decoration_manager.events.new_toplevel_decoration,
+ &self.listen_new_toplevel_decoration,
+ );
+}
- fn handleNewToplevelDecoration(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
- const self = @fieldParentPtr(Self, "listen_new_toplevel_decoration", listener.?);
- const wlr_xdg_toplevel_decoration = @ptrCast(
- *c.wlr_xdg_toplevel_decoration_v1,
- @alignCast(@alignOf(*c.wlr_xdg_toplevel_decoration_v1), data),
- );
+fn handleNewToplevelDecoration(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
+ const self = @fieldParentPtr(Self, "listen_new_toplevel_decoration", listener.?);
+ const wlr_xdg_toplevel_decoration = @ptrCast(
+ *c.wlr_xdg_toplevel_decoration_v1,
+ @alignCast(@alignOf(*c.wlr_xdg_toplevel_decoration_v1), data),
+ );
- const node = self.decorations.allocateNode(self.server.allocator) catch unreachable;
- node.data.init(self, wlr_xdg_toplevel_decoration);
- self.decorations.prepend(node);
- }
-};
+ const node = self.decorations.allocateNode(self.server.allocator) catch unreachable;
+ node.data.init(self, wlr_xdg_toplevel_decoration);
+ self.decorations.prepend(node);
+}