Some checks failed
clang-format / lint (push) Has been cancelled
freebsd / build (push) Has been cancelled
linux / build (c++20, alpine) (push) Has been cancelled
linux / build (c++20, archlinux) (push) Has been cancelled
linux / build (c++20, debian) (push) Has been cancelled
linux / build (c++20, fedora) (push) Has been cancelled
linux / build (c++20, gentoo) (push) Has been cancelled
linux / build (c++20, opensuse) (push) Has been cancelled
Nix-Tests / nix-flake-check (push) Has been cancelled
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
#pragma once
|
|
|
|
#include <gtkmm/box.h>
|
|
#include <gtkmm/widget.h>
|
|
#include <json/json.h>
|
|
|
|
#include <optional>
|
|
|
|
#include "AModule.hpp"
|
|
#include "gtkmm/revealer.h"
|
|
|
|
namespace waybar {
|
|
|
|
class Group : public AModule {
|
|
public:
|
|
Group(const std::string&, const std::string&, const Json::Value&, bool);
|
|
~Group() override = default;
|
|
auto update() -> void override;
|
|
operator Gtk::Widget&() override;
|
|
auto refresh(int sig) -> void override;
|
|
|
|
virtual Gtk::Box& getBox();
|
|
void addWidget(Gtk::Widget& widget);
|
|
|
|
protected:
|
|
Gtk::Box box;
|
|
Gtk::Box revealer_box;
|
|
Gtk::Revealer revealer;
|
|
bool is_first_widget = true;
|
|
bool is_drawer = false;
|
|
bool click_to_reveal = false;
|
|
std::optional<int> toggle_signal;
|
|
std::string add_class_to_drawer_children;
|
|
bool handleMouseEnter(GdkEventCrossing* const& ev) override;
|
|
bool handleMouseLeave(GdkEventCrossing* const& ev) override;
|
|
bool handleToggle(GdkEventButton* const& ev) override;
|
|
void toggle();
|
|
bool handleScroll(GdkEventScroll* e) override;
|
|
void show_group();
|
|
void hide_group();
|
|
void set_visible(bool v) {
|
|
if (v) {
|
|
show_group();
|
|
} else {
|
|
hide_group();
|
|
}
|
|
}
|
|
};
|
|
|
|
} // namespace waybar
|