summaryrefslogtreecommitdiff
path: root/src/app.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/app.c')
-rw-r--r--src/app.c253
1 files changed, 249 insertions, 4 deletions
diff --git a/src/app.c b/src/app.c
index bb0fa8a..a3a2080 100644
--- a/src/app.c
+++ b/src/app.c
@@ -33,13 +33,222 @@
#include "common/io.h"
#include "common/xdg.h"
#include "core/logs.h"
-#include "glibext/helpers.h"
+#include "gui/core/core.h"
+#include "gui/window.h"
-#define CHRYSALIDE_APP_ID "re.chrysalide.framework.gui" // REMME
+/* --------------------- DEFINITION D'APPLICATION PERSONNALISEE --------------------- */
+/* Définition de l'application principale graphique (instance) */
+struct _GtkChrysalideFramework
+{
+ GtkApplication parent; /* A laisser en premier */
+
+ GtkApplicationWindow *main_window; /* Fenêtre principale */
+
+};
+
+/* Définition de l'application principale graphique (classe) */
+struct _GtkChrysalideFrameworkClass
+{
+ GtkApplicationClass parent; /* A laisser en premier */
+
+};
+
+
+/* Initialise la classe des applications majeures de Chrysalide. */
+static void gtk_chrysalide_framework_class_init(GtkChrysalideFrameworkClass *);
+
+/* Initialise une application principale pour Chrysalide. */
+static void gtk_chrysalide_framework_init(GtkChrysalideFramework *);
+
+/* Supprime toutes les références externes. */
+static void gtk_chrysalide_framework_dispose(GtkChrysalideFramework *);
+
+/* Procède à la libération totale de la mémoire. */
+static void gtk_chrysalide_framework_finalize(GtkChrysalideFramework *);
+
+
+
+/* --------------------- IMPLEMENTATION DES FONCTIONS DE CLASSE --------------------- */
+
+
+/* Réagit à l'activation de l'application. */
+static void gtk_chrysalide_framework_activate(GApplication *);
+
+
+
+/* ---------------------- POINT D'ENTREE PRINCIPAL D'EXECUTION ---------------------- */
+
+
+/* Installe au besoin une définition locale pour le système. */
+static void ensure_wm_icon_and_name(void);
+
+
+
+/* ---------------------------------------------------------------------------------- */
+/* DEFINITION D'APPLICATION PERSONNALISEE */
+/* ---------------------------------------------------------------------------------- */
+
+
+/* Indique le type défini pour une application principale graphique de Chrysalide. */
+G_DEFINE_TYPE(GtkChrysalideFramework, gtk_chrysalide_framework, GTK_TYPE_APPLICATION);
+
+
+/******************************************************************************
+* *
+* Paramètres : klass = classe à initialiser. *
+* *
+* Description : Initialise la classe des applications majeures de Chrysalide.*
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void gtk_chrysalide_framework_class_init(GtkChrysalideFrameworkClass *klass)
+{
+ GObjectClass *object; /* Autre version de la classe */
+ GApplicationClass *app; /* Version parente de la classe*/
+
+ object = G_OBJECT_CLASS(klass);
+
+ object->dispose = (GObjectFinalizeFunc/* ! */)gtk_chrysalide_framework_dispose;
+ object->finalize = (GObjectFinalizeFunc)gtk_chrysalide_framework_finalize;
+
+ app = G_APPLICATION_CLASS(klass);
+
+ app->activate = gtk_chrysalide_framework_activate;
+
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : app = instance à initialiser. *
+* *
+* Description : Initialise une application principale pour Chrysalide. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void gtk_chrysalide_framework_init(GtkChrysalideFramework *app)
+{
+ app->main_window = NULL;
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : app = instance d'objet GLib à traiter. *
+* *
+* Description : Supprime toutes les références externes. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void gtk_chrysalide_framework_dispose(GtkChrysalideFramework *app)
+{
+ g_clear_object(&app->main_window);
+
+ G_OBJECT_CLASS(gtk_chrysalide_framework_parent_class)->dispose(G_OBJECT(app));
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : app = instance d'objet GLib à traiter. *
+* *
+* Description : Procède à la libération totale de la mémoire. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void gtk_chrysalide_framework_finalize(GtkChrysalideFramework *app)
+{
+ G_OBJECT_CLASS(gtk_chrysalide_framework_parent_class)->finalize(G_OBJECT(app));
+
+}
+
+
+/******************************************************************************
+* *
+* Paramètres : - *
+* *
+* Description : Crée une nouvelle application principale pour Chrysalide. *
+* *
+* Retour : Mécanismes mis en place. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+GtkChrysalideFramework *gtk_chrysalide_framework_new(void)
+{
+ GtkChrysalideFramework *result; /* Instance à retourner */
+
+ result = g_object_new(GTK_TYPE_CHRYSALIDE_FRAMEWORK,
+ "application-id", FRAMEWORK_WINDOW_ID,
+ "flags", G_APPLICATION_DEFAULT_FLAGS,
+ NULL);
+
+ return result;
+
+}
+
+
+
+/* ---------------------------------------------------------------------------------- */
+/* IMPLEMENTATION DES FONCTIONS DE CLASSE */
+/* ---------------------------------------------------------------------------------- */
+
+
+/******************************************************************************
+* *
+* Paramètres : app = application concernée par l'événement. *
+* *
+* Description : Réagit à l'activation de l'application. *
+* *
+* Retour : - *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+static void gtk_chrysalide_framework_activate(GApplication *app)
+{
+ GtkChrysalideFramework *real_app; /* Version réelle de l'instance*/
+
+ real_app = GTK_CHRYSALIDE_FRAMEWORK(app);
+
+ real_app->main_window = gtk_framework_window_new(GTK_APPLICATION(app));
+ g_object_ref(G_OBJECT(real_app->main_window));
+
+ gtk_window_present(GTK_WINDOW(real_app->main_window));
+
+}
+
+
+
+/* ---------------------------------------------------------------------------------- */
+/* POINT D'ENTREE PRINCIPAL D'EXECUTION */
+/* ---------------------------------------------------------------------------------- */
+
/******************************************************************************
* *
@@ -53,7 +262,7 @@
* *
******************************************************************************/
-void ensure_wm_icon_and_name(void)
+static void ensure_wm_icon_and_name(void)
{
GDesktopAppInfo *info; /* Information du système */
GKeyFile *kfile; /* Définition d'application */
@@ -66,7 +275,7 @@ void ensure_wm_icon_and_name(void)
/* Evaluation du besoin */
- info = g_desktop_app_info_new(CHRYSALIDE_APP_ID ".desktop");
+ info = g_desktop_app_info_new(FRAMEWORK_WINDOW_ID ".desktop");
/**
* Si l'exécutable n'est pas valide (inconnu de $PATH),
@@ -135,3 +344,39 @@ void ensure_wm_icon_and_name(void)
;
}
+
+
+/******************************************************************************
+* *
+* Paramètres : argc = nombre d'arguments dans la ligne de commande. *
+* argv = arguments de la ligne de commande. *
+* *
+* Description : Point d'entrée du programme. *
+* *
+* Retour : EXIT_SUCCESS si le prgm s'est déroulé sans encombres. *
+* *
+* Remarques : - *
+* *
+******************************************************************************/
+
+int main(int argc, char **argv)
+{
+ int result; /* Bilan de l'exécution */
+ GtkChrysalideFramework *app; /* Gestion d'application GTK */
+
+ if (!load_gui_components(AGC_BUFFER_FEATURES | AGC_PANELS))
+ return EXIT_FAILURE;
+
+ ensure_wm_icon_and_name();
+
+ app = gtk_chrysalide_framework_new();
+
+ result = g_application_run(G_APPLICATION(app), argc, argv);
+
+ g_object_unref(G_OBJECT(app));
+
+ unload_gui_components(AGC_BUFFER_FEATURES | AGC_PANELS);
+
+ return result;
+
+}