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-09 18:22:01 +00:00
|
|
|
waybar::Bar::Bar(Client &client, std::unique_ptr<struct wl_output *> &&p_output)
|
|
|
|
: client(client), window{Gtk::WindowType::WINDOW_TOPLEVEL},
|
|
|
|
output(std::move(p_output))
|
|
|
|
{
|
2018-08-10 22:32:59 +00:00
|
|
|
static const struct zxdg_output_v1_listener xdgOutputListener = {
|
|
|
|
.logical_position = _handleLogicalPosition,
|
|
|
|
.logical_size = _handleLogicalSize,
|
|
|
|
.done = _handleDone,
|
|
|
|
.name = _handleName,
|
|
|
|
.description = _handleDescription,
|
|
|
|
};
|
|
|
|
_xdgOutput =
|
2018-08-15 15:31:45 +00:00
|
|
|
zxdg_output_manager_v1_get_xdg_output(client.xdgOutputManager, *output);
|
2018-08-10 22:32:59 +00:00
|
|
|
zxdg_output_v1_add_listener(_xdgOutput, &xdgOutputListener, this);
|
2018-08-09 18:22:01 +00:00
|
|
|
window.set_title("waybar");
|
|
|
|
window.set_decorated(false);
|
|
|
|
_setupConfig();
|
|
|
|
_setupCss();
|
|
|
|
_setupWidgets();
|
2018-08-10 16:46:31 +00:00
|
|
|
if (_config["height"])
|
|
|
|
_height = _config["height"].asUInt();
|
2018-08-10 16:30:13 +00:00
|
|
|
bool positionBottom = _config["position"] == "bottom";
|
|
|
|
bool layerTop = _config["layer"] == "top";
|
2018-08-09 18:22:01 +00:00
|
|
|
gtk_widget_realize(GTK_WIDGET(window.gobj()));
|
|
|
|
GdkWindow *gdkWindow = gtk_widget_get_window(GTK_WIDGET(window.gobj()));
|
|
|
|
gdk_wayland_window_set_use_custom_surface(gdkWindow);
|
|
|
|
surface = gdk_wayland_window_get_wl_surface(gdkWindow);
|
|
|
|
layerSurface = zwlr_layer_shell_v1_get_layer_surface(
|
2018-08-15 15:31:45 +00:00
|
|
|
client.layerShell, surface, *output,
|
2018-08-10 16:30:13 +00:00
|
|
|
(layerTop ? ZWLR_LAYER_SHELL_V1_LAYER_TOP : ZWLR_LAYER_SHELL_V1_LAYER_BOTTOM),
|
2018-08-09 18:22:01 +00:00
|
|
|
"waybar");
|
|
|
|
zwlr_layer_surface_v1_set_anchor(layerSurface,
|
2018-08-09 22:40:09 +00:00
|
|
|
ZWLR_LAYER_SURFACE_V1_ANCHOR_LEFT | ZWLR_LAYER_SURFACE_V1_ANCHOR_RIGHT |
|
|
|
|
(positionBottom ? ZWLR_LAYER_SURFACE_V1_ANCHOR_BOTTOM : ZWLR_LAYER_SURFACE_V1_ANCHOR_TOP));
|
2018-08-10 16:46:31 +00:00
|
|
|
zwlr_layer_surface_v1_set_size(layerSurface, _width, _height);
|
2018-08-09 18:22:01 +00:00
|
|
|
static const struct zwlr_layer_surface_v1_listener layerSurfaceListener = {
|
|
|
|
.configure = _layerSurfaceHandleConfigure,
|
|
|
|
.closed = _layerSurfaceHandleClosed,
|
|
|
|
};
|
|
|
|
zwlr_layer_surface_v1_add_listener(layerSurface, &layerSurfaceListener,
|
|
|
|
this);
|
|
|
|
wl_surface_commit(surface);
|
|
|
|
}
|
|
|
|
|
2018-08-10 22:32:59 +00:00
|
|
|
void waybar::Bar::_handleLogicalPosition(void *data,
|
|
|
|
struct zxdg_output_v1 *zxdg_output_v1, int32_t x, int32_t y)
|
|
|
|
{
|
|
|
|
// Nothing here
|
|
|
|
}
|
|
|
|
|
|
|
|
void waybar::Bar::_handleLogicalSize(void *data,
|
|
|
|
struct zxdg_output_v1 *zxdg_output_v1, int32_t width, int32_t height)
|
|
|
|
{
|
|
|
|
// Nothing here
|
|
|
|
}
|
|
|
|
|
|
|
|
void waybar::Bar::_handleDone(void *data, struct zxdg_output_v1 *zxdg_output_v1)
|
|
|
|
{
|
|
|
|
// Nothing here
|
|
|
|
}
|
|
|
|
|
|
|
|
void waybar::Bar::_handleName(void *data, struct zxdg_output_v1 *xdg_output,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
auto o = reinterpret_cast<waybar::Bar *>(data);
|
|
|
|
o->outputName = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void waybar::Bar::_handleDescription(void *data,
|
|
|
|
struct zxdg_output_v1 *zxdg_output_v1, const char *description)
|
|
|
|
{
|
|
|
|
// Nothing here
|
|
|
|
}
|
|
|
|
|
2018-08-09 18:22:01 +00:00
|
|
|
void waybar::Bar::_layerSurfaceHandleConfigure(
|
2018-08-08 21:54:58 +00:00
|
|
|
void *data, struct zwlr_layer_surface_v1 *surface, uint32_t serial,
|
|
|
|
uint32_t width, uint32_t height)
|
|
|
|
{
|
|
|
|
auto o = reinterpret_cast<waybar::Bar *>(data);
|
|
|
|
o->window.show_all();
|
2018-08-11 08:25:21 +00:00
|
|
|
o->setWidth(o->_config["width"] ? o->_config["width"].asUInt() : width);
|
2018-08-08 21:54:58 +00:00
|
|
|
zwlr_layer_surface_v1_ack_configure(surface, serial);
|
2018-08-11 07:59:35 +00:00
|
|
|
if (o->_height != height) {
|
2018-08-10 16:46:31 +00:00
|
|
|
height = o->_height;
|
2018-08-08 21:54:58 +00:00
|
|
|
std::cout << fmt::format("New Height: {}", height) << std::endl;
|
2018-08-11 08:25:21 +00:00
|
|
|
zwlr_layer_surface_v1_set_size(surface, o->_width, height);
|
2018-08-08 21:54:58 +00:00
|
|
|
zwlr_layer_surface_v1_set_exclusive_zone(surface, o->visible ? height : 0);
|
|
|
|
wl_surface_commit(o->surface);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-09 18:22:01 +00:00
|
|
|
void waybar::Bar::_layerSurfaceHandleClosed(void *data,
|
2018-08-08 21:54:58 +00:00
|
|
|
struct zwlr_layer_surface_v1 *surface)
|
|
|
|
{
|
|
|
|
auto o = reinterpret_cast<waybar::Bar *>(data);
|
2018-08-09 08:50:16 +00:00
|
|
|
zwlr_layer_surface_v1_destroy(o->layerSurface);
|
|
|
|
o->layerSurface = nullptr;
|
2018-08-08 21:54:58 +00:00
|
|
|
wl_surface_destroy(o->surface);
|
2018-08-09 08:50:16 +00:00
|
|
|
o->surface = nullptr;
|
2018-08-08 21:54:58 +00:00
|
|
|
o->window.close();
|
|
|
|
}
|
|
|
|
|
2018-08-10 16:46:31 +00:00
|
|
|
auto waybar::Bar::setWidth(uint32_t width) -> void
|
2018-08-08 21:54:58 +00:00
|
|
|
{
|
2018-08-09 08:50:16 +00:00
|
|
|
if (width == this->_width) return;
|
2018-08-09 09:12:46 +00:00
|
|
|
std::cout << fmt::format("Bar width configured: {}", width) << std::endl;
|
2018-08-09 08:50:16 +00:00
|
|
|
this->_width = width;
|
2018-08-08 21:54:58 +00:00
|
|
|
window.set_size_request(width);
|
2018-08-10 16:46:31 +00:00
|
|
|
window.resize(width, _height);
|
2018-08-11 08:25:21 +00:00
|
|
|
zwlr_layer_surface_v1_set_size(layerSurface, width, _height + 1);
|
2018-08-08 21:54:58 +00:00
|
|
|
wl_surface_commit(surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
auto waybar::Bar::toggle() -> void
|
|
|
|
{
|
|
|
|
visible = !visible;
|
2018-08-10 16:46:31 +00:00
|
|
|
auto zone = visible ? _height : 0;
|
2018-08-09 08:50:16 +00:00
|
|
|
zwlr_layer_surface_v1_set_exclusive_zone(layerSurface, zone);
|
2018-08-08 21:54:58 +00:00
|
|
|
wl_surface_commit(surface);
|
|
|
|
}
|
|
|
|
|
2018-08-09 10:05:48 +00:00
|
|
|
auto waybar::Bar::_setupConfig() -> void
|
|
|
|
{
|
2018-08-13 19:23:43 +00:00
|
|
|
util::JsonParser parser;
|
2018-08-09 10:05:48 +00:00
|
|
|
std::ifstream file(client.configFile);
|
|
|
|
if (!file.is_open())
|
|
|
|
throw std::runtime_error("Can't open config file");
|
|
|
|
std::string str((std::istreambuf_iterator<char>(file)),
|
|
|
|
std::istreambuf_iterator<char>());
|
2018-08-13 19:23:43 +00:00
|
|
|
_config = parser.parse(str);
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
auto waybar::Bar::_setupCss() -> void
|
|
|
|
{
|
|
|
|
_cssProvider = Gtk::CssProvider::create();
|
|
|
|
_styleContext = Gtk::StyleContext::create();
|
|
|
|
|
|
|
|
// load our css file, wherever that may be hiding
|
|
|
|
if (_cssProvider->load_from_path(client.cssFile)) {
|
|
|
|
Glib::RefPtr<Gdk::Screen> screen = window.get_screen();
|
|
|
|
_styleContext->add_provider_for_screen(screen, _cssProvider,
|
|
|
|
GTK_STYLE_PROVIDER_PRIORITY_USER);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-09 08:50:16 +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));
|
|
|
|
|
|
|
|
auto &box1 = *Gtk::manage(new Gtk::Box(Gtk::ORIENTATION_HORIZONTAL, 0));
|
|
|
|
window.add(box1);
|
|
|
|
box1.set_homogeneous(true);
|
|
|
|
box1.pack_start(left, true, true);
|
|
|
|
box1.pack_start(center, false, false);
|
|
|
|
box1.pack_end(right, true, true);
|
|
|
|
|
2018-08-09 10:05:48 +00:00
|
|
|
Factory factory(*this, _config);
|
2018-08-13 12:05:13 +00:00
|
|
|
|
2018-08-09 10:05:48 +00:00
|
|
|
if (_config["modules-left"]) {
|
|
|
|
for (auto name : _config["modules-left"]) {
|
2018-08-13 12:05:13 +00:00
|
|
|
auto module = factory.makeModule(name.asString());
|
|
|
|
if (module)
|
|
|
|
left.pack_start(*module, false, true, 0);
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (_config["modules-center"]) {
|
|
|
|
for (auto name : _config["modules-center"]) {
|
2018-08-13 12:05:13 +00:00
|
|
|
auto module = factory.makeModule(name.asString());
|
|
|
|
if (module)
|
|
|
|
center.pack_start(*module, true, false, 10);
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (_config["modules-right"]) {
|
|
|
|
std::reverse(_config["modules-right"].begin(), _config["modules-right"].end());
|
|
|
|
for (auto name : _config["modules-right"]) {
|
2018-08-13 12:05:13 +00:00
|
|
|
auto module = factory.makeModule(name.asString());
|
|
|
|
if (module)
|
|
|
|
right.pack_end(*module, false, false, 0);
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-08 21:54:58 +00:00
|
|
|
}
|