mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 09:40:01 +00:00
29 lines
551 B
C++
29 lines
551 B
C++
|
#include "header.h"
|
||
|
|
||
|
namespace app
|
||
|
{
|
||
|
namespace browser
|
||
|
{
|
||
|
// Construct
|
||
|
Header::Header(
|
||
|
Browser *browser
|
||
|
) {
|
||
|
// Init GTK
|
||
|
this->gtk = gtk_header_bar_new();
|
||
|
|
||
|
gtk_header_bar_set_show_title_buttons(
|
||
|
GTK_HEADER_BAR(
|
||
|
this->gtk
|
||
|
),
|
||
|
Header::SHOW_TITLE_BUTTONS
|
||
|
);
|
||
|
|
||
|
gtk_widget_show(
|
||
|
GTK_WIDGET(
|
||
|
this->gtk
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}
|