2018-08-08 21:54:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-08-28 03:57:23 +00:00
|
|
|
#include <gdkmm/monitor.h>
|
2019-01-08 20:05:44 +00:00
|
|
|
#include <glibmm/refptr.h>
|
2019-07-15 08:06:01 +00:00
|
|
|
#include <gtkmm/box.h>
|
2019-01-08 20:05:44 +00:00
|
|
|
#include <gtkmm/cssprovider.h>
|
2019-04-18 15:43:16 +00:00
|
|
|
#include <gtkmm/main.h>
|
2019-01-08 20:05:44 +00:00
|
|
|
#include <gtkmm/window.h>
|
2019-04-18 15:43:16 +00:00
|
|
|
#include <json/json.h>
|
2020-10-22 05:16:12 +00:00
|
|
|
|
2019-06-15 12:57:52 +00:00
|
|
|
#include "AModule.hpp"
|
2018-08-10 22:32:59 +00:00
|
|
|
#include "xdg-output-unstable-v1-client-protocol.h"
|
2018-08-08 21:54:58 +00:00
|
|
|
|
|
|
|
namespace waybar {
|
|
|
|
|
2018-08-19 11:39:57 +00:00
|
|
|
class Factory;
|
2019-04-18 15:43:16 +00:00
|
|
|
struct waybar_output {
|
2019-08-28 03:57:23 +00:00
|
|
|
Glib::RefPtr<Gdk::Monitor> monitor;
|
|
|
|
std::string name;
|
2020-12-25 20:54:38 +00:00
|
|
|
std::string identifier;
|
2019-08-28 03:57:23 +00:00
|
|
|
|
|
|
|
std::unique_ptr<struct zxdg_output_v1, decltype(&zxdg_output_v1_destroy)> xdg_output = {
|
|
|
|
nullptr, &zxdg_output_v1_destroy};
|
2019-04-18 15:43:16 +00:00
|
|
|
};
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2020-10-23 06:04:58 +00:00
|
|
|
enum class bar_layer : uint8_t {
|
|
|
|
BOTTOM,
|
|
|
|
TOP,
|
|
|
|
OVERLAY,
|
|
|
|
};
|
|
|
|
|
2020-10-22 05:16:12 +00:00
|
|
|
struct bar_margins {
|
|
|
|
int top = 0;
|
|
|
|
int right = 0;
|
|
|
|
int bottom = 0;
|
|
|
|
int left = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
class BarSurface {
|
|
|
|
protected:
|
|
|
|
BarSurface() = default;
|
|
|
|
|
|
|
|
public:
|
2020-10-28 15:06:40 +00:00
|
|
|
virtual void setExclusiveZone(bool enable) = 0;
|
2020-10-23 06:04:58 +00:00
|
|
|
virtual void setLayer(bar_layer layer) = 0;
|
2020-10-28 15:06:40 +00:00
|
|
|
virtual void setMargins(const struct bar_margins &margins) = 0;
|
|
|
|
virtual void setPosition(const std::string_view &position) = 0;
|
|
|
|
virtual void setSize(uint32_t width, uint32_t height) = 0;
|
2020-10-23 07:13:23 +00:00
|
|
|
virtual void commit(){};
|
2020-10-22 05:16:12 +00:00
|
|
|
|
|
|
|
virtual ~BarSurface() = default;
|
|
|
|
};
|
|
|
|
|
2018-08-16 12:29:41 +00:00
|
|
|
class Bar {
|
2019-04-18 15:43:16 +00:00
|
|
|
public:
|
2019-05-09 13:10:13 +00:00
|
|
|
Bar(struct waybar_output *w_output, const Json::Value &);
|
2019-04-18 15:43:16 +00:00
|
|
|
Bar(const Bar &) = delete;
|
|
|
|
~Bar() = default;
|
|
|
|
|
2020-10-22 05:16:12 +00:00
|
|
|
void setVisible(bool visible);
|
|
|
|
void toggle();
|
2019-04-18 15:43:16 +00:00
|
|
|
void handleSignal(int);
|
|
|
|
|
2019-12-28 00:31:18 +00:00
|
|
|
struct waybar_output *output;
|
|
|
|
Json::Value config;
|
|
|
|
struct wl_surface * surface;
|
|
|
|
bool visible = true;
|
|
|
|
bool vertical = false;
|
2020-05-27 07:10:38 +00:00
|
|
|
Gtk::Window window;
|
2019-04-18 15:43:16 +00:00
|
|
|
|
|
|
|
private:
|
2020-10-22 05:16:12 +00:00
|
|
|
void onMap(GdkEventAny *);
|
2019-04-18 15:43:16 +00:00
|
|
|
auto setupWidgets() -> void;
|
|
|
|
void getModules(const Factory &, const std::string &);
|
|
|
|
void setupAltFormatKeyForModule(const std::string &module_name);
|
|
|
|
void setupAltFormatKeyForModuleList(const char *module_list_name);
|
|
|
|
|
2020-10-22 05:16:12 +00:00
|
|
|
std::unique_ptr<BarSurface> surface_impl_;
|
2020-10-23 06:04:58 +00:00
|
|
|
bar_layer layer_;
|
2019-04-18 15:52:00 +00:00
|
|
|
Gtk::Box left_;
|
|
|
|
Gtk::Box center_;
|
|
|
|
Gtk::Box right_;
|
|
|
|
Gtk::Box box_;
|
2019-06-15 12:57:52 +00:00
|
|
|
std::vector<std::unique_ptr<waybar::AModule>> modules_left_;
|
|
|
|
std::vector<std::unique_ptr<waybar::AModule>> modules_center_;
|
|
|
|
std::vector<std::unique_ptr<waybar::AModule>> modules_right_;
|
2018-08-16 12:29:41 +00:00
|
|
|
};
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2019-04-18 15:43:16 +00:00
|
|
|
} // namespace waybar
|