2020-03-22 14:42:55 -07:00
|
|
|
const std = @import("std");
|
2020-03-29 10:36:15 -07:00
|
|
|
const c = @import("c.zig");
|
2020-03-22 14:42:55 -07:00
|
|
|
|
2020-04-10 07:49:52 -07:00
|
|
|
const Box = @import("box.zig").Box;
|
2020-04-11 05:24:20 -07:00
|
|
|
const Output = @import("output.zig").Output;
|
2020-03-25 07:59:24 -07:00
|
|
|
const Root = @import("root.zig").Root;
|
2020-04-03 09:53:36 -07:00
|
|
|
const ViewStack = @import("view_stack.zig").ViewStack;
|
2020-03-23 08:50:20 -07:00
|
|
|
|
2020-03-22 14:42:55 -07:00
|
|
|
pub const View = struct {
|
2020-03-24 12:48:38 -07:00
|
|
|
const Self = @This();
|
|
|
|
|
2020-04-11 05:24:20 -07:00
|
|
|
output: *Output,
|
2020-03-23 06:04:54 -07:00
|
|
|
wlr_xdg_surface: *c.wlr_xdg_surface,
|
|
|
|
|
2020-03-23 13:51:46 -07:00
|
|
|
mapped: bool,
|
2020-03-26 13:32:30 -07:00
|
|
|
|
2020-04-02 04:44:24 -07:00
|
|
|
current_box: Box,
|
|
|
|
pending_box: ?Box,
|
|
|
|
|
|
|
|
current_tags: u32,
|
|
|
|
pending_tags: ?u32,
|
2020-03-26 13:32:30 -07:00
|
|
|
|
|
|
|
pending_serial: ?u32,
|
|
|
|
|
|
|
|
// This is what we render while a transaction is in progress
|
|
|
|
stashed_buffer: ?*c.wlr_buffer,
|
2020-03-23 13:51:46 -07:00
|
|
|
|
2020-04-17 04:18:25 -07:00
|
|
|
// Listeners that are always active over the view's lifetime
|
|
|
|
listen_destroy: c.wl_listener,
|
2020-03-23 06:04:54 -07:00
|
|
|
listen_map: c.wl_listener,
|
|
|
|
listen_unmap: c.wl_listener,
|
2020-04-17 04:18:25 -07:00
|
|
|
|
|
|
|
// Listeners that are only active while the view is mapped
|
2020-03-26 13:32:30 -07:00
|
|
|
listen_commit: c.wl_listener,
|
2020-03-23 06:04:54 -07:00
|
|
|
|
2020-04-11 05:24:20 -07:00
|
|
|
pub fn init(self: *Self, output: *Output, wlr_xdg_surface: *c.wlr_xdg_surface, tags: u32) void {
|
|
|
|
self.output = output;
|
2020-03-23 13:51:46 -07:00
|
|
|
self.wlr_xdg_surface = wlr_xdg_surface;
|
|
|
|
|
2020-03-28 12:27:50 -07:00
|
|
|
// Inform the xdg toplevel that it is tiled.
|
|
|
|
// For example this prevents firefox from drawing shadows around itself
|
|
|
|
_ = c.wlr_xdg_toplevel_set_tiled(self.wlr_xdg_surface, c.WLR_EDGE_LEFT |
|
|
|
|
c.WLR_EDGE_RIGHT | c.WLR_EDGE_TOP | c.WLR_EDGE_BOTTOM);
|
|
|
|
|
2020-03-23 13:51:46 -07:00
|
|
|
self.mapped = false;
|
2020-04-01 08:50:49 -07:00
|
|
|
|
2020-04-02 04:44:24 -07:00
|
|
|
self.current_box = Box{
|
2020-03-26 13:32:30 -07:00
|
|
|
.x = 0,
|
|
|
|
.y = 0,
|
|
|
|
.height = 0,
|
|
|
|
.width = 0,
|
|
|
|
};
|
2020-04-02 04:44:24 -07:00
|
|
|
self.pending_box = null;
|
|
|
|
|
|
|
|
self.current_tags = tags;
|
|
|
|
self.pending_tags = null;
|
2020-04-01 08:50:49 -07:00
|
|
|
|
|
|
|
self.pending_serial = null;
|
|
|
|
|
2020-03-26 13:32:30 -07:00
|
|
|
self.stashed_buffer = null;
|
2020-03-22 14:42:55 -07:00
|
|
|
|
2020-04-17 04:18:25 -07:00
|
|
|
// Add listeners that are active over the view's entire lifetime
|
|
|
|
self.listen_destroy.notify = handleDestroy;
|
|
|
|
c.wl_signal_add(&self.wlr_xdg_surface.events.destroy, &self.listen_destroy);
|
|
|
|
|
2020-03-24 13:13:56 -07:00
|
|
|
self.listen_map.notify = handleMap;
|
2020-03-23 13:51:46 -07:00
|
|
|
c.wl_signal_add(&self.wlr_xdg_surface.events.map, &self.listen_map);
|
|
|
|
|
2020-03-24 13:13:56 -07:00
|
|
|
self.listen_unmap.notify = handleUnmap;
|
2020-03-23 13:51:46 -07:00
|
|
|
c.wl_signal_add(&self.wlr_xdg_surface.events.unmap, &self.listen_unmap);
|
2020-03-23 06:04:54 -07:00
|
|
|
}
|
|
|
|
|
2020-04-18 03:21:43 -07:00
|
|
|
pub fn deinit(self: *Self) void {
|
|
|
|
if (self.stashed_buffer) |buffer| {
|
|
|
|
c.wlr_buffer_unref(buffer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-29 06:58:04 -07:00
|
|
|
pub fn needsConfigure(self: Self) bool {
|
2020-04-02 04:44:24 -07:00
|
|
|
if (self.pending_box) |pending_box| {
|
|
|
|
return pending_box.width != self.current_box.width or
|
|
|
|
pending_box.height != self.current_box.height;
|
2020-04-01 08:50:49 -07:00
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2020-03-26 13:32:30 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn configurePending(self: *Self) void {
|
2020-04-02 04:44:24 -07:00
|
|
|
if (self.pending_box) |pending_box| {
|
2020-04-11 05:24:20 -07:00
|
|
|
const border_width = self.output.root.server.config.border_width;
|
|
|
|
const view_padding = self.output.root.server.config.view_padding;
|
2020-04-01 08:50:49 -07:00
|
|
|
self.pending_serial = c.wlr_xdg_toplevel_set_size(
|
|
|
|
self.wlr_xdg_surface,
|
2020-04-07 12:48:56 -07:00
|
|
|
pending_box.width - border_width * 2 - view_padding * 2,
|
|
|
|
pending_box.height - border_width * 2 - view_padding * 2,
|
2020-04-01 08:50:49 -07:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
// TODO: log warning
|
|
|
|
}
|
2020-03-26 13:32:30 -07:00
|
|
|
}
|
|
|
|
|
2020-03-29 06:58:04 -07:00
|
|
|
pub fn sendFrameDone(self: Self) void {
|
2020-04-19 15:23:25 -07:00
|
|
|
var now: c.timespec = undefined;
|
2020-03-26 13:32:30 -07:00
|
|
|
_ = c.clock_gettime(c.CLOCK_MONOTONIC, &now);
|
|
|
|
c.wlr_surface_send_frame_done(self.wlr_xdg_surface.surface, &now);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn dropStashedBuffer(self: *Self) void {
|
|
|
|
// TODO: log debug error
|
|
|
|
if (self.stashed_buffer) |buffer| {
|
|
|
|
c.wlr_buffer_unref(buffer);
|
|
|
|
self.stashed_buffer = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn stashBuffer(self: *Self) void {
|
|
|
|
// TODO: log debug error if there is already a saved buffer
|
|
|
|
const wlr_surface = self.wlr_xdg_surface.surface;
|
|
|
|
if (c.wlr_surface_has_buffer(wlr_surface)) {
|
|
|
|
_ = c.wlr_buffer_ref(wlr_surface.*.buffer);
|
|
|
|
self.stashed_buffer = wlr_surface.*.buffer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-18 07:21:26 -07:00
|
|
|
/// Move a view from one output to another, sending the required enter/leave
|
|
|
|
/// events.
|
|
|
|
pub fn sendToOutput(self: *Self, destination_output: *Output) void {
|
|
|
|
const node = @fieldParentPtr(ViewStack(View).Node, "view", self);
|
|
|
|
|
|
|
|
self.output.views.remove(node);
|
|
|
|
destination_output.views.push(node);
|
|
|
|
|
|
|
|
c.wlr_surface_send_leave(self.wlr_xdg_surface.surface, self.output.wlr_output);
|
|
|
|
c.wlr_surface_send_enter(self.wlr_xdg_surface.surface, destination_output.wlr_output);
|
|
|
|
|
|
|
|
self.output = destination_output;
|
|
|
|
}
|
|
|
|
|
2020-04-17 04:18:25 -07:00
|
|
|
fn handleDestroy(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
|
2020-04-21 07:29:17 -07:00
|
|
|
const self = @fieldParentPtr(Self, "listen_destroy", listener.?);
|
|
|
|
const output = self.output;
|
2020-04-17 04:18:25 -07:00
|
|
|
|
|
|
|
// Remove listeners that are active for the entire lifetime of the view
|
2020-04-21 07:29:17 -07:00
|
|
|
c.wl_list_remove(&self.listen_destroy.link);
|
|
|
|
c.wl_list_remove(&self.listen_map.link);
|
|
|
|
c.wl_list_remove(&self.listen_unmap.link);
|
2020-04-17 04:18:25 -07:00
|
|
|
|
|
|
|
// Remove the view from the stack
|
2020-04-21 07:29:17 -07:00
|
|
|
const node = @fieldParentPtr(ViewStack(View).Node, "view", self);
|
2020-04-17 04:18:25 -07:00
|
|
|
output.views.remove(node);
|
|
|
|
output.root.server.allocator.destroy(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Called when the surface is mapped, or ready to display on-screen.
|
2020-03-24 13:13:56 -07:00
|
|
|
fn handleMap(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
|
2020-04-21 07:29:17 -07:00
|
|
|
const self = @fieldParentPtr(Self, "listen_map", listener.?);
|
|
|
|
const root = self.output.root;
|
2020-04-17 04:18:25 -07:00
|
|
|
|
|
|
|
// Add listeners that are only active while mapped
|
2020-04-21 07:29:17 -07:00
|
|
|
self.listen_commit.notify = handleCommit;
|
|
|
|
c.wl_signal_add(&self.wlr_xdg_surface.surface.*.events.commit, &self.listen_commit);
|
2020-04-17 04:18:25 -07:00
|
|
|
|
2020-04-21 07:29:17 -07:00
|
|
|
self.mapped = true;
|
2020-04-17 04:22:23 -07:00
|
|
|
|
|
|
|
// Focus the newly mapped view. Note: if a seat is focusing a different output
|
|
|
|
// it will continue to do so.
|
|
|
|
var it = root.server.input_manager.seats.first;
|
|
|
|
while (it) |seat_node| : (it = seat_node.next) {
|
2020-04-21 07:29:17 -07:00
|
|
|
seat_node.data.focus(self);
|
2020-04-17 04:22:23 -07:00
|
|
|
}
|
|
|
|
|
2020-04-21 07:29:17 -07:00
|
|
|
c.wlr_surface_send_enter(self.wlr_xdg_surface.surface, self.output.wlr_output);
|
2020-04-18 07:21:26 -07:00
|
|
|
|
2020-04-21 07:29:17 -07:00
|
|
|
self.output.root.arrange();
|
2020-03-23 06:04:54 -07:00
|
|
|
}
|
2020-03-22 14:42:55 -07:00
|
|
|
|
2020-04-17 04:18:25 -07:00
|
|
|
/// Called when the surface is unmapped and will no longer be displayed.
|
2020-03-24 13:13:56 -07:00
|
|
|
fn handleUnmap(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
|
2020-04-21 07:29:17 -07:00
|
|
|
const self = @fieldParentPtr(Self, "listen_unmap", listener.?);
|
|
|
|
const root = self.output.root;
|
|
|
|
self.mapped = false;
|
2020-03-26 13:43:02 -07:00
|
|
|
|
2020-04-13 12:00:18 -07:00
|
|
|
// Inform all seats that the view has been unmapped so they can handle focus
|
|
|
|
var it = root.server.input_manager.seats.first;
|
|
|
|
while (it) |node| : (it = node.next) {
|
|
|
|
const seat = &node.data;
|
2020-04-21 07:29:17 -07:00
|
|
|
seat.handleViewUnmap(self);
|
2020-03-26 18:05:57 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
root.arrange();
|
2020-03-23 13:51:46 -07:00
|
|
|
|
2020-04-17 04:18:25 -07:00
|
|
|
// Remove listeners that are only active while mapped
|
2020-04-21 07:29:17 -07:00
|
|
|
c.wl_list_remove(&self.listen_commit.link);
|
2020-03-22 14:42:55 -07:00
|
|
|
}
|
|
|
|
|
2020-03-26 13:32:30 -07:00
|
|
|
fn handleCommit(listener: ?*c.wl_listener, data: ?*c_void) callconv(.C) void {
|
2020-04-21 07:29:17 -07:00
|
|
|
const self = @fieldParentPtr(Self, "listen_commit", listener.?);
|
|
|
|
if (self.pending_serial) |s| {
|
|
|
|
if (s == self.wlr_xdg_surface.configure_serial) {
|
|
|
|
self.output.root.notifyConfigured();
|
|
|
|
self.pending_serial = null;
|
2020-03-26 13:32:30 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: check for unexpected change in size and react as needed
|
|
|
|
}
|
|
|
|
|
2020-04-13 12:00:18 -07:00
|
|
|
/// Set the active state of the view to the passed bool
|
|
|
|
pub fn setActivated(self: Self, activated: bool) void {
|
|
|
|
_ = c.wlr_xdg_toplevel_set_activated(self.wlr_xdg_surface, activated);
|
2020-03-22 14:42:55 -07:00
|
|
|
}
|
|
|
|
|
2020-03-29 06:58:04 -07:00
|
|
|
fn isAt(self: Self, lx: f64, ly: f64, surface: *?*c.wlr_surface, sx: *f64, sy: *f64) bool {
|
2020-03-23 06:04:54 -07:00
|
|
|
// XDG toplevels may have nested surfaces, such as popup windows for context
|
|
|
|
// menus or tooltips. This function tests if any of those are underneath the
|
|
|
|
// coordinates lx and ly (in output Layout Coordinates). If so, it sets the
|
|
|
|
// surface pointer to that wlr_surface and the sx and sy coordinates to the
|
|
|
|
// coordinates relative to that surface's top-left corner.
|
2020-04-02 04:44:24 -07:00
|
|
|
const view_sx = lx - @intToFloat(f64, self.current_box.x);
|
|
|
|
const view_sy = ly - @intToFloat(f64, self.current_box.y);
|
2020-03-23 06:04:54 -07:00
|
|
|
|
|
|
|
// This variable seems to have been unsued in TinyWL
|
2020-04-02 04:44:24 -07:00
|
|
|
// struct wlr_surface_box *state = &view->xdg_surface->surface->current;
|
2020-03-23 06:04:54 -07:00
|
|
|
|
|
|
|
var _sx: f64 = undefined;
|
|
|
|
var _sy: f64 = undefined;
|
2020-03-24 12:35:45 -07:00
|
|
|
const _surface = c.wlr_xdg_surface_surface_at(self.wlr_xdg_surface, view_sx, view_sy, &_sx, &_sy);
|
2020-03-22 14:42:55 -07:00
|
|
|
|
2020-03-23 06:04:54 -07:00
|
|
|
if (_surface) |surface_at| {
|
|
|
|
sx.* = _sx;
|
|
|
|
sy.* = _sy;
|
|
|
|
surface.* = surface_at;
|
|
|
|
return true;
|
2020-03-22 14:42:55 -07:00
|
|
|
}
|
2020-03-23 06:04:54 -07:00
|
|
|
|
|
|
|
return false;
|
2020-03-22 14:42:55 -07:00
|
|
|
}
|
2020-03-23 06:04:54 -07:00
|
|
|
};
|