mirror of https://github.com/YGGverse/Yoda.git
yggverse
4 months ago
2 changed files with 33 additions and 48 deletions
@ -1,33 +1,24 @@ |
|||||||
#include "title.h" |
#include "title.h" |
||||||
|
|
||||||
namespace app |
namespace app::browser::header::bar |
||||||
{ |
{ |
||||||
namespace browser |
// Construct
|
||||||
{ |
Title::Title( |
||||||
namespace header |
Bar *bar |
||||||
{ |
) { |
||||||
namespace bar |
// Init dependencies
|
||||||
{ |
this->bar = bar; |
||||||
// Construct
|
|
||||||
Title::Title( |
|
||||||
Bar *bar |
|
||||||
) { |
|
||||||
// Init dependencies
|
|
||||||
this->bar = bar; |
|
||||||
|
|
||||||
// Init GTK
|
// Init GTK
|
||||||
this->gtk = gtk_label_new( |
this->gtk = gtk_label_new( |
||||||
Title::LABEL |
Title::LABEL |
||||||
); |
); |
||||||
|
|
||||||
// Render
|
// Render
|
||||||
gtk_widget_show( |
gtk_widget_show( |
||||||
GTK_WIDGET( |
GTK_WIDGET( |
||||||
this->gtk |
this->gtk |
||||||
) |
) |
||||||
); |
); |
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
} |
||||||
} |
} |
Loading…
Reference in new issue