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 @@
@@ -1,33 +1,24 @@
|
||||
#include "title.h" |
||||
|
||||
namespace app |
||||
namespace app::browser::header::bar |
||||
{ |
||||
namespace browser |
||||
{ |
||||
namespace header |
||||
{ |
||||
namespace bar |
||||
{ |
||||
// Construct
|
||||
Title::Title( |
||||
Bar *bar |
||||
) { |
||||
// Init dependencies
|
||||
this->bar = bar; |
||||
// Construct
|
||||
Title::Title( |
||||
Bar *bar |
||||
) { |
||||
// Init dependencies
|
||||
this->bar = bar; |
||||
|
||||
// Init GTK
|
||||
this->gtk = gtk_label_new( |
||||
Title::LABEL |
||||
); |
||||
// Init GTK
|
||||
this->gtk = gtk_label_new( |
||||
Title::LABEL |
||||
); |
||||
|
||||
// Render
|
||||
gtk_widget_show( |
||||
GTK_WIDGET( |
||||
this->gtk |
||||
) |
||||
); |
||||
} |
||||
} |
||||
} |
||||
// Render
|
||||
gtk_widget_show( |
||||
GTK_WIDGET( |
||||
this->gtk |
||||
) |
||||
); |
||||
} |
||||
} |
Loading…
Reference in new issue