2018-08-08 21:54:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include "bar.hpp"
|
|
|
|
#include "client.hpp"
|
|
|
|
#include "util/chrono.hpp"
|
2018-08-13 19:23:43 +00:00
|
|
|
#include "util/json.hpp"
|
2018-08-09 10:05:48 +00:00
|
|
|
#include "IModule.hpp"
|
2018-08-08 21:54:58 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-09 10:05:48 +00:00
|
|
|
class Workspaces : public IModule {
|
2018-08-08 21:54:58 +00:00
|
|
|
public:
|
2018-08-09 10:05:48 +00:00
|
|
|
Workspaces(waybar::Bar &bar);
|
2018-08-08 21:54:58 +00:00
|
|
|
auto update() -> void;
|
|
|
|
operator Gtk::Widget &();
|
|
|
|
private:
|
|
|
|
void _addWorkspace(Json::Value node);
|
2018-08-13 19:23:43 +00:00
|
|
|
Json::Value _getWorkspaces(const std::string data);
|
2018-08-08 21:54:58 +00:00
|
|
|
Bar &_bar;
|
2018-08-10 21:21:21 +00:00
|
|
|
waybar::util::SleeperThread _thread;
|
|
|
|
Gtk::Box _box;
|
2018-08-13 19:23:43 +00:00
|
|
|
util::JsonParser _parser;
|
|
|
|
std::mutex _mutex;
|
2018-08-08 21:54:58 +00:00
|
|
|
std::unordered_map<int, Gtk::Button> _buttons;
|
2018-08-13 19:23:43 +00:00
|
|
|
Json::Value _workspaces;
|
|
|
|
int _ipcfd;
|
|
|
|
int _ipcEventfd;
|
2018-08-08 21:54:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|