diff --git a/src/ui/application.c b/src/ui/application.c index c404e53..997b6bc 100644 --- a/src/ui/application.c +++ b/src/ui/application.c @@ -172,12 +172,15 @@ GemGraphClientApplication *gem_graph_client_application_new( * L'une de ses premières tâches et de désactiver des actions * qui pourraient être demandées par l'utilisateur * alors que l'application n'est pas encore prête à y répondre. + * * Lorsque la totalité de l'application aura été mise en place - * et qu'elle sera fonctionnelle, ces actions seront réactivées par : + * et qu'elle sera fonctionnelle, + * la fenêtre sera créée et ces actions seront réactivées par : * gem_graph_client_application_activate() * - * Une fois l'application fonctionnelle, la fenêtre peut être créée. - * La description des opérations relatives à la fenêtre se trouvent dans window.c + * La description de la fenêtre se trouvent dans + * - window.c (description dynamique des widgets) + * - events.c */ /* @@ -186,7 +189,7 @@ GemGraphClientApplication *gem_graph_client_application_new( * * When Gnome receives the g_application_run() command from gtk * it responds by executing two primitive functions - * in the application.c file: + * described in the application.c file: * - gem_graph_client_application_class_init() and * - gem_graph_client_application_init() * @@ -196,11 +199,11 @@ GemGraphClientApplication *gem_graph_client_application_new( * * gem_graph_client_application_init() * specifies the application's properties in greater detail. - * One of its first tasks is to disable actions - * which may be requested by the user + * One of its first tasks is to disable actions which may be requested by the user * when the application is not yet ready to respond. + * * Once the entire application is up and functional, - * these actions will be reactivated by : + * the window will be created and these actions will be reactivated by : * gem_graph_client_application_activate() * * Once the application is up and running, the window can be created. diff --git a/src/ui/window.c b/src/ui/window.c index 0dca17b..1c73d5b 100644 --- a/src/ui/window.c +++ b/src/ui/window.c @@ -272,3 +272,5 @@ GtkWidget *create_tree_button(void) } /* https://docs.gtk.org/gtk4/getting_started.html */ + +