2021-10-31 22:55:13 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <gtkmm/box.h>
|
2022-04-06 06:37:19 +00:00
|
|
|
#include <gtkmm/widget.h>
|
2021-10-31 22:55:13 +00:00
|
|
|
#include <json/json.h>
|
2022-04-06 06:37:19 +00:00
|
|
|
|
2021-10-31 22:55:13 +00:00
|
|
|
#include "AModule.hpp"
|
2023-10-14 20:17:19 +00:00
|
|
|
#include "gtkmm/revealer.h"
|
2021-10-31 22:55:13 +00:00
|
|
|
|
|
|
|
namespace waybar {
|
|
|
|
|
|
|
|
class Group : public AModule {
|
|
|
|
public:
|
2022-06-13 19:17:17 +00:00
|
|
|
Group(const std::string&, const std::string&, const Json::Value&, bool);
|
2023-10-14 20:17:19 +00:00
|
|
|
virtual ~Group() = default;
|
2023-03-02 13:57:07 +00:00
|
|
|
auto update() -> void override;
|
|
|
|
operator Gtk::Widget&() override;
|
2023-10-14 16:08:44 +00:00
|
|
|
|
|
|
|
virtual Gtk::Box& getBox();
|
2023-10-14 20:17:19 +00:00
|
|
|
void addWidget(Gtk::Widget& widget);
|
|
|
|
|
2023-10-14 21:30:27 +00:00
|
|
|
bool handleMouseHover(GdkEventCrossing* const& e);
|
2023-10-14 16:08:44 +00:00
|
|
|
|
|
|
|
protected:
|
2021-10-31 22:55:13 +00:00
|
|
|
Gtk::Box box;
|
2023-10-14 20:17:19 +00:00
|
|
|
Gtk::Box revealer_box;
|
|
|
|
Gtk::Revealer revealer;
|
|
|
|
bool is_first_widget = true;
|
|
|
|
bool is_drawer = false;
|
2023-10-14 21:03:27 +00:00
|
|
|
std::string add_class_to_drawer_children;
|
2023-10-14 21:30:27 +00:00
|
|
|
|
|
|
|
void addHoverHandlerTo(Gtk::Widget& widget);
|
2021-10-31 22:55:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace waybar
|