Make View a toplevel struct

This commit is contained in:
Isaac Freund 2020-05-02 16:43:16 +02:00
parent a0d56ef635
commit 9ea26d2a30
No known key found for this signature in database
GPG key ID: 86DED400DDFD7A11
11 changed files with 182 additions and 183 deletions

View file

@ -2,7 +2,7 @@ const c = @import("../c.zig");
const Arg = @import("../command.zig").Arg; const Arg = @import("../command.zig").Arg;
const Seat = @import("../seat.zig"); const Seat = @import("../seat.zig");
const View = @import("../view.zig").View; const View = @import("../view.zig");
const ViewStack = @import("../view_stack.zig").ViewStack; const ViewStack = @import("../view_stack.zig").ViewStack;
/// Focus either the next or the previous visible view, depending on the enum /// Focus either the next or the previous visible view, depending on the enum

View file

@ -2,7 +2,7 @@ const c = @import("../c.zig");
const Arg = @import("../command.zig").Arg; const Arg = @import("../command.zig").Arg;
const Seat = @import("../seat.zig"); const Seat = @import("../seat.zig");
const View = @import("../view.zig").View; const View = @import("../view.zig");
const ViewStack = @import("../view_stack.zig").ViewStack; const ViewStack = @import("../view_stack.zig").ViewStack;
/// Bump the focused view to the top of the stack. If the view on the top of /// Bump the focused view to the top of the stack. If the view on the top of

View file

@ -5,7 +5,7 @@ const LayerSurface = @import("layer_surface.zig");
const Log = @import("log.zig").Log; const Log = @import("log.zig").Log;
const Output = @import("output.zig"); const Output = @import("output.zig");
const Seat = @import("seat.zig"); const Seat = @import("seat.zig");
const View = @import("view.zig").View; const View = @import("view.zig");
const ViewStack = @import("view_stack.zig").ViewStack; const ViewStack = @import("view_stack.zig").ViewStack;
const CursorMode = enum { const CursorMode = enum {

View file

@ -9,7 +9,7 @@ const Box = @import("box.zig");
const LayerSurface = @import("layer_surface.zig"); const LayerSurface = @import("layer_surface.zig");
const Log = @import("log.zig").Log; const Log = @import("log.zig").Log;
const Root = @import("root.zig").Root; const Root = @import("root.zig").Root;
const View = @import("view.zig").View; const View = @import("view.zig");
const ViewStack = @import("view_stack.zig").ViewStack; const ViewStack = @import("view_stack.zig").ViewStack;
root: *Root, root: *Root,

View file

@ -5,7 +5,7 @@ const Box = @import("box.zig");
const LayerSurface = @import("layer_surface.zig"); const LayerSurface = @import("layer_surface.zig");
const Output = @import("output.zig"); const Output = @import("output.zig");
const Server = @import("server.zig"); const Server = @import("server.zig");
const View = @import("view.zig").View; const View = @import("view.zig");
const ViewStack = @import("view_stack.zig").ViewStack; const ViewStack = @import("view_stack.zig").ViewStack;
pub fn renderOutput(output: *Output) void { pub fn renderOutput(output: *Output) void {

View file

@ -7,7 +7,7 @@ const Log = @import("log.zig").Log;
const Output = @import("output.zig"); const Output = @import("output.zig");
const Server = @import("server.zig"); const Server = @import("server.zig");
const Seat = @import("seat.zig").Seat; const Seat = @import("seat.zig").Seat;
const View = @import("view.zig").View; const View = @import("view.zig");
const ViewStack = @import("view_stack.zig").ViewStack; const ViewStack = @import("view_stack.zig").ViewStack;
/// Responsible for all windowing operations /// Responsible for all windowing operations

View file

@ -8,7 +8,7 @@ const InputManager = @import("input_manager.zig");
const Keyboard = @import("keyboard.zig").Keyboard; const Keyboard = @import("keyboard.zig").Keyboard;
const LayerSurface = @import("layer_surface.zig"); const LayerSurface = @import("layer_surface.zig");
const Output = @import("output.zig"); const Output = @import("output.zig");
const View = @import("view.zig").View; const View = @import("view.zig");
const ViewStack = @import("view_stack.zig").ViewStack; const ViewStack = @import("view_stack.zig").ViewStack;
const FocusTarget = union(enum) { const FocusTarget = union(enum) {

View file

@ -10,7 +10,7 @@ const InputManager = @import("input_manager.zig");
const Log = @import("log.zig").Log; const Log = @import("log.zig").Log;
const Output = @import("output.zig"); const Output = @import("output.zig");
const Root = @import("root.zig").Root; const Root = @import("root.zig").Root;
const View = @import("view.zig").View; const View = @import("view.zig");
const ViewStack = @import("view_stack.zig").ViewStack; const ViewStack = @import("view_stack.zig").ViewStack;
allocator: *std.mem.Allocator, allocator: *std.mem.Allocator,

View file

@ -1,4 +1,7 @@
const Self = @This();
const std = @import("std"); const std = @import("std");
const c = @import("c.zig"); const c = @import("c.zig");
const Box = @import("box.zig"); const Box = @import("box.zig");
@ -8,50 +11,47 @@ const Root = @import("root.zig").Root;
const ViewStack = @import("view_stack.zig").ViewStack; const ViewStack = @import("view_stack.zig").ViewStack;
const XdgToplevel = @import("xdg_toplevel.zig"); const XdgToplevel = @import("xdg_toplevel.zig");
pub const View = struct { const ViewImpl = union(enum) {
const Self = @This();
const ViewImpl = union(enum) {
xdg_toplevel: XdgToplevel, xdg_toplevel: XdgToplevel,
}; };
/// The implementation of this view /// The implementation of this view
impl: ViewImpl, impl: ViewImpl,
/// The output this view is currently associated with /// The output this view is currently associated with
output: *Output, output: *Output,
/// This is non-null exactly when the view is mapped /// This is non-null exactly when the view is mapped
wlr_surface: ?*c.wlr_surface, wlr_surface: ?*c.wlr_surface,
/// If the view is floating or not /// If the view is floating or not
floating: bool, floating: bool,
/// True if the view is currentlt focused by at lease one seat /// True if the view is currentlt focused by at lease one seat
focused: bool, focused: bool,
/// The current output-relative coordinates and dimensions of the view /// The current output-relative coordinates and dimensions of the view
current_box: Box, current_box: Box,
pending_box: ?Box, pending_box: ?Box,
/// The dimensions the view would have taken if we didn't force it to tile /// The dimensions the view would have taken if we didn't force it to tile
natural_width: u32, natural_width: u32,
natural_height: u32, natural_height: u32,
current_tags: u32, current_tags: u32,
pending_tags: ?u32, pending_tags: ?u32,
pending_serial: ?u32, pending_serial: ?u32,
// This is what we render while a transaction is in progress // This is what we render while a transaction is in progress
stashed_buffer: ?*c.wlr_buffer, stashed_buffer: ?*c.wlr_buffer,
pub fn init_xdg_toplevel( pub fn init_xdg_toplevel(
self: *Self, self: *Self,
output: *Output, output: *Output,
tags: u32, tags: u32,
wlr_xdg_surface: *c.wlr_xdg_surface, wlr_xdg_surface: *c.wlr_xdg_surface,
) void { ) void {
self.output = output; self.output = output;
self.wlr_surface = null; self.wlr_surface = null;
@ -75,24 +75,24 @@ pub const View = struct {
self.impl = .{ .xdg_toplevel = undefined }; self.impl = .{ .xdg_toplevel = undefined };
self.impl.xdg_toplevel.init(self, wlr_xdg_surface); self.impl.xdg_toplevel.init(self, wlr_xdg_surface);
} }
pub fn deinit(self: *Self) void { pub fn deinit(self: *Self) void {
if (self.stashed_buffer) |buffer| { if (self.stashed_buffer) |buffer| {
c.wlr_buffer_unref(buffer); c.wlr_buffer_unref(buffer);
} }
} }
pub fn needsConfigure(self: Self) bool { pub fn needsConfigure(self: Self) bool {
if (self.pending_box) |pending_box| { if (self.pending_box) |pending_box| {
return pending_box.width != self.current_box.width or return pending_box.width != self.current_box.width or
pending_box.height != self.current_box.height; pending_box.height != self.current_box.height;
} else { } else {
return false; return false;
} }
} }
pub fn configure(self: Self) void { pub fn configure(self: Self) void {
if (self.pending_box) |pending_box| { if (self.pending_box) |pending_box| {
switch (self.impl) { switch (self.impl) {
.xdg_toplevel => |xdg_toplevel| xdg_toplevel.configure(pending_box), .xdg_toplevel => |xdg_toplevel| xdg_toplevel.configure(pending_box),
@ -100,23 +100,23 @@ pub const View = struct {
} else { } else {
Log.Error.log("Configure called on a View with no pending box", .{}); Log.Error.log("Configure called on a View with no pending box", .{});
} }
} }
pub fn sendFrameDone(self: Self) void { pub fn sendFrameDone(self: Self) void {
var now: c.timespec = undefined; var now: c.timespec = undefined;
_ = c.clock_gettime(c.CLOCK_MONOTONIC, &now); _ = c.clock_gettime(c.CLOCK_MONOTONIC, &now);
c.wlr_surface_send_frame_done(self.wlr_surface.?, &now); c.wlr_surface_send_frame_done(self.wlr_surface.?, &now);
} }
pub fn dropStashedBuffer(self: *Self) void { pub fn dropStashedBuffer(self: *Self) void {
// TODO: log debug error // TODO: log debug error
if (self.stashed_buffer) |buffer| { if (self.stashed_buffer) |buffer| {
c.wlr_buffer_unref(buffer); c.wlr_buffer_unref(buffer);
self.stashed_buffer = null; self.stashed_buffer = null;
} }
} }
pub fn stashBuffer(self: *Self) void { pub fn stashBuffer(self: *Self) void {
// TODO: log debug error if there is already a saved buffer // TODO: log debug error if there is already a saved buffer
if (self.wlr_surface) |wlr_surface| { if (self.wlr_surface) |wlr_surface| {
if (c.wlr_surface_has_buffer(wlr_surface)) { if (c.wlr_surface_has_buffer(wlr_surface)) {
@ -124,19 +124,19 @@ pub const View = struct {
self.stashed_buffer = wlr_surface.buffer; self.stashed_buffer = wlr_surface.buffer;
} }
} }
} }
/// Set the focued bool and the active state of the view if it is a toplevel /// Set the focued bool and the active state of the view if it is a toplevel
pub fn setFocused(self: *Self, focused: bool) void { pub fn setFocused(self: *Self, focused: bool) void {
self.focused = focused; self.focused = focused;
switch (self.impl) { switch (self.impl) {
.xdg_toplevel => |xdg_toplevel| xdg_toplevel.setActivated(focused), .xdg_toplevel => |xdg_toplevel| xdg_toplevel.setActivated(focused),
} }
} }
/// If true is passsed, make the view float. If false, return it to the tiled /// If true is passsed, make the view float. If false, return it to the tiled
/// layout. /// layout.
pub fn setFloating(self: *Self, float: bool) void { pub fn setFloating(self: *Self, float: bool) void {
if (float and !self.floating) { if (float and !self.floating) {
self.floating = true; self.floating = true;
self.pending_box = Box{ self.pending_box = Box{
@ -150,12 +150,12 @@ pub const View = struct {
} else if (!float and self.floating) { } else if (!float and self.floating) {
self.floating = false; self.floating = false;
} }
} }
/// Move a view from one output to another, sending the required enter/leave /// Move a view from one output to another, sending the required enter/leave
/// events. /// events.
pub fn sendToOutput(self: *Self, destination_output: *Output) void { pub fn sendToOutput(self: *Self, destination_output: *Output) void {
const node = @fieldParentPtr(ViewStack(View).Node, "view", self); const node = @fieldParentPtr(ViewStack(Self).Node, "view", self);
self.output.views.remove(node); self.output.views.remove(node);
destination_output.views.push(node); destination_output.views.push(node);
@ -164,21 +164,20 @@ pub const View = struct {
c.wlr_surface_send_enter(self.wlr_surface, destination_output.wlr_output); c.wlr_surface_send_enter(self.wlr_surface, destination_output.wlr_output);
self.output = destination_output; self.output = destination_output;
} }
pub fn close(self: Self) void { pub fn close(self: Self) void {
switch (self.impl) { switch (self.impl) {
.xdg_toplevel => |xdg_toplevel| xdg_toplevel.close(), .xdg_toplevel => |xdg_toplevel| xdg_toplevel.close(),
} }
} }
pub fn forEachSurface( pub fn forEachSurface(
self: Self, self: Self,
iterator: c.wlr_surface_iterator_func_t, iterator: c.wlr_surface_iterator_func_t,
user_data: ?*c_void, user_data: ?*c_void,
) void { ) void {
switch (self.impl) { switch (self.impl) {
.xdg_toplevel => |xdg_toplevel| xdg_toplevel.forEachSurface(iterator, user_data), .xdg_toplevel => |xdg_toplevel| xdg_toplevel.forEachSurface(iterator, user_data),
} }
} }
};

View file

@ -1,4 +1,4 @@
const View = @import("view.zig").View; const View = @import("view.zig");
/// A specialized doubly-linked stack that allows for filtered iteration /// A specialized doubly-linked stack that allows for filtered iteration
/// over the nodes. T must be View or *View. /// over the nodes. T must be View or *View.

View file

@ -5,7 +5,7 @@ const std = @import("std");
const Box = @import("box.zig"); const Box = @import("box.zig");
const Log = @import("log.zig").Log; const Log = @import("log.zig").Log;
const View = @import("view.zig").View; const View = @import("view.zig");
const ViewStack = @import("view_stack.zig").ViewStack; const ViewStack = @import("view_stack.zig").ViewStack;
const XdgPopup = @import("xdg_popup.zig"); const XdgPopup = @import("xdg_popup.zig");