mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
3 changed files with 58 additions and 0 deletions
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
#include "page.h" |
||||
|
||||
namespace app |
||||
{ |
||||
namespace browser |
||||
{ |
||||
namespace container |
||||
{ |
||||
// Construct
|
||||
Page::Page( |
||||
Container *container |
||||
) { |
||||
// Init GTK
|
||||
this->gtk = gtk_box_new( |
||||
GTK_ORIENTATION_VERTICAL, |
||||
Page::SPACING |
||||
); |
||||
|
||||
gtk_widget_show( |
||||
GTK_WIDGET( |
||||
this->gtk |
||||
) |
||||
); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
#ifndef APP_BROWSER_CONTAINER_PAGE_H |
||||
#define APP_BROWSER_CONTAINER_PAGE_H |
||||
|
||||
#include "../container.h" |
||||
|
||||
namespace app |
||||
{ |
||||
namespace browser |
||||
{ |
||||
class Container; |
||||
|
||||
namespace container |
||||
{ |
||||
class Page |
||||
{ |
||||
public: |
||||
|
||||
GtkWidget *gtk; |
||||
|
||||
const gint SPACING = 0; |
||||
|
||||
Page( |
||||
Container *container |
||||
); |
||||
}; |
||||
}; |
||||
}; |
||||
}; |
||||
|
||||
#endif |
Loading…
Reference in new issue