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"
|
2018-08-13 19:23:43 +00:00
|
|
|
#include "util/json.hpp"
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2018-08-20 12:50:45 +00:00
|
|
|
waybar::Bar::Bar(const Client& client,
|
2018-08-19 11:39:57 +00:00
|
|
|
std::unique_ptr<struct wl_output *> &&p_output, uint32_t p_wl_name)
|
2018-08-09 18:22:01 +00:00
|
|
|
: client(client), window{Gtk::WindowType::WINDOW_TOPLEVEL},
|
2018-08-20 12:50:45 +00:00
|
|
|
surface(nullptr), layer_surface(nullptr),
|
|
|
|
output(std::move(p_output)), wl_name(p_wl_name)
|
2018-08-09 18:22:01 +00:00
|
|
|
{
|
2018-08-10 22:32:59 +00:00
|
|
|
static const struct zxdg_output_v1_listener xdgOutputListener = {
|
2018-08-16 12:29:41 +00:00
|
|
|
.logical_position = handleLogicalPosition,
|
|
|
|
.logical_size = handleLogicalSize,
|
|
|
|
.done = handleDone,
|
|
|
|
.name = handleName,
|
|
|
|
.description = handleDescription,
|
2018-08-10 22:32:59 +00:00
|
|
|
};
|
2018-08-16 12:29:41 +00:00
|
|
|
xdg_output_ =
|
|
|
|
zxdg_output_manager_v1_get_xdg_output(client.xdg_output_manager, *output);
|
|
|
|
zxdg_output_v1_add_listener(xdg_output_, &xdgOutputListener, this);
|
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);
|
2018-10-25 08:43:37 +00:00
|
|
|
window.set_resizable(false);
|
2018-08-16 12:29:41 +00:00
|
|
|
setupConfig();
|
|
|
|
setupCss();
|
2018-08-19 11:39:57 +00:00
|
|
|
|
2018-10-29 20:52:53 +00:00
|
|
|
auto wrap = reinterpret_cast<GtkWidget*>(window.gobj());
|
|
|
|
gtk_widget_realize(wrap);
|
|
|
|
GdkWindow *gdk_window = gtk_widget_get_window(wrap);
|
2018-08-16 12:29:41 +00:00
|
|
|
gdk_wayland_window_set_use_custom_surface(gdk_window);
|
|
|
|
surface = gdk_wayland_window_get_wl_surface(gdk_window);
|
2018-08-19 11:39:57 +00:00
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
std::size_t layer_top = config_["layer"] == "top"
|
|
|
|
? ZWLR_LAYER_SHELL_V1_LAYER_TOP : ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM;
|
|
|
|
layer_surface = zwlr_layer_shell_v1_get_layer_surface(
|
|
|
|
client.layer_shell, surface, *output, layer_top, "waybar");
|
2018-08-19 11:39:57 +00:00
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
static const struct zwlr_layer_surface_v1_listener layer_surface_listener = {
|
|
|
|
.configure = layerSurfaceHandleConfigure,
|
|
|
|
.closed = layerSurfaceHandleClosed,
|
2018-08-09 18:22:01 +00:00
|
|
|
};
|
2018-08-16 12:29:41 +00:00
|
|
|
zwlr_layer_surface_v1_add_listener(layer_surface,
|
|
|
|
&layer_surface_listener, this);
|
2018-08-19 11:39:57 +00:00
|
|
|
|
|
|
|
std::size_t anchor = ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT
|
|
|
|
| ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT;
|
|
|
|
if (config_["position"] == "bottom") {
|
|
|
|
anchor |= ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM;
|
|
|
|
} else {
|
|
|
|
anchor |= ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP;
|
|
|
|
}
|
|
|
|
|
2018-10-26 07:27:16 +00:00
|
|
|
auto height = config_["height"].isUInt() ? config_["height"].asUInt() : height_;
|
|
|
|
auto width = config_["width"].isUInt() ? config_["width"].asUInt() : width_;
|
2018-08-19 11:39:57 +00:00
|
|
|
zwlr_layer_surface_v1_set_anchor(layer_surface, anchor);
|
|
|
|
zwlr_layer_surface_v1_set_exclusive_zone(layer_surface, height);
|
|
|
|
zwlr_layer_surface_v1_set_size(layer_surface, width, height);
|
|
|
|
|
2018-08-09 18:22:01 +00:00
|
|
|
wl_surface_commit(surface);
|
2018-10-29 20:52:53 +00:00
|
|
|
|
|
|
|
setupWidgets();
|
2018-08-09 18:22:01 +00:00
|
|
|
}
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
void waybar::Bar::handleLogicalPosition(void* /*data*/,
|
|
|
|
struct zxdg_output_v1* /*zxdg_output_v1*/, int32_t /*x*/, int32_t /*y*/)
|
2018-08-10 22:32:59 +00:00
|
|
|
{
|
|
|
|
// Nothing here
|
|
|
|
}
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
void waybar::Bar::handleLogicalSize(void* /*data*/,
|
|
|
|
struct zxdg_output_v1* /*zxdg_output_v1*/, int32_t /*width*/,
|
|
|
|
int32_t /*height*/)
|
2018-08-10 22:32:59 +00:00
|
|
|
{
|
|
|
|
// Nothing here
|
|
|
|
}
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
void waybar::Bar::handleDone(void* /*data*/,
|
|
|
|
struct zxdg_output_v1* /*zxdg_output_v1*/)
|
2018-08-10 22:32:59 +00:00
|
|
|
{
|
|
|
|
// Nothing here
|
|
|
|
}
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
void waybar::Bar::handleName(void* data, struct zxdg_output_v1* /*xdg_output*/,
|
|
|
|
const char* name)
|
2018-08-10 22:32:59 +00:00
|
|
|
{
|
2018-08-16 12:29:41 +00:00
|
|
|
auto o = static_cast<waybar::Bar *>(data);
|
2018-08-19 11:39:57 +00:00
|
|
|
o->output_name = name;
|
2018-08-10 22:32:59 +00:00
|
|
|
}
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
void waybar::Bar::handleDescription(void* /*data*/,
|
|
|
|
struct zxdg_output_v1* /*zxdg_output_v1*/, const char* /*description*/)
|
2018-08-10 22:32:59 +00:00
|
|
|
{
|
|
|
|
// Nothing here
|
|
|
|
}
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
void waybar::Bar::layerSurfaceHandleConfigure(void* data,
|
|
|
|
struct zwlr_layer_surface_v1* surface, uint32_t serial, uint32_t width,
|
|
|
|
uint32_t height)
|
2018-08-08 21:54:58 +00:00
|
|
|
{
|
2018-08-16 12:29:41 +00:00
|
|
|
auto o = static_cast<waybar::Bar *>(data);
|
2018-08-08 21:54:58 +00:00
|
|
|
o->window.show_all();
|
|
|
|
zwlr_layer_surface_v1_ack_configure(surface, serial);
|
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_);
|
|
|
|
|
|
|
|
int dummy_width, min_height;
|
|
|
|
o->window.get_size(dummy_width, min_height);
|
2018-11-02 11:35:26 +00:00
|
|
|
if (o->height_ < static_cast<uint32_t>(min_height)) {
|
|
|
|
std::cout << fmt::format("Requested height: {} exceeds the minimum \
|
|
|
|
height: {} required by the modules", o->height_, min_height) << std::endl;
|
2018-11-01 21:00:38 +00:00
|
|
|
o->height_ = min_height;
|
|
|
|
}
|
2018-08-19 11:39:57 +00:00
|
|
|
std::cout << fmt::format(
|
|
|
|
"Bar configured (width: {}, height: {}) for output: {}",
|
|
|
|
o->width_, o->height_, o->output_name) << std::endl;
|
2018-11-01 21:00:38 +00:00
|
|
|
|
2018-08-08 21:54:58 +00:00
|
|
|
wl_surface_commit(o->surface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
void waybar::Bar::layerSurfaceHandleClosed(void* data,
|
|
|
|
struct zwlr_layer_surface_v1* /*surface*/)
|
2018-08-08 21:54:58 +00:00
|
|
|
{
|
2018-08-16 12:29:41 +00:00
|
|
|
auto o = static_cast<waybar::Bar *>(data);
|
2018-08-19 11:39:57 +00:00
|
|
|
std::cout << "Bar removed from output: " + o->output_name << std::endl;
|
2018-08-16 12:29:41 +00:00
|
|
|
zwlr_layer_surface_v1_destroy(o->layer_surface);
|
2018-08-19 11:39:57 +00:00
|
|
|
wl_output_destroy(*o->output);
|
|
|
|
zxdg_output_v1_destroy(o->xdg_output_);
|
|
|
|
o->modules_left_.clear();
|
|
|
|
o->modules_center_.clear();
|
|
|
|
o->modules_right_.clear();
|
2018-08-08 21:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
auto waybar::Bar::toggle() -> void
|
|
|
|
{
|
|
|
|
visible = !visible;
|
2018-08-16 12:29:41 +00:00
|
|
|
auto zone = visible ? height_ : 0;
|
|
|
|
zwlr_layer_surface_v1_set_exclusive_zone(layer_surface, zone);
|
2018-08-08 21:54:58 +00:00
|
|
|
wl_surface_commit(surface);
|
|
|
|
}
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
auto waybar::Bar::setupConfig() -> void
|
2018-08-09 10:05:48 +00:00
|
|
|
{
|
2018-08-16 12:29:41 +00:00
|
|
|
std::ifstream file(client.config_file);
|
|
|
|
if (!file.is_open()) {
|
2018-08-09 10:05:48 +00:00
|
|
|
throw std::runtime_error("Can't open config file");
|
2018-08-16 12:29:41 +00:00
|
|
|
}
|
2018-08-09 10:05:48 +00:00
|
|
|
std::string str((std::istreambuf_iterator<char>(file)),
|
|
|
|
std::istreambuf_iterator<char>());
|
2018-08-20 12:50:45 +00:00
|
|
|
util::JsonParser parser;
|
2018-08-16 12:29:41 +00:00
|
|
|
config_ = parser.parse(str);
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
auto waybar::Bar::setupCss() -> void
|
2018-08-09 10:05:48 +00:00
|
|
|
{
|
2018-08-16 12:29:41 +00:00
|
|
|
css_provider_ = Gtk::CssProvider::create();
|
|
|
|
style_context_ = Gtk::StyleContext::create();
|
2018-08-09 10:05:48 +00:00
|
|
|
|
2018-08-20 12:50:45 +00:00
|
|
|
// Load our css file, wherever that may be hiding
|
2018-08-16 12:29:41 +00:00
|
|
|
if (css_provider_->load_from_path(client.css_file)) {
|
2018-08-09 10:05:48 +00:00
|
|
|
Glib::RefPtr<Gdk::Screen> screen = window.get_screen();
|
2018-08-16 12:29:41 +00:00
|
|
|
style_context_->add_provider_for_screen(screen, css_provider_,
|
2018-08-09 10:05:48 +00:00
|
|
|
GTK_STYLE_PROVIDER_PRIORITY_USER);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-20 12:50:45 +00:00
|
|
|
void waybar::Bar::getModules(const Factory& factory, const std::string& pos)
|
2018-08-19 11:39:57 +00:00
|
|
|
{
|
2018-10-26 07:27:16 +00:00
|
|
|
if (config_[pos].isArray()) {
|
2018-08-19 11:39:57 +00:00
|
|
|
for (const auto &name : config_[pos]) {
|
|
|
|
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-08-20 12:50:45 +00:00
|
|
|
module->dp.connect([module] { module->update(); });
|
2018-08-19 11:39:57 +00:00
|
|
|
} catch (const std::exception& e) {
|
|
|
|
std::cerr << e.what() << std::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
auto waybar::Bar::setupWidgets() -> void
|
2018-08-08 21:54:58 +00:00
|
|
|
{
|
|
|
|
auto &left = *Gtk::manage(new Gtk::Box(Gtk::ORIENTATION_HORIZONTAL, 0));
|
|
|
|
auto ¢er = *Gtk::manage(new Gtk::Box(Gtk::ORIENTATION_HORIZONTAL, 0));
|
|
|
|
auto &right = *Gtk::manage(new Gtk::Box(Gtk::ORIENTATION_HORIZONTAL, 0));
|
|
|
|
|
2018-08-16 16:11:16 +00:00
|
|
|
auto &box = *Gtk::manage(new Gtk::Box(Gtk::ORIENTATION_HORIZONTAL, 0));
|
|
|
|
window.add(box);
|
|
|
|
box.pack_start(left, true, true);
|
|
|
|
box.set_center_widget(center);
|
|
|
|
box.pack_end(right, true, true);
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2018-08-16 12:29:41 +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_) {
|
2018-08-19 11:39:57 +00:00
|
|
|
left.pack_start(*module, false, true, 0);
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
2018-09-04 21:50:08 +00:00
|
|
|
for (auto const& module : modules_center_) {
|
2018-08-19 11:39:57 +00:00
|
|
|
center.pack_start(*module, true, true, 0);
|
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_) {
|
2018-08-19 11:39:57 +00:00
|
|
|
right.pack_end(*module, false, false, 0);
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
2018-08-08 21:54:58 +00:00
|
|
|
}
|