mirror of https://github.com/YGGverse/Yoda.git
yggverse
4 months ago
5 changed files with 90 additions and 0 deletions
@ -0,0 +1,31 @@
@@ -0,0 +1,31 @@
|
||||
#include "tab.h" |
||||
|
||||
namespace app |
||||
{ |
||||
namespace browser |
||||
{ |
||||
namespace container |
||||
{ |
||||
// Construct
|
||||
Tab::Tab( |
||||
Container *container |
||||
) { |
||||
// Init GTK
|
||||
this->gtk = gtk_notebook_new(); |
||||
|
||||
gtk_notebook_set_scrollable( |
||||
GTK_NOTEBOOK( |
||||
this->gtk |
||||
), |
||||
Tab::SCROLLABLE |
||||
); |
||||
|
||||
gtk_widget_show( |
||||
GTK_WIDGET( |
||||
this->gtk |
||||
) |
||||
); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,30 @@
@@ -0,0 +1,30 @@
|
||||
#ifndef APP_BROWSER_CONTAINER_TAB_H |
||||
#define APP_BROWSER_CONTAINER_TAB_H |
||||
|
||||
#include "../container.h" |
||||
|
||||
namespace app |
||||
{ |
||||
namespace browser |
||||
{ |
||||
class Container; |
||||
|
||||
namespace container |
||||
{ |
||||
class Tab |
||||
{ |
||||
public: |
||||
|
||||
GtkWidget *gtk; |
||||
|
||||
const gboolean SCROLLABLE = true; |
||||
|
||||
Tab( |
||||
Container *container |
||||
); |
||||
}; |
||||
}; |
||||
}; |
||||
}; |
||||
|
||||
#endif |
Loading…
Reference in new issue