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