waybar/include/bar.hpp

60 lines
1.8 KiB
C++
Raw Normal View History

2018-08-08 23:54:58 +02:00
#pragma once
2018-08-09 12:05:48 +02:00
#include <json/json.h>
2018-08-08 23:54:58 +02:00
#include <gtkmm.h>
#include "wlr-layer-shell-unstable-v1-client-protocol.h"
#include "xdg-output-unstable-v1-client-protocol.h"
2018-08-19 13:39:57 +02:00
#include "IModule.hpp"
2018-08-08 23:54:58 +02:00
namespace waybar {
2018-08-16 14:29:41 +02:00
class Client;
2018-08-19 13:39:57 +02:00
class Factory;
2018-08-08 23:54:58 +02:00
2018-08-16 14:29:41 +02:00
class Bar {
public:
2018-08-20 14:50:45 +02:00
Bar(const Client&, std::unique_ptr<struct wl_output *>&&, uint32_t);
2018-08-08 23:54:58 +02:00
Bar(const Bar&) = delete;
2018-08-16 14:29:41 +02:00
auto toggle() -> void;
2018-08-20 14:50:45 +02:00
const Client& client;
2018-08-08 23:54:58 +02:00
Gtk::Window window;
struct wl_surface *surface;
2018-08-16 14:29:41 +02:00
struct zwlr_layer_surface_v1 *layer_surface;
2018-08-08 23:54:58 +02:00
std::unique_ptr<struct wl_output *> output;
2018-08-19 13:39:57 +02:00
std::string output_name;
uint32_t wl_name;
2018-08-16 14:29:41 +02:00
bool visible = true;
2018-08-08 23:54:58 +02:00
private:
2018-08-16 14:29:41 +02:00
static void handleLogicalPosition(void *, struct zxdg_output_v1 *, int32_t,
int32_t);
static void handleLogicalSize(void *, struct zxdg_output_v1 *, int32_t,
int32_t);
static void handleDone(void *, struct zxdg_output_v1 *);
static void handleName(void *, struct zxdg_output_v1 *, const char *);
static void handleDescription(void *, struct zxdg_output_v1 *,
const char *);
static void layerSurfaceHandleConfigure(void *,
struct zwlr_layer_surface_v1 *, uint32_t, uint32_t, uint32_t);
static void layerSurfaceHandleClosed(void *,
struct zwlr_layer_surface_v1 *);
auto setupConfig() -> void;
auto setupWidgets() -> void;
auto setupCss() -> void;
2018-08-20 14:50:45 +02:00
void getModules(const Factory&, const std::string&);
2018-08-16 14:29:41 +02:00
uint32_t width_ = 0;
uint32_t height_ = 30;
Json::Value config_;
Glib::RefPtr<Gtk::StyleContext> style_context_;
Glib::RefPtr<Gtk::CssProvider> css_provider_;
struct zxdg_output_v1 *xdg_output_;
2018-08-19 13:39:57 +02:00
std::vector<std::unique_ptr<waybar::IModule>> modules_left_;
std::vector<std::unique_ptr<waybar::IModule>> modules_center_;
std::vector<std::unique_ptr<waybar::IModule>> modules_right_;
2018-08-16 14:29:41 +02:00
};
2018-08-08 23:54:58 +02:00
}