// // Created by selim on 11.05.2022. // #ifndef AUTOCAT_GNOME_HEADERBAR_H #define AUTOCAT_GNOME_HEADERBAR_H #include "Widget.h" #include namespace gtkpp { class HeaderBar: public Widget { public: HeaderBar(); explicit HeaderBar(const std::string& title); void setTitle(const std::string& title); void showEndButtons(bool show); void packStart(const Widget& widget); }; } #endif //AUTOCAT_GNOME_HEADERBAR_H