2019-12-28 00:31:18 +00:00
|
|
|
#ifdef HAVE_GTK_LAYER_SHELL
|
|
|
|
#include <gtk-layer-shell.h>
|
|
|
|
#endif
|
|
|
|
|
2018-08-08 21:54:58 +00:00
|
|
|
#include "bar.hpp"
|
|
|
|
#include "client.hpp"
|
2018-08-09 10:05:48 +00:00
|
|
|
#include "factory.hpp"
|
2019-08-27 13:19:07 +00:00
|
|
|
#include <spdlog/spdlog.h>
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2019-04-25 11:25:06 +00:00
|
|
|
waybar::Bar::Bar(struct waybar_output* w_output, const Json::Value& w_config)
|
2019-04-18 15:43:16 +00:00
|
|
|
: output(w_output),
|
2019-04-25 11:25:06 +00:00
|
|
|
config(w_config),
|
2019-04-18 15:43:16 +00:00
|
|
|
surface(nullptr),
|
2020-05-27 07:10:38 +00:00
|
|
|
window{Gtk::WindowType::WINDOW_TOPLEVEL},
|
2019-12-28 00:31:18 +00:00
|
|
|
layer_surface_(nullptr),
|
2019-05-25 15:50:45 +00:00
|
|
|
anchor_(ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP),
|
2019-04-18 15:43:16 +00:00
|
|
|
left_(Gtk::ORIENTATION_HORIZONTAL, 0),
|
|
|
|
center_(Gtk::ORIENTATION_HORIZONTAL, 0),
|
|
|
|
right_(Gtk::ORIENTATION_HORIZONTAL, 0),
|
|
|
|
box_(Gtk::ORIENTATION_HORIZONTAL, 0) {
|
2018-08-09 18:22:01 +00:00
|
|
|
window.set_title("waybar");
|
2018-10-04 16:47:06 +00:00
|
|
|
window.set_name("waybar");
|
2018-10-29 20:52:53 +00:00
|
|
|
window.set_decorated(false);
|
2019-06-08 18:04:34 +00:00
|
|
|
window.get_style_context()->add_class(output->name);
|
2019-07-04 01:09:31 +00:00
|
|
|
window.get_style_context()->add_class(config["name"].asString());
|
2019-07-04 01:02:09 +00:00
|
|
|
window.get_style_context()->add_class(config["position"].asString());
|
2020-10-11 20:36:30 +00:00
|
|
|
left_.get_style_context()->add_class("modules-left");
|
|
|
|
center_.get_style_context()->add_class("modules-center");
|
|
|
|
right_.get_style_context()->add_class("modules-right");
|
2019-04-18 15:43:16 +00:00
|
|
|
|
2019-04-25 11:25:06 +00:00
|
|
|
if (config["position"] == "right" || config["position"] == "left") {
|
2019-04-18 15:43:16 +00:00
|
|
|
height_ = 0;
|
2019-04-24 10:37:24 +00:00
|
|
|
width_ = 1;
|
2019-04-18 15:43:16 +00:00
|
|
|
}
|
2019-05-25 15:50:45 +00:00
|
|
|
height_ = config["height"].isUInt() ? config["height"].asUInt() : height_;
|
|
|
|
width_ = config["width"].isUInt() ? config["width"].asUInt() : width_;
|
2018-08-19 11:39:57 +00:00
|
|
|
|
2019-04-25 11:25:06 +00:00
|
|
|
if (config["position"] == "bottom") {
|
2019-05-25 15:50:45 +00:00
|
|
|
anchor_ = ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM;
|
2019-04-25 11:25:06 +00:00
|
|
|
} else if (config["position"] == "left") {
|
2019-05-25 15:50:45 +00:00
|
|
|
anchor_ = ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT;
|
2019-04-25 11:25:06 +00:00
|
|
|
} else if (config["position"] == "right") {
|
2019-05-25 15:50:45 +00:00
|
|
|
anchor_ = ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
|
2019-03-22 11:25:05 +00:00
|
|
|
}
|
2019-05-25 15:50:45 +00:00
|
|
|
if (anchor_ == ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM ||
|
|
|
|
anchor_ == ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP) {
|
|
|
|
anchor_ |= ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT | ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
|
|
|
|
} else if (anchor_ == ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT ||
|
|
|
|
anchor_ == ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT) {
|
|
|
|
anchor_ |= ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP | ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM;
|
2019-03-22 11:25:05 +00:00
|
|
|
left_ = Gtk::Box(Gtk::ORIENTATION_VERTICAL, 0);
|
|
|
|
center_ = Gtk::Box(Gtk::ORIENTATION_VERTICAL, 0);
|
|
|
|
right_ = Gtk::Box(Gtk::ORIENTATION_VERTICAL, 0);
|
|
|
|
box_ = Gtk::Box(Gtk::ORIENTATION_VERTICAL, 0);
|
|
|
|
vertical = true;
|
2018-08-19 11:39:57 +00:00
|
|
|
}
|
|
|
|
|
2019-08-23 06:29:18 +00:00
|
|
|
if (config["margin-top"].isInt() || config["margin-right"].isInt() ||
|
|
|
|
config["margin-bottom"].isInt() || config["margin-left"].isInt()) {
|
|
|
|
margins_ = {
|
|
|
|
config["margin-top"].isInt() ? config["margin-top"].asInt() : 0,
|
|
|
|
config["margin-right"].isInt() ? config["margin-right"].asInt() : 0,
|
|
|
|
config["margin-bottom"].isInt() ? config["margin-bottom"].asInt() : 0,
|
|
|
|
config["margin-left"].isInt() ? config["margin-left"].asInt() : 0,
|
|
|
|
};
|
|
|
|
} else if (config["margin"].isString()) {
|
|
|
|
std::istringstream iss(config["margin"].asString());
|
|
|
|
std::vector<std::string> margins{std::istream_iterator<std::string>(iss), {}};
|
|
|
|
try {
|
|
|
|
if (margins.size() == 1) {
|
|
|
|
auto gaps = std::stoi(margins[0], nullptr, 10);
|
|
|
|
margins_ = {.top = gaps, .right = gaps, .bottom = gaps, .left = gaps};
|
|
|
|
}
|
|
|
|
if (margins.size() == 2) {
|
|
|
|
auto vertical_margins = std::stoi(margins[0], nullptr, 10);
|
|
|
|
auto horizontal_margins = std::stoi(margins[1], nullptr, 10);
|
|
|
|
margins_ = {.top = vertical_margins,
|
|
|
|
.right = horizontal_margins,
|
|
|
|
.bottom = vertical_margins,
|
|
|
|
.left = horizontal_margins};
|
|
|
|
}
|
|
|
|
if (margins.size() == 3) {
|
|
|
|
auto horizontal_margins = std::stoi(margins[1], nullptr, 10);
|
|
|
|
margins_ = {.top = std::stoi(margins[0], nullptr, 10),
|
|
|
|
.right = horizontal_margins,
|
|
|
|
.bottom = std::stoi(margins[2], nullptr, 10),
|
|
|
|
.left = horizontal_margins};
|
|
|
|
}
|
|
|
|
if (margins.size() == 4) {
|
|
|
|
margins_ = {.top = std::stoi(margins[0], nullptr, 10),
|
|
|
|
.right = std::stoi(margins[1], nullptr, 10),
|
|
|
|
.bottom = std::stoi(margins[2], nullptr, 10),
|
|
|
|
.left = std::stoi(margins[3], nullptr, 10)};
|
|
|
|
}
|
|
|
|
} catch (...) {
|
|
|
|
spdlog::warn("Invalid margins: {}", config["margin"].asString());
|
|
|
|
}
|
|
|
|
} else if (config["margin"].isInt()) {
|
|
|
|
auto gaps = config["margin"].asInt();
|
|
|
|
margins_ = {.top = gaps, .right = gaps, .bottom = gaps, .left = gaps};
|
|
|
|
}
|
|
|
|
|
2019-12-28 00:31:18 +00:00
|
|
|
#ifdef HAVE_GTK_LAYER_SHELL
|
|
|
|
use_gls_ = config["gtk-layer-shell"].isBool() ? config["gtk-layer-shell"].asBool() : true;
|
|
|
|
if (use_gls_) {
|
|
|
|
initGtkLayerShell();
|
2020-08-10 01:58:01 +00:00
|
|
|
window.signal_map_event().connect_notify(sigc::mem_fun(*this, &Bar::onMapGLS));
|
|
|
|
window.signal_configure_event().connect_notify(sigc::mem_fun(*this, &Bar::onConfigureGLS));
|
2019-12-28 00:31:18 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-08-10 01:58:01 +00:00
|
|
|
if (!use_gls_) {
|
|
|
|
window.signal_realize().connect_notify(sigc::mem_fun(*this, &Bar::onRealize));
|
|
|
|
window.signal_map_event().connect_notify(sigc::mem_fun(*this, &Bar::onMap));
|
|
|
|
window.signal_configure_event().connect_notify(sigc::mem_fun(*this, &Bar::onConfigure));
|
|
|
|
}
|
2019-12-28 00:31:18 +00:00
|
|
|
window.set_size_request(width_, height_);
|
2019-05-25 15:50:45 +00:00
|
|
|
setupWidgets();
|
2018-08-19 11:39:57 +00:00
|
|
|
|
2020-08-10 01:58:01 +00:00
|
|
|
if (!use_gls_ && window.get_realized()) {
|
2019-05-25 15:50:45 +00:00
|
|
|
onRealize();
|
|
|
|
}
|
|
|
|
window.show_all();
|
|
|
|
}
|
2018-10-29 20:52:53 +00:00
|
|
|
|
2019-12-28 00:31:18 +00:00
|
|
|
#ifdef HAVE_GTK_LAYER_SHELL
|
|
|
|
void waybar::Bar::initGtkLayerShell() {
|
|
|
|
auto gtk_window = window.gobj();
|
|
|
|
// this has to be executed before GtkWindow.realize
|
|
|
|
gtk_layer_init_for_window(gtk_window);
|
|
|
|
gtk_layer_set_keyboard_interactivity(gtk_window, FALSE);
|
|
|
|
auto layer = config["layer"] == "top" ? GTK_LAYER_SHELL_LAYER_TOP : GTK_LAYER_SHELL_LAYER_BOTTOM;
|
|
|
|
gtk_layer_set_layer(gtk_window, layer);
|
|
|
|
gtk_layer_set_monitor(gtk_window, output->monitor->gobj());
|
|
|
|
gtk_layer_set_namespace(gtk_window, "waybar");
|
|
|
|
|
|
|
|
gtk_layer_set_anchor(
|
|
|
|
gtk_window, GTK_LAYER_SHELL_EDGE_LEFT, anchor_ & ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT);
|
|
|
|
gtk_layer_set_anchor(
|
|
|
|
gtk_window, GTK_LAYER_SHELL_EDGE_RIGHT, anchor_ & ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT);
|
|
|
|
gtk_layer_set_anchor(
|
|
|
|
gtk_window, GTK_LAYER_SHELL_EDGE_TOP, anchor_ & ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP);
|
|
|
|
gtk_layer_set_anchor(
|
|
|
|
gtk_window, GTK_LAYER_SHELL_EDGE_BOTTOM, anchor_ & ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM);
|
|
|
|
|
|
|
|
gtk_layer_set_margin(gtk_window, GTK_LAYER_SHELL_EDGE_LEFT, margins_.left);
|
|
|
|
gtk_layer_set_margin(gtk_window, GTK_LAYER_SHELL_EDGE_RIGHT, margins_.right);
|
|
|
|
gtk_layer_set_margin(gtk_window, GTK_LAYER_SHELL_EDGE_TOP, margins_.top);
|
|
|
|
gtk_layer_set_margin(gtk_window, GTK_LAYER_SHELL_EDGE_BOTTOM, margins_.bottom);
|
2020-03-04 14:47:12 +00:00
|
|
|
|
|
|
|
if (width_ > 1 && height_ > 1) {
|
|
|
|
/* configure events are not emitted if the bar is using initial size */
|
|
|
|
setExclusiveZone(width_, height_);
|
|
|
|
}
|
2019-12-28 00:31:18 +00:00
|
|
|
}
|
2020-08-10 01:58:01 +00:00
|
|
|
|
|
|
|
void waybar::Bar::onConfigureGLS(GdkEventConfigure* ev) {
|
|
|
|
/*
|
|
|
|
* GTK wants new size for the window.
|
|
|
|
* Actual resizing is done within the gtk-layer-shell code; the only remaining action is to apply
|
|
|
|
* exclusive zone.
|
|
|
|
* gtk_layer_auto_exclusive_zone_enable() could handle even that, but at the cost of ignoring
|
|
|
|
* margins on unanchored edge.
|
|
|
|
*
|
|
|
|
* Note: forced resizing to a window smaller than required by GTK would not work with
|
|
|
|
* gtk-layer-shell.
|
|
|
|
*/
|
|
|
|
if (vertical) {
|
|
|
|
if (width_ > 1 && ev->width > static_cast<int>(width_)) {
|
|
|
|
spdlog::warn(MIN_WIDTH_MSG, width_, ev->width);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!vertical && height_ > 1 && ev->height > static_cast<int>(height_)) {
|
|
|
|
spdlog::warn(MIN_HEIGHT_MSG, height_, ev->height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
width_ = ev->width;
|
|
|
|
height_ = ev->height;
|
|
|
|
spdlog::info(BAR_SIZE_MSG, width_, height_, output->name);
|
|
|
|
setExclusiveZone(width_, height_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void waybar::Bar::onMapGLS(GdkEventAny* ev) {
|
|
|
|
/*
|
|
|
|
* Obtain a pointer to the custom layer surface for modules that require it (idle_inhibitor).
|
|
|
|
*/
|
|
|
|
auto gdk_window = window.get_window();
|
|
|
|
surface = gdk_wayland_window_get_wl_surface(gdk_window->gobj());
|
|
|
|
}
|
|
|
|
|
2019-12-28 00:31:18 +00:00
|
|
|
#endif
|
|
|
|
|
2020-08-10 01:58:01 +00:00
|
|
|
void waybar::Bar::onConfigure(GdkEventConfigure* ev) {
|
|
|
|
/*
|
|
|
|
* GTK wants new size for the window.
|
|
|
|
*
|
|
|
|
* Prefer configured size if it's non-default.
|
|
|
|
* If the size is not set and the window is smaller than requested by GTK, request resize from
|
|
|
|
* layer surface.
|
|
|
|
*/
|
|
|
|
auto tmp_height = height_;
|
|
|
|
auto tmp_width = width_;
|
|
|
|
if (ev->height > static_cast<int>(height_)) {
|
|
|
|
// Default minimal value
|
|
|
|
if (height_ > 1) {
|
|
|
|
spdlog::warn(MIN_HEIGHT_MSG, height_, ev->height);
|
|
|
|
}
|
|
|
|
if (config["height"].isUInt()) {
|
|
|
|
spdlog::info(SIZE_DEFINED, "Height");
|
|
|
|
} else {
|
|
|
|
tmp_height = ev->height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ev->width > static_cast<int>(width_)) {
|
|
|
|
// Default minimal value
|
|
|
|
if (width_ > 1) {
|
|
|
|
spdlog::warn(MIN_WIDTH_MSG, width_, ev->width);
|
|
|
|
}
|
|
|
|
if (config["width"].isUInt()) {
|
|
|
|
spdlog::info(SIZE_DEFINED, "Width");
|
|
|
|
} else {
|
|
|
|
tmp_width = ev->width;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (tmp_width != width_ || tmp_height != height_) {
|
|
|
|
setSurfaceSize(tmp_width, tmp_height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-25 15:50:45 +00:00
|
|
|
void waybar::Bar::onRealize() {
|
|
|
|
auto gdk_window = window.get_window()->gobj();
|
|
|
|
gdk_wayland_window_set_use_custom_surface(gdk_window);
|
|
|
|
}
|
|
|
|
|
|
|
|
void waybar::Bar::onMap(GdkEventAny* ev) {
|
|
|
|
auto gdk_window = window.get_window()->gobj();
|
|
|
|
surface = gdk_wayland_window_get_wl_surface(gdk_window);
|
|
|
|
|
|
|
|
auto client = waybar::Client::inst();
|
2019-08-28 03:57:23 +00:00
|
|
|
// owned by output->monitor; no need to destroy
|
|
|
|
auto wl_output = gdk_wayland_monitor_get_wl_output(output->monitor->gobj());
|
2019-05-25 15:50:45 +00:00
|
|
|
auto layer =
|
|
|
|
config["layer"] == "top" ? ZWLR_LAYER_SHELL_V1_LAYER_TOP : ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM;
|
2019-12-28 00:31:18 +00:00
|
|
|
layer_surface_ = zwlr_layer_shell_v1_get_layer_surface(
|
2019-08-28 03:57:23 +00:00
|
|
|
client->layer_shell, surface, wl_output, layer, "waybar");
|
2019-05-25 15:50:45 +00:00
|
|
|
|
2019-12-28 00:31:18 +00:00
|
|
|
zwlr_layer_surface_v1_set_keyboard_interactivity(layer_surface_, false);
|
|
|
|
zwlr_layer_surface_v1_set_anchor(layer_surface_, anchor_);
|
2019-08-23 06:29:18 +00:00
|
|
|
zwlr_layer_surface_v1_set_margin(
|
2019-12-28 00:31:18 +00:00
|
|
|
layer_surface_, margins_.top, margins_.right, margins_.bottom, margins_.left);
|
2019-09-01 07:54:53 +00:00
|
|
|
setSurfaceSize(width_, height_);
|
2019-08-23 06:29:18 +00:00
|
|
|
setExclusiveZone(width_, height_);
|
|
|
|
|
2019-05-25 15:50:45 +00:00
|
|
|
static const struct zwlr_layer_surface_v1_listener layer_surface_listener = {
|
|
|
|
.configure = layerSurfaceHandleConfigure,
|
|
|
|
.closed = layerSurfaceHandleClosed,
|
|
|
|
};
|
2019-12-28 00:31:18 +00:00
|
|
|
zwlr_layer_surface_v1_add_listener(layer_surface_, &layer_surface_listener, this);
|
2019-05-25 15:50:45 +00:00
|
|
|
|
|
|
|
wl_surface_commit(surface);
|
|
|
|
wl_display_roundtrip(client->wl_display);
|
2018-08-09 18:22:01 +00:00
|
|
|
}
|
|
|
|
|
2019-08-23 06:29:18 +00:00
|
|
|
void waybar::Bar::setExclusiveZone(uint32_t width, uint32_t height) {
|
|
|
|
auto zone = 0;
|
|
|
|
if (visible) {
|
|
|
|
// exclusive zone already includes margin for anchored edge,
|
|
|
|
// only opposite margin should be added
|
|
|
|
if (vertical) {
|
|
|
|
zone += width;
|
|
|
|
zone += (anchor_ & ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT) ? margins_.right : margins_.left;
|
|
|
|
} else {
|
|
|
|
zone += height;
|
|
|
|
zone += (anchor_ & ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP) ? margins_.bottom : margins_.top;
|
2019-05-09 13:10:13 +00:00
|
|
|
}
|
|
|
|
}
|
2019-08-23 06:29:18 +00:00
|
|
|
spdlog::debug("Set exclusive zone {} for output {}", zone, output->name);
|
2019-12-28 00:31:18 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_GTK_LAYER_SHELL
|
|
|
|
if (use_gls_) {
|
|
|
|
gtk_layer_set_exclusive_zone(window.gobj(), zone);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
zwlr_layer_surface_v1_set_exclusive_zone(layer_surface_, zone);
|
|
|
|
}
|
2019-05-09 13:10:13 +00:00
|
|
|
}
|
|
|
|
|
2019-09-01 07:54:53 +00:00
|
|
|
void waybar::Bar::setSurfaceSize(uint32_t width, uint32_t height) {
|
|
|
|
/* If the client is anchored to two opposite edges, layer_surface.configure will return
|
|
|
|
* size without margins for the axis.
|
|
|
|
* layer_surface.set_size, however, expects size with margins for the anchored axis.
|
|
|
|
* This is not specified by wlr-layer-shell and based on actual behavior of sway.
|
|
|
|
*/
|
|
|
|
if (vertical && height > 1) {
|
|
|
|
height += margins_.top + margins_.bottom;
|
|
|
|
}
|
|
|
|
if (!vertical && width > 1) {
|
|
|
|
width += margins_.right + margins_.left;
|
|
|
|
}
|
|
|
|
spdlog::debug("Set surface size {}x{} for output {}", width, height, output->name);
|
2019-12-28 00:31:18 +00:00
|
|
|
zwlr_layer_surface_v1_set_size(layer_surface_, width, height);
|
2019-09-01 07:54:53 +00:00
|
|
|
}
|
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
// Converting string to button code rn as to avoid doing it later
|
|
|
|
void waybar::Bar::setupAltFormatKeyForModule(const std::string& module_name) {
|
2019-04-25 11:25:06 +00:00
|
|
|
if (config.isMember(module_name)) {
|
|
|
|
Json::Value& module = config[module_name];
|
2019-04-18 15:43:16 +00:00
|
|
|
if (module.isMember("format-alt")) {
|
|
|
|
if (module.isMember("format-alt-click")) {
|
|
|
|
Json::Value& click = module["format-alt-click"];
|
|
|
|
if (click.isString()) {
|
2019-05-09 08:30:54 +00:00
|
|
|
if (click == "click-right") {
|
2019-04-24 10:37:24 +00:00
|
|
|
module["format-alt-click"] = 3U;
|
2019-05-09 08:30:54 +00:00
|
|
|
} else if (click == "click-middle") {
|
2019-04-24 10:37:24 +00:00
|
|
|
module["format-alt-click"] = 2U;
|
2019-05-09 08:30:54 +00:00
|
|
|
} else if (click == "click-backward") {
|
2019-04-24 10:37:24 +00:00
|
|
|
module["format-alt-click"] = 8U;
|
2019-05-09 08:30:54 +00:00
|
|
|
} else if (click == "click-forward") {
|
2019-04-24 10:37:24 +00:00
|
|
|
module["format-alt-click"] = 9U;
|
2019-04-18 15:43:16 +00:00
|
|
|
} else {
|
2019-04-24 10:37:24 +00:00
|
|
|
module["format-alt-click"] = 1U; // default click-left
|
2019-04-18 15:43:16 +00:00
|
|
|
}
|
|
|
|
} else {
|
2019-04-24 10:37:24 +00:00
|
|
|
module["format-alt-click"] = 1U;
|
2019-04-18 15:43:16 +00:00
|
|
|
}
|
|
|
|
} else {
|
2019-04-24 10:37:24 +00:00
|
|
|
module["format-alt-click"] = 1U;
|
2019-02-01 20:45:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
void waybar::Bar::setupAltFormatKeyForModuleList(const char* module_list_name) {
|
2019-04-25 11:25:06 +00:00
|
|
|
if (config.isMember(module_list_name)) {
|
|
|
|
Json::Value& modules = config[module_list_name];
|
2019-04-18 15:43:16 +00:00
|
|
|
for (const Json::Value& module_name : modules) {
|
|
|
|
if (module_name.isString()) {
|
|
|
|
setupAltFormatKeyForModule(module_name.asString());
|
2019-02-01 20:45:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-08-10 22:32:59 +00:00
|
|
|
}
|
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
void waybar::Bar::handleSignal(int signal) {
|
2019-03-18 17:46:44 +00:00
|
|
|
for (auto& module : modules_left_) {
|
|
|
|
auto* custom = dynamic_cast<waybar::modules::Custom*>(module.get());
|
2019-04-24 10:37:24 +00:00
|
|
|
if (custom != nullptr) {
|
|
|
|
custom->refresh(signal);
|
|
|
|
}
|
2019-03-18 17:46:44 +00:00
|
|
|
}
|
|
|
|
for (auto& module : modules_center_) {
|
|
|
|
auto* custom = dynamic_cast<waybar::modules::Custom*>(module.get());
|
2019-04-24 10:37:24 +00:00
|
|
|
if (custom != nullptr) {
|
|
|
|
custom->refresh(signal);
|
|
|
|
}
|
2019-03-18 17:46:44 +00:00
|
|
|
}
|
|
|
|
for (auto& module : modules_right_) {
|
|
|
|
auto* custom = dynamic_cast<waybar::modules::Custom*>(module.get());
|
2019-04-24 10:37:24 +00:00
|
|
|
if (custom != nullptr) {
|
|
|
|
custom->refresh(signal);
|
|
|
|
}
|
2019-03-18 17:46:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
void waybar::Bar::layerSurfaceHandleConfigure(void* data, struct zwlr_layer_surface_v1* surface,
|
|
|
|
uint32_t serial, uint32_t width, uint32_t height) {
|
|
|
|
auto o = static_cast<waybar::Bar*>(data);
|
2018-08-19 11:39:57 +00:00
|
|
|
if (width != o->width_ || height != o->height_) {
|
|
|
|
o->width_ = width;
|
|
|
|
o->height_ = height;
|
2018-11-01 21:00:38 +00:00
|
|
|
o->window.set_size_request(o->width_, o->height_);
|
|
|
|
o->window.resize(o->width_, o->height_);
|
2019-08-23 06:29:18 +00:00
|
|
|
o->setExclusiveZone(width, height);
|
2019-05-18 23:44:45 +00:00
|
|
|
spdlog::info(BAR_SIZE_MSG,
|
2019-05-25 15:50:45 +00:00
|
|
|
o->width_ == 1 ? "auto" : std::to_string(o->width_),
|
|
|
|
o->height_ == 1 ? "auto" : std::to_string(o->height_),
|
|
|
|
o->output->name);
|
2018-08-08 21:54:58 +00:00
|
|
|
wl_surface_commit(o->surface);
|
|
|
|
}
|
2019-04-19 09:56:40 +00:00
|
|
|
zwlr_layer_surface_v1_ack_configure(surface, serial);
|
2018-08-08 21:54:58 +00:00
|
|
|
}
|
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
void waybar::Bar::layerSurfaceHandleClosed(void* data, struct zwlr_layer_surface_v1* /*surface*/) {
|
|
|
|
auto o = static_cast<waybar::Bar*>(data);
|
2019-12-28 00:31:18 +00:00
|
|
|
if (o->layer_surface_) {
|
|
|
|
zwlr_layer_surface_v1_destroy(o->layer_surface_);
|
|
|
|
o->layer_surface_ = nullptr;
|
2019-05-25 15:50:45 +00:00
|
|
|
}
|
2018-08-19 11:39:57 +00:00
|
|
|
o->modules_left_.clear();
|
|
|
|
o->modules_center_.clear();
|
|
|
|
o->modules_right_.clear();
|
2018-08-08 21:54:58 +00:00
|
|
|
}
|
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
auto waybar::Bar::toggle() -> void {
|
2018-08-08 21:54:58 +00:00
|
|
|
visible = !visible;
|
2019-04-15 09:11:00 +00:00
|
|
|
if (!visible) {
|
2019-05-01 11:40:12 +00:00
|
|
|
window.get_style_context()->add_class("hidden");
|
2019-11-28 17:28:28 +00:00
|
|
|
window.set_opacity(0);
|
2019-04-15 09:11:00 +00:00
|
|
|
} else {
|
2019-05-01 11:40:12 +00:00
|
|
|
window.get_style_context()->remove_class("hidden");
|
2019-11-28 17:28:28 +00:00
|
|
|
window.set_opacity(1);
|
2019-04-15 09:11:00 +00:00
|
|
|
}
|
2019-08-23 06:29:18 +00:00
|
|
|
setExclusiveZone(width_, height_);
|
2020-08-10 01:58:01 +00:00
|
|
|
if (!use_gls_) {
|
|
|
|
wl_surface_commit(surface);
|
|
|
|
}
|
2018-08-08 21:54:58 +00:00
|
|
|
}
|
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
void waybar::Bar::getModules(const Factory& factory, const std::string& pos) {
|
2019-04-25 11:25:06 +00:00
|
|
|
if (config[pos].isArray()) {
|
|
|
|
for (const auto& name : config[pos]) {
|
2018-08-19 11:39:57 +00:00
|
|
|
try {
|
2018-08-20 12:50:45 +00:00
|
|
|
auto module = factory.makeModule(name.asString());
|
2018-08-19 11:39:57 +00:00
|
|
|
if (pos == "modules-left") {
|
2018-08-20 12:50:45 +00:00
|
|
|
modules_left_.emplace_back(module);
|
2018-08-19 11:39:57 +00:00
|
|
|
}
|
|
|
|
if (pos == "modules-center") {
|
2018-08-20 12:50:45 +00:00
|
|
|
modules_center_.emplace_back(module);
|
2018-08-19 11:39:57 +00:00
|
|
|
}
|
|
|
|
if (pos == "modules-right") {
|
2018-08-20 12:50:45 +00:00
|
|
|
modules_right_.emplace_back(module);
|
2018-08-19 11:39:57 +00:00
|
|
|
}
|
2018-11-24 10:20:03 +00:00
|
|
|
module->dp.connect([module, &name] {
|
2019-06-16 13:14:31 +00:00
|
|
|
try {
|
|
|
|
module->update();
|
|
|
|
} catch (const std::exception& e) {
|
|
|
|
spdlog::error("{}: {}", name.asString(), e.what());
|
|
|
|
}
|
2018-11-24 10:13:52 +00:00
|
|
|
});
|
2018-08-19 11:39:57 +00:00
|
|
|
} catch (const std::exception& e) {
|
2019-05-18 23:44:45 +00:00
|
|
|
spdlog::warn("module {}: {}", name.asString(), e.what());
|
2018-08-19 11:39:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
auto waybar::Bar::setupWidgets() -> void {
|
2018-12-26 10:13:36 +00:00
|
|
|
window.add(box_);
|
2019-06-28 12:16:09 +00:00
|
|
|
box_.pack_start(left_, false, false);
|
2018-12-26 10:13:36 +00:00
|
|
|
box_.set_center_widget(center_);
|
2019-06-28 12:16:09 +00:00
|
|
|
box_.pack_end(right_, false, false);
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2019-04-19 09:56:40 +00:00
|
|
|
// Convert to button code for every module that is used.
|
|
|
|
setupAltFormatKeyForModuleList("modules-left");
|
|
|
|
setupAltFormatKeyForModuleList("modules-right");
|
|
|
|
setupAltFormatKeyForModuleList("modules-center");
|
|
|
|
|
2019-04-25 11:25:06 +00:00
|
|
|
Factory factory(*this, config);
|
2018-08-19 11:39:57 +00:00
|
|
|
getModules(factory, "modules-left");
|
|
|
|
getModules(factory, "modules-center");
|
|
|
|
getModules(factory, "modules-right");
|
2018-09-04 21:50:08 +00:00
|
|
|
for (auto const& module : modules_left_) {
|
2019-06-28 12:16:09 +00:00
|
|
|
left_.pack_start(*module, false, false);
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
2018-09-04 21:50:08 +00:00
|
|
|
for (auto const& module : modules_center_) {
|
2019-06-28 12:16:09 +00:00
|
|
|
center_.pack_start(*module, false, false);
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
2018-08-19 11:39:57 +00:00
|
|
|
std::reverse(modules_right_.begin(), modules_right_.end());
|
2018-09-04 21:50:08 +00:00
|
|
|
for (auto const& module : modules_right_) {
|
2019-06-28 12:16:09 +00:00
|
|
|
right_.pack_end(*module, false, false);
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
2018-08-08 21:54:58 +00:00
|
|
|
}
|