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