Make Decoration a toplevel struct
This commit is contained in:
parent
fb766fe09c
commit
d20d01e596
2 changed files with 25 additions and 26 deletions
|
@ -1,12 +1,12 @@
|
|||
const Self = @This();
|
||||
|
||||
const std = @import("std");
|
||||
|
||||
const c = @import("c.zig");
|
||||
|
||||
const DecorationManager = @import("decoration_manager.zig");
|
||||
|
||||
// TODO: this needs to listen for destroy and free nodes from the deco list
|
||||
pub const Decoration = struct {
|
||||
const Self = @This();
|
||||
|
||||
decoration_manager: *DecorationManager,
|
||||
wlr_xdg_toplevel_decoration: *c.wlr_xdg_toplevel_decoration_v1,
|
||||
|
||||
|
@ -34,4 +34,3 @@ pub const Decoration = struct {
|
|||
c.wlr_xdg_toplevel_decoration_v1_mode.WLR_XDG_TOPLEVEL_DECORATION_V1_MODE_SERVER_SIDE,
|
||||
);
|
||||
}
|
||||
};
|
||||
|
|
|
@ -4,7 +4,7 @@ const std = @import("std");
|
|||
|
||||
const c = @import("c.zig");
|
||||
|
||||
const Decoration = @import("decoration.zig").Decoration;
|
||||
const Decoration = @import("decoration.zig");
|
||||
const Server = @import("server.zig");
|
||||
|
||||
server: *Server,
|
||||
|
|
Loading…
Reference in a new issue