Skip to content

Commit 9cfb1e3

Browse files
authored
Merge pull request Alexays#3528 from alebastr/sway-scene-fixes
Fixes for Sway modes and wlr_scene support
2 parents ae997ad + e0be3ac commit 9cfb1e3

File tree

4 files changed

+22
-14
lines changed

4 files changed

+22
-14
lines changed

flake.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

include/bar.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ struct bar_margins {
4242
};
4343

4444
struct bar_mode {
45-
std::optional<bar_layer> layer;
45+
bar_layer layer;
4646
bool exclusive;
4747
bool passthrough;
4848
bool visible;

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ if libsndio.found()
106106
endif
107107
endif
108108

109-
gtk_layer_shell = dependency('gtk-layer-shell-0', version: ['>=0.6.0'],
109+
gtk_layer_shell = dependency('gtk-layer-shell-0', version: ['>=0.9.0'],
110110
default_options: ['introspection=false', 'vapi=false'],
111111
fallback: ['gtk-layer-shell', 'gtk_layer_shell'])
112112
systemd = dependency('systemd', required: get_option('systemd'))

src/bar.cpp

+17-9
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@ const Bar::bar_mode_map Bar::PRESET_MODES = { //
3737
.visible = true}},
3838
{"hide",
3939
{//
40-
.layer = bar_layer::TOP,
40+
.layer = bar_layer::OVERLAY,
4141
.exclusive = false,
4242
.passthrough = false,
4343
.visible = true}},
4444
{"invisible",
4545
{//
46-
.layer = std::nullopt,
46+
.layer = bar_layer::BOTTOM,
4747
.exclusive = false,
4848
.passthrough = true,
4949
.visible = false}},
5050
{"overlay",
5151
{//
52-
.layer = bar_layer::TOP,
52+
.layer = bar_layer::OVERLAY,
5353
.exclusive = false,
5454
.passthrough = true,
5555
.visible = true}}};
@@ -59,7 +59,7 @@ const std::string Bar::MODE_INVISIBLE = "invisible";
5959
const std::string_view DEFAULT_BAR_ID = "bar-0";
6060

6161
/* Deserializer for enum bar_layer */
62-
void from_json(const Json::Value& j, std::optional<bar_layer>& l) {
62+
void from_json(const Json::Value& j, bar_layer& l) {
6363
if (j == "bottom") {
6464
l = bar_layer::BOTTOM;
6565
} else if (j == "top") {
@@ -132,6 +132,7 @@ void from_json(const Json::Value& j, std::map<Key, Value>& m) {
132132
waybar::Bar::Bar(struct waybar_output* w_output, const Json::Value& w_config)
133133
: output(w_output),
134134
config(w_config),
135+
surface(nullptr),
135136
window{Gtk::WindowType::WINDOW_TOPLEVEL},
136137
x_global(0),
137138
y_global(0),
@@ -316,13 +317,13 @@ void waybar::Bar::setMode(const std::string& mode) {
316317
void waybar::Bar::setMode(const struct bar_mode& mode) {
317318
auto* gtk_window = window.gobj();
318319

319-
if (mode.layer == bar_layer::BOTTOM) {
320-
gtk_layer_set_layer(gtk_window, GTK_LAYER_SHELL_LAYER_BOTTOM);
321-
} else if (mode.layer == bar_layer::TOP) {
322-
gtk_layer_set_layer(gtk_window, GTK_LAYER_SHELL_LAYER_TOP);
320+
auto layer = GTK_LAYER_SHELL_LAYER_BOTTOM;
321+
if (mode.layer == bar_layer::TOP) {
322+
layer = GTK_LAYER_SHELL_LAYER_TOP;
323323
} else if (mode.layer == bar_layer::OVERLAY) {
324-
gtk_layer_set_layer(gtk_window, GTK_LAYER_SHELL_LAYER_OVERLAY);
324+
layer = GTK_LAYER_SHELL_LAYER_OVERLAY;
325325
}
326+
gtk_layer_set_layer(gtk_window, layer);
326327

327328
if (mode.exclusive) {
328329
gtk_layer_auto_exclusive_zone_enable(gtk_window);
@@ -339,6 +340,13 @@ void waybar::Bar::setMode(const struct bar_mode& mode) {
339340
window.get_style_context()->add_class("hidden");
340341
window.set_opacity(0);
341342
}
343+
/*
344+
* All the changes above require `wl_surface_commit`.
345+
* gtk-layer-shell schedules a commit on the next frame event in GTK, but this could fail in
346+
* certain scenarios, such as fully occluded bar.
347+
*/
348+
gtk_layer_try_force_commit(gtk_window);
349+
wl_display_flush(Client::inst()->wl_display);
342350
}
343351

344352
void waybar::Bar::setPassThrough(bool passthrough) {

0 commit comments

Comments
 (0)