Waybar/include/modules/hyprland/window.hpp

32 lines
684 B
C++
Raw Normal View History

2022-07-01 10:46:28 +00:00
#include <fmt/format.h>
#include <tuple>
#include "ALabel.hpp"
#include "bar.hpp"
#include "modules/hyprland/backend.hpp"
#include "util/json.hpp"
namespace waybar::modules::hyprland {
2022-11-24 11:28:52 +00:00
class Window : public waybar::ALabel, public EventHandler {
public:
2022-07-01 10:46:28 +00:00
Window(const std::string&, const waybar::Bar&, const Json::Value&);
2023-03-02 13:57:07 +00:00
virtual ~Window();
2022-07-01 10:46:28 +00:00
2023-03-02 13:57:07 +00:00
auto update() -> void override;
2022-08-17 19:54:23 +00:00
private:
int getActiveWorkspaceID(std::string);
std::string getLastWindowTitle(int);
2023-03-02 13:57:07 +00:00
void onEvent(const std::string&) override;
2022-07-01 10:46:28 +00:00
bool separate_outputs;
2022-08-17 19:54:23 +00:00
std::mutex mutex_;
2022-07-01 10:46:28 +00:00
const Bar& bar_;
util::JsonParser parser_;
std::string lastView;
};
2022-11-09 08:34:19 +00:00
} // namespace waybar::modules::hyprland