Waybar/include/group.hpp

23 lines
391 B
C++
Raw Normal View History

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"
#include "bar.hpp"
#include "factory.hpp"
namespace waybar {
class Group : public AModule {
public:
Group(const std::string&, const Bar&, const Json::Value&);
~Group() = default;
auto update() -> void;
2022-04-06 06:37:19 +00:00
operator Gtk::Widget&();
2021-10-31 22:55:13 +00:00
Gtk::Box box;
};
} // namespace waybar