mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 01:29:57 +00:00
34 lines
604 B
C++
34 lines
604 B
C++
#ifndef APP_BROWSER_HEADER_HPP
|
|
#define APP_BROWSER_HEADER_HPP
|
|
|
|
#include <glibmm/ustring.h>
|
|
#include <gtkmm/headerbar.h>
|
|
|
|
namespace app::browser
|
|
{
|
|
namespace header
|
|
{
|
|
class Main;
|
|
class Menu;
|
|
class Tab;
|
|
}
|
|
|
|
class Header : public Gtk::HeaderBar
|
|
{
|
|
app::browser::header::Main * main;
|
|
app::browser::header::Menu * menu;
|
|
app::browser::header::Tab * tab;
|
|
|
|
public:
|
|
|
|
Header();
|
|
|
|
~Header();
|
|
|
|
void set_title(
|
|
const Glib::ustring text
|
|
);
|
|
};
|
|
}
|
|
|
|
#endif // APP_BROWSER_HEADER_HPP
|