28 lines
584 B
C++
28 lines
584 B
C++
#pragma once
|
|
|
|
#include <json/json.h>
|
|
#include <fmt/format.h>
|
|
#include "bar.hpp"
|
|
#include "client.hpp"
|
|
#include "util/chrono.hpp"
|
|
|
|
namespace waybar::modules {
|
|
|
|
class WorkspaceSelector {
|
|
public:
|
|
WorkspaceSelector(waybar::Bar &bar);
|
|
auto update() -> void;
|
|
operator Gtk::Widget &();
|
|
private:
|
|
void _addWorkspace(Json::Value node);
|
|
Json::Value _getWorkspaces();
|
|
Bar &_bar;
|
|
Gtk::Box *_box;
|
|
std::unordered_map<int, Gtk::Button> _buttons;
|
|
util::SleeperThread _thread;
|
|
int _ipcSocketfd;
|
|
int _ipcEventSocketfd;
|
|
};
|
|
|
|
}
|