AutoCatGnome/gtkpp/HeaderBar.h

25 lines
474 B
C++

//
// Created by selim on 11.05.2022.
//
#ifndef AUTOCAT_GNOME_HEADERBAR_H
#define AUTOCAT_GNOME_HEADERBAR_H
#include "Widget.h"
#include <string>
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