init container class

This commit is contained in:
yggverse 2024-08-05 03:32:43 +03:00
parent 47bd3b5b8b
commit 3e24a6fb72
3 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,24 @@
#include "container.h"
namespace app
{
namespace browser
{
// Construct
Container::Container(
Browser *browser
) {
// Init GTK
this->gtk = gtk_box_new(
GTK_ORIENTATION_VERTICAL,
Container::SPACING
);
gtk_widget_show(
GTK_WIDGET(
this->gtk
)
);
}
}
}