WIP: commentaires main.c et application.c (suite)

This commit is contained in:
Jean Sirmai 2023-11-30 13:28:16 +01:00
parent 852f87fede
commit 5d57787d75
Signed by: jean
GPG Key ID: FB3115C340E057E3
2 changed files with 12 additions and 7 deletions

View File

@ -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 é 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.

View File

@ -272,3 +272,5 @@ GtkWidget *create_tree_button(void)
}
/* https://docs.gtk.org/gtk4/getting_started.html */