23 lines
388 B
C++
23 lines
388 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);
|
|
};
|
|
|
|
}
|
|
|
|
#endif //AUTOCAT_GNOME_HEADERBAR_H
|