Files
bar/include/widgets/controlCenter.hpp

12 lines
230 B
C++

#pragma once
#include "components/popover.hpp"
#include "gtkmm/box.h"
class ControlCenter : public Popover {
public:
ControlCenter(std::string icon, std::string name);
private:
Gtk::Box container;
};