use namespace

This commit is contained in:
yggverse 2024-08-04 23:09:30 +03:00
parent cc262ea69d
commit a67b5ad018
3 changed files with 17 additions and 14 deletions

View file

@ -1,6 +1,6 @@
#include "Browser.h"
YodaBrowser::YodaBrowser(
Yoda::Browser::Browser(
GtkApplication *application
) {
this->gtk = gtk_application_window_new(
@ -13,15 +13,15 @@ YodaBrowser::YodaBrowser(
GTK_WINDOW(
this->gtk
),
YodaBrowser::TITLE
Browser::TITLE
);
gtk_window_set_default_size(
GTK_WINDOW(
this->gtk
),
YodaBrowser::WIDTH,
YodaBrowser::HEIGHT
Browser::WIDTH,
Browser::HEIGHT
);
GtkWidget *label = gtk_label_new(

View file

@ -3,7 +3,9 @@
#include "../main.h"
class YodaBrowser
namespace Yoda
{
class Browser
{
public:
@ -13,9 +15,10 @@ class YodaBrowser
const guint HEIGHT = 480;
const gchar* TITLE = "Yoda";
YodaBrowser(
Browser(
GtkApplication *application
);
};
};
#endif

View file

@ -4,7 +4,7 @@ void activate(
GtkApplication *application
) {
// Init default component
new YodaBrowser(
new Yoda::Browser(
application
);
}