Waybar/include/modules/sway/workspaces.hpp

39 lines
835 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-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
2018-08-15 18:17:17 +00:00
namespace waybar::modules::sway {
2018-08-08 21:54:58 +00:00
2018-08-16 12:29:41 +00:00
class Workspaces : public IModule {
public:
Workspaces(waybar::Bar&, Json::Value);
2018-08-19 11:39:57 +00:00
~Workspaces();
2018-08-16 12:29:41 +00:00
auto update() -> void;
operator Gtk::Widget &();
private:
void addWorkspace(Json::Value);
std::string getIcon(std::string);
bool handleScroll(GdkEventScroll*);
int getPrevWorkspace();
int getNextWorkspace();
Bar& bar_;
Json::Value config_;
waybar::util::SleeperThread thread_;
Gtk::Box box_;
util::JsonParser parser_;
std::mutex mutex_;
bool scrolling_;
std::unordered_map<int, Gtk::Button> buttons_;
Json::Value workspaces_;
int ipcfd_;
int ipc_eventfd_;
};
2018-08-08 21:54:58 +00:00
}