waybar/include/modules/workspaces.hpp

30 lines
667 B
C++
Raw Normal View History

2018-08-08 23:54:58 +02:00
#pragma once
#include <fmt/format.h>
#include "bar.hpp"
#include "client.hpp"
#include "util/chrono.hpp"
2018-08-09 12:05:48 +02:00
#include "IModule.hpp"
2018-08-08 23:54:58 +02:00
namespace waybar::modules {
2018-08-09 12:05:48 +02:00
class Workspaces : public IModule {
2018-08-08 23:54:58 +02:00
public:
2018-08-09 12:05:48 +02:00
Workspaces(waybar::Bar &bar);
2018-08-08 23:54:58 +02:00
auto update() -> void;
void updateThread();
2018-08-08 23:54:58 +02:00
operator Gtk::Widget &();
util::SleeperThread *thread;
2018-08-08 23:54:58 +02: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 23:54:58 +02:00
};
}