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-13 21:23:43 +02:00
|
|
|
#include "util/json.hpp"
|
2018-08-09 12:05:48 +02:00
|
|
|
#include "IModule.hpp"
|
2018-08-20 14:50:45 +02:00
|
|
|
#include "modules/sway/ipc/client.hpp"
|
2018-08-08 23:54:58 +02:00
|
|
|
|
2018-08-15 20:17:17 +02:00
|
|
|
namespace waybar::modules::sway {
|
2018-08-08 23:54:58 +02:00
|
|
|
|
2018-08-16 14:29:41 +02:00
|
|
|
class Workspaces : public IModule {
|
|
|
|
public:
|
2018-12-01 00:10:41 +01:00
|
|
|
Workspaces(const waybar::Bar&, const Json::Value&);
|
2018-08-16 14:29:41 +02:00
|
|
|
auto update() -> void;
|
|
|
|
operator Gtk::Widget &();
|
|
|
|
private:
|
2018-08-20 14:50:45 +02:00
|
|
|
void worker();
|
2018-08-16 14:29:41 +02:00
|
|
|
void addWorkspace(Json::Value);
|
2018-09-05 00:16:56 +02:00
|
|
|
std::string getIcon(std::string, Json::Value);
|
2018-08-16 14:29:41 +02:00
|
|
|
bool handleScroll(GdkEventScroll*);
|
2018-11-05 20:16:19 +01:00
|
|
|
std::string getPrevWorkspace();
|
|
|
|
std::string getNextWorkspace();
|
2018-08-16 14:29:41 +02:00
|
|
|
|
2018-12-01 00:10:41 +01:00
|
|
|
const Bar& bar_;
|
2018-08-20 14:50:45 +02:00
|
|
|
const Json::Value& config_;
|
2018-08-16 14:29:41 +02:00
|
|
|
waybar::util::SleeperThread thread_;
|
|
|
|
Gtk::Box box_;
|
|
|
|
util::JsonParser parser_;
|
|
|
|
std::mutex mutex_;
|
|
|
|
bool scrolling_;
|
2018-11-05 20:16:19 +01:00
|
|
|
std::unordered_map<std::string, Gtk::Button> buttons_;
|
2018-08-16 14:29:41 +02:00
|
|
|
Json::Value workspaces_;
|
2018-08-20 14:50:45 +02:00
|
|
|
Ipc ipc_;
|
2018-08-16 14:29:41 +02:00
|
|
|
};
|
2018-08-08 23:54:58 +02:00
|
|
|
|
|
|
|
}
|