diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 00000000..17db6133 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,48 @@ +#include "main.h" + +void activate( + GtkApplication *application +) { + // Init default component + new YodaBrowser( + application + ); +} + +int main( + int argc, + char *argv[] +) { + // Create a new application + GtkApplication *application = gtk_application_new( + NULL, + G_APPLICATION_DEFAULT_FLAGS + ); + + // Connect the "activate" signal to the callback function + g_signal_connect( + application, + "activate", + G_CALLBACK( + activate + ), + NULL + ); + + // Run the application + int status = g_application_run( + G_APPLICATION( + application + ), + argc, + argv + ); + + // Clean up + g_object_unref( + application + ); + + // Result + return status; +} \ No newline at end of file diff --git a/src/main.h b/src/main.h new file mode 100644 index 00000000..89af56cd --- /dev/null +++ b/src/main.h @@ -0,0 +1,13 @@ +#include +#include + +#include "Yoda/Browser.h" + +void static activate( + GtkApplication *application +); + +int main( + int argc, + char *argv[] +); \ No newline at end of file