Waybar/include/modules/workspaces.hpp

30 lines
667 B
C++
Raw Normal View History

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-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;
void updateThread();
2018-08-08 21:54:58 +00:00
operator Gtk::Widget &();
util::SleeperThread *thread;
2018-08-08 21:54:58 +00:00
private:
void _addWorkspace(Json::Value node);
Json::Value _getWorkspaces();
Bar &_bar;
Gtk::Box *_box;
std::unordered_map<int, Gtk::Button> _buttons;
int _ipcSocketfd;
int _ipcEventSocketfd;
struct org_kde_kwin_idle_timeout *_idle_timer;
2018-08-08 21:54:58 +00:00
};
}