2022-05-19 19:20:04 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
#include <wayland-client.h>
|
|
|
|
|
|
|
|
#include "ALabel.hpp"
|
|
|
|
#include "bar.hpp"
|
|
|
|
#include "river-status-unstable-v1-client-protocol.h"
|
|
|
|
#include "xdg-output-unstable-v1-client-protocol.h"
|
|
|
|
|
|
|
|
namespace waybar::modules::river {
|
|
|
|
|
|
|
|
class Window : public waybar::ALabel {
|
|
|
|
public:
|
|
|
|
Window(const std::string &, const waybar::Bar &, const Json::Value &);
|
|
|
|
~Window();
|
|
|
|
|
|
|
|
// Handlers for wayland events
|
|
|
|
void handle_focused_view(const char *title);
|
|
|
|
void handle_focused_output(struct wl_output *output);
|
|
|
|
void handle_unfocused_output(struct wl_output *output);
|
|
|
|
|
|
|
|
struct zriver_status_manager_v1 *status_manager_;
|
|
|
|
struct wl_seat *seat_;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const waybar::Bar &bar_;
|
2022-05-23 11:47:14 +00:00
|
|
|
struct wl_output *output_; // stores the output this module belongs to
|
|
|
|
struct wl_output *focused_output_; // stores the currently focused output
|
2022-05-19 19:20:04 +00:00
|
|
|
struct zriver_seat_status_v1 *seat_status_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace waybar::modules::river */
|