Deduplicate some state
This commit is contained in:
parent
96c20f26fc
commit
5baa9f58e7
@ -11,9 +11,6 @@ pub const LayerSurface = struct {
|
|||||||
output: *Output,
|
output: *Output,
|
||||||
wlr_layer_surface: *c.wlr_layer_surface_v1,
|
wlr_layer_surface: *c.wlr_layer_surface_v1,
|
||||||
|
|
||||||
/// True if the layer surface is currently mapped
|
|
||||||
mapped: bool,
|
|
||||||
|
|
||||||
box: Box,
|
box: Box,
|
||||||
layer: c.zwlr_layer_shell_v1_layer,
|
layer: c.zwlr_layer_shell_v1_layer,
|
||||||
|
|
||||||
@ -36,8 +33,6 @@ pub const LayerSurface = struct {
|
|||||||
self.wlr_layer_surface = wlr_layer_surface;
|
self.wlr_layer_surface = wlr_layer_surface;
|
||||||
wlr_layer_surface.data = self;
|
wlr_layer_surface.data = self;
|
||||||
|
|
||||||
self.mapped = false;
|
|
||||||
|
|
||||||
self.box = undefined;
|
self.box = undefined;
|
||||||
self.layer = layer;
|
self.layer = layer;
|
||||||
|
|
||||||
@ -79,8 +74,6 @@ pub const LayerSurface = struct {
|
|||||||
|
|
||||||
Log.Debug.log("Layer surface '{}' mapped.", .{wlr_layer_surface.namespace});
|
Log.Debug.log("Layer surface '{}' mapped.", .{wlr_layer_surface.namespace});
|
||||||
|
|
||||||
self.mapped = true;
|
|
||||||
|
|
||||||
// Add listeners that are only active while mapped
|
// Add listeners that are only active while mapped
|
||||||
self.listen_commit.notify = handleCommit;
|
self.listen_commit.notify = handleCommit;
|
||||||
c.wl_signal_add(&wlr_layer_surface.surface.*.events.commit, &self.listen_commit);
|
c.wl_signal_add(&wlr_layer_surface.surface.*.events.commit, &self.listen_commit);
|
||||||
@ -101,8 +94,6 @@ pub const LayerSurface = struct {
|
|||||||
|
|
||||||
Log.Debug.log("Layer surface '{}' unmapped.", .{self.wlr_layer_surface.namespace});
|
Log.Debug.log("Layer surface '{}' unmapped.", .{self.wlr_layer_surface.namespace});
|
||||||
|
|
||||||
self.mapped = false;
|
|
||||||
|
|
||||||
// remove listeners only active while the layer surface is mapped
|
// remove listeners only active while the layer surface is mapped
|
||||||
c.wl_list_remove(&self.listen_commit.link);
|
c.wl_list_remove(&self.listen_commit.link);
|
||||||
c.wl_list_remove(&self.listen_new_popup.link);
|
c.wl_list_remove(&self.listen_new_popup.link);
|
||||||
@ -118,6 +109,11 @@ pub const LayerSurface = struct {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Slight hack: This is automatically set to false by wlroots after
|
||||||
|
// this callback is exited, but we need it set to false before calling
|
||||||
|
// arrangeLayers() to avoid a crash.
|
||||||
|
self.wlr_layer_surface.mapped = false;
|
||||||
|
|
||||||
// This gives exclusive focus to a keyboard interactive top or overlay layer
|
// This gives exclusive focus to a keyboard interactive top or overlay layer
|
||||||
// surface if there is one.
|
// surface if there is one.
|
||||||
self.output.arrangeLayers();
|
self.output.arrangeLayers();
|
||||||
|
@ -268,7 +268,7 @@ pub const Output = struct {
|
|||||||
while (it) |node| : (it = node.prev) {
|
while (it) |node| : (it = node.prev) {
|
||||||
const layer_surface = &node.data;
|
const layer_surface = &node.data;
|
||||||
// Only mapped surfaces may gain focus
|
// Only mapped surfaces may gain focus
|
||||||
if (layer_surface.mapped and
|
if (layer_surface.wlr_layer_surface.mapped and
|
||||||
layer_surface.wlr_layer_surface.current.keyboard_interactive)
|
layer_surface.wlr_layer_surface.current.keyboard_interactive)
|
||||||
{
|
{
|
||||||
break :outer layer_surface;
|
break :outer layer_surface;
|
||||||
|
@ -93,7 +93,7 @@ fn renderLayer(output: Output, layer: std.TailQueue(LayerSurface), now: *c.times
|
|||||||
var it = layer.first;
|
var it = layer.first;
|
||||||
while (it) |node| : (it = node.next) {
|
while (it) |node| : (it = node.next) {
|
||||||
const layer_surface = &node.data;
|
const layer_surface = &node.data;
|
||||||
if (!layer_surface.mapped) {
|
if (!layer_surface.wlr_layer_surface.mapped) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
var rdata = LayerSurfaceRenderData{
|
var rdata = LayerSurfaceRenderData{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user