2018-08-08 21:54:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
|
|
|
#include "bar.hpp"
|
|
|
|
#include "client.hpp"
|
2018-12-26 10:13:36 +00:00
|
|
|
#include "util/sleeper_thread.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-20 12:50:45 +00:00
|
|
|
#include "modules/sway/ipc/client.hpp"
|
2019-01-08 20:05:44 +00:00
|
|
|
#include <gtkmm/button.h>
|
2019-04-15 08:55:44 +00:00
|
|
|
#include <gtkmm/label.h>
|
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:
|
2018-12-18 16:30:54 +00:00
|
|
|
Workspaces(const std::string&, const waybar::Bar&, const Json::Value&);
|
2018-12-26 10:13:36 +00:00
|
|
|
~Workspaces() = default;
|
2018-08-16 12:29:41 +00:00
|
|
|
auto update() -> void;
|
|
|
|
operator Gtk::Widget &();
|
|
|
|
private:
|
2018-08-20 12:50:45 +00:00
|
|
|
void worker();
|
2019-02-01 23:36:52 +00:00
|
|
|
void addWorkspace(const Json::Value&);
|
2019-03-03 10:35:32 +00:00
|
|
|
void onButtonReady(const Json::Value&, Gtk::Button&);
|
2019-02-01 23:36:52 +00:00
|
|
|
std::string getIcon(const std::string&, const Json::Value&);
|
2018-08-16 12:29:41 +00:00
|
|
|
bool handleScroll(GdkEventScroll*);
|
2019-03-18 13:44:07 +00:00
|
|
|
const std::string getCycleWorkspace(uint8_t current, bool prev) const;
|
|
|
|
uint16_t getWorkspaceIndex(const std::string &name) const;
|
2018-12-28 17:35:21 +00:00
|
|
|
std::string trimWorkspaceName(std::string);
|
2018-08-16 12:29:41 +00:00
|
|
|
|
2018-11-30 23:10:41 +00:00
|
|
|
const Bar& bar_;
|
2018-08-20 12:50:45 +00:00
|
|
|
const Json::Value& config_;
|
2018-12-26 10:13:36 +00:00
|
|
|
Json::Value workspaces_;
|
2018-08-16 12:29:41 +00:00
|
|
|
waybar::util::SleeperThread thread_;
|
|
|
|
Gtk::Box box_;
|
|
|
|
util::JsonParser parser_;
|
2018-12-26 10:13:36 +00:00
|
|
|
Ipc ipc_;
|
2018-08-16 12:29:41 +00:00
|
|
|
std::mutex mutex_;
|
|
|
|
bool scrolling_;
|
2018-11-05 19:16:19 +00:00
|
|
|
std::unordered_map<std::string, Gtk::Button> buttons_;
|
2018-08-16 12:29:41 +00:00
|
|
|
};
|
2018-08-08 21:54:58 +00:00
|
|
|
|
|
|
|
}
|