Waybar/include/group.hpp

37 lines
826 B
C++
Raw Normal View History

2021-10-31 22:55:13 +00:00
#pragma once
#include "AModule.hpp"
#include <gtkmm/box.h>
#include <gtkmm/eventcontrollermotion.h>
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:
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;
virtual Gtk::Box& getBox();
2023-10-14 20:17:19 +00:00
void addWidget(Gtk::Widget& widget);
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;
private:
Glib::RefPtr<Gtk::EventControllerMotion> controllMotion_;
void addHoverHandlerTo(Gtk::Widget& widget);
void onMotionEnter(double x, double y);
void onMotionLeave();
2021-10-31 22:55:13 +00:00
};
} // namespace waybar