feat: improve drawer configuration

This commit is contained in:
Brenno Lemos 2023-10-14 18:03:27 -03:00
parent 5246ab15cb
commit fad858782c
3 changed files with 48 additions and 19 deletions

View File

@ -27,6 +27,7 @@ class Group : public AModule {
Gtk::Revealer revealer; Gtk::Revealer revealer;
bool is_first_widget = true; bool is_first_widget = true;
bool is_drawer = false; bool is_drawer = false;
std::string add_class_to_drawer_children;
}; };
} // namespace waybar } // namespace waybar

View File

@ -753,9 +753,6 @@ void waybar::Bar::getModules(const Factory& factory, const std::string& pos,
auto id_name = ref.substr(6, hash_pos - 6); auto id_name = ref.substr(6, hash_pos - 6);
auto class_name = hash_pos != std::string::npos ? ref.substr(hash_pos + 1) : ""; auto class_name = hash_pos != std::string::npos ? ref.substr(hash_pos + 1) : "";
// auto parent = group ? group : &this->box_;
// auto vertical = parent->get_orientation() == Gtk::ORIENTATION_VERTICAL;
auto vertical = (group ? group->getBox().get_orientation() : box_.get_orientation()) == auto vertical = (group ? group->getBox().get_orientation() : box_.get_orientation()) ==
Gtk::ORIENTATION_VERTICAL; Gtk::ORIENTATION_VERTICAL;

View File

@ -1,7 +1,6 @@
#include "group.hpp" #include "group.hpp"
#include <fmt/format.h> #include <fmt/format.h>
#include <spdlog/spdlog.h>
#include <util/command.hpp> #include <util/command.hpp>
@ -10,6 +9,22 @@
namespace waybar { namespace waybar {
const Gtk::RevealerTransitionType getPreferredTransitionType(bool is_vertical, bool left_to_right) {
if (is_vertical) {
if (left_to_right) {
return Gtk::RevealerTransitionType::REVEALER_TRANSITION_TYPE_SLIDE_DOWN;
} else {
return Gtk::RevealerTransitionType::REVEALER_TRANSITION_TYPE_SLIDE_UP;
}
} else {
if (left_to_right) {
return Gtk::RevealerTransitionType::REVEALER_TRANSITION_TYPE_SLIDE_RIGHT;
} else {
return Gtk::RevealerTransitionType::REVEALER_TRANSITION_TYPE_SLIDE_LEFT;
}
}
}
Group::Group(const std::string& name, const std::string& id, const Json::Value& config, Group::Group(const std::string& name, const std::string& id, const Json::Value& config,
bool vertical) bool vertical)
: AModule(config, name, id, true, true), : AModule(config, name, id, true, true),
@ -35,10 +50,24 @@ Group::Group(const std::string& name, const std::string& id, const Json::Value&
throw std::runtime_error("Invalid orientation value: " + orientation); throw std::runtime_error("Invalid orientation value: " + orientation);
} }
if (!config_["drawer"].empty() && config_["drawer"].asBool()) { if (config_["drawer"].isObject()) {
is_drawer = true; is_drawer = true;
revealer.set_transition_type(Gtk::RevealerTransitionType::REVEALER_TRANSITION_TYPE_SLIDE_UP);
revealer.set_transition_duration(500); const auto& drawer_config = config_["drawer"];
const int transition_duration =
(drawer_config["transition-duration"].isInt() ? drawer_config["transition-duration"].asInt()
: 500);
add_class_to_drawer_children =
(drawer_config["children-class"].isString() ? drawer_config["children-class"].asString()
: "drawer-child");
const bool left_to_right = (drawer_config["transition-left-to-right"].isBool()
? drawer_config["transition-left-to-right"].asBool()
: true);
auto transition_type = getPreferredTransitionType(vertical, left_to_right);
revealer.set_transition_type(transition_type);
revealer.set_transition_duration(transition_duration);
revealer.set_reveal_child(false); revealer.set_reveal_child(false);
revealer.get_style_context()->add_class("drawer"); revealer.get_style_context()->add_class("drawer");
@ -53,19 +82,14 @@ Group::Group(const std::string& name, const std::string& id, const Json::Value&
} }
bool Group::hangleMouseHover(GdkEventCrossing* const& e) { bool Group::hangleMouseHover(GdkEventCrossing* const& e) {
spdlog::info("Mouse hover event");
switch (e->type) { switch (e->type) {
case GDK_ENTER_NOTIFY: case GDK_ENTER_NOTIFY:
spdlog::info("Mouse enter event");
revealer.set_reveal_child(true); revealer.set_reveal_child(true);
break; break;
case GDK_LEAVE_NOTIFY: case GDK_LEAVE_NOTIFY:
spdlog::info("Mouse leave event");
revealer.set_reveal_child(false); revealer.set_reveal_child(false);
break; break;
default: default:
spdlog::warn("Unhandled mouse hover event type: {}", (int)e->type);
break; break;
} }
@ -79,14 +103,21 @@ auto Group::update() -> void {
Gtk::Box& Group::getBox() { return is_drawer ? (is_first_widget ? box : revealer_box) : box; } Gtk::Box& Group::getBox() { return is_drawer ? (is_first_widget ? box : revealer_box) : box; }
void Group::addWidget(Gtk::Widget& widget) { void Group::addWidget(Gtk::Widget& widget) {
widget.set_has_tooltip(false); if (is_drawer) {
spdlog::info("Adding widget to group {}. Is first? {}", name_, is_first_widget); getBox().pack_start(widget, false, false);
getBox().pack_start(widget, false, false);
if (is_first_widget) { if (is_first_widget) {
widget.add_events(Gdk::EventMask::ENTER_NOTIFY_MASK | Gdk::EventMask::LEAVE_NOTIFY_MASK); // Necessary because of GTK's hitbox detection
widget.signal_enter_notify_event().connect(sigc::mem_fun(*this, &Group::hangleMouseHover)); widget.add_events(Gdk::EventMask::ENTER_NOTIFY_MASK | Gdk::EventMask::LEAVE_NOTIFY_MASK);
widget.signal_leave_notify_event().connect(sigc::mem_fun(*this, &Group::hangleMouseHover)); widget.signal_enter_notify_event().connect(sigc::mem_fun(*this, &Group::hangleMouseHover));
widget.signal_leave_notify_event().connect(sigc::mem_fun(*this, &Group::hangleMouseHover));
} else {
widget.get_style_context()->add_class(add_class_to_drawer_children);
}
} else {
getBox().pack_start(widget, false, false);
} }
is_first_widget = false; is_first_widget = false;
} }