e80b883a47
This implements the changes to the river-layout protocol proposed in the previous commit removing river-options.
85 lines
2.9 KiB
Zig
85 lines
2.9 KiB
Zig
// This file is part of river, a dynamic tiling wayland compositor.
|
|
//
|
|
// Copyright 2020 - 2021 The River Developers
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
const Self = @This();
|
|
|
|
const std = @import("std");
|
|
const mem = std.mem;
|
|
const wlr = @import("wlroots");
|
|
const wayland = @import("wayland");
|
|
const wl = wayland.server.wl;
|
|
const river = wayland.server.river;
|
|
|
|
const util = @import("util.zig");
|
|
|
|
const Layout = @import("Layout.zig");
|
|
const Server = @import("Server.zig");
|
|
const Output = @import("Output.zig");
|
|
|
|
const log = std.log.scoped(.layout);
|
|
|
|
global: *wl.Global,
|
|
server_destroy: wl.Listener(*wl.Server) = wl.Listener(*wl.Server).init(handleServerDestroy),
|
|
|
|
pub fn init(self: *Self, server: *Server) !void {
|
|
self.* = .{
|
|
.global = try wl.Global.create(server.wl_server, river.LayoutManagerV2, 1, *Self, self, bind),
|
|
};
|
|
|
|
server.wl_server.addDestroyListener(&self.server_destroy);
|
|
}
|
|
|
|
fn handleServerDestroy(listener: *wl.Listener(*wl.Server), wl_server: *wl.Server) void {
|
|
const self = @fieldParentPtr(Self, "server_destroy", listener);
|
|
self.global.destroy();
|
|
}
|
|
|
|
fn bind(client: *wl.Client, self: *Self, version: u32, id: u32) callconv(.C) void {
|
|
const layout_manager = river.LayoutManagerV2.create(client, 1, id) catch {
|
|
client.postNoMemory();
|
|
log.crit("out of memory", .{});
|
|
return;
|
|
};
|
|
layout_manager.setHandler(*Self, handleRequest, null, self);
|
|
}
|
|
|
|
fn handleRequest(layout_manager: *river.LayoutManagerV2, request: river.LayoutManagerV2.Request, self: *Self) void {
|
|
switch (request) {
|
|
.destroy => layout_manager.destroy(),
|
|
|
|
.get_layout => |req| {
|
|
// Ignore if the output is inert
|
|
const wlr_output = wlr.Output.fromWlOutput(req.output) orelse return;
|
|
const output = @intToPtr(*Output, wlr_output.data);
|
|
|
|
log.debug("bind layout '{}' on output '{}'", .{ req.namespace, output.wlr_output.name });
|
|
|
|
Layout.create(
|
|
layout_manager.getClient(),
|
|
layout_manager.getVersion(),
|
|
req.id,
|
|
output,
|
|
mem.span(req.namespace),
|
|
) catch {
|
|
layout_manager.getClient().postNoMemory();
|
|
log.crit("out of memory", .{});
|
|
return;
|
|
};
|
|
},
|
|
}
|
|
}
|