mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
3 changed files with 64 additions and 0 deletions
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
#include "title.h" |
||||
|
||||
namespace app |
||||
{ |
||||
namespace browser |
||||
{ |
||||
namespace header |
||||
{ |
||||
// Construct
|
||||
Title::Title( |
||||
Header *header |
||||
) { |
||||
// Init GTK
|
||||
this->gtk = gtk_box_new( |
||||
GTK_ORIENTATION_HORIZONTAL, |
||||
Title::SPACING |
||||
); |
||||
|
||||
gtk_widget_show( |
||||
GTK_WIDGET( |
||||
this->gtk |
||||
) |
||||
); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
#ifndef APP_BROWSER_HEADER_TITLE_H |
||||
#define APP_BROWSER_HEADER_TITLE_H |
||||
|
||||
// Dependencies
|
||||
#include "../header.h" |
||||
|
||||
namespace app |
||||
{ |
||||
namespace browser |
||||
{ |
||||
class Header; |
||||
|
||||
namespace header |
||||
{ |
||||
class Title |
||||
{ |
||||
public: |
||||
|
||||
// GTK
|
||||
GtkWidget *gtk; |
||||
|
||||
// Defaults
|
||||
const gint SPACING = 0; |
||||
|
||||
// Dependencies
|
||||
Header *header; |
||||
|
||||
Title( |
||||
Header *header |
||||
); |
||||
}; |
||||
} |
||||
}; |
||||
}; |
||||
|
||||
#endif |
Loading…
Reference in new issue