/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Gem-graph client * * * * Widgets header * * * * Copyright © 2021 Libre en Communs * * Copyright © 2021 Adrien Bourmault * * Copyright © 2021 Jean Sirmai * * * * This file is part of Gem-graph. * * * * This program is free software: you can redistribute it and/or modify it * * under the terms of the GNU Affero General Public License * * as published by the Free Software Foundation, * * either version 3 of the License, * * or (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; * * without even the implied warranty of MERCHANTABILITY * * or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU Affero General Public License for more details. * * * * You should have received a copy of the GNU Affero General Public License * * along with this program. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include /******************************************************************************/ /* W I N D O W S */ /******************************************************************************/ void head_set_MAIN_WINDOW (GtkApplication *app); void head_set_DIALOG_WINDOW (GtkApplication *app); void head_set_TEXT_WINDOW (GtkApplication *app); void widget_MAIN_WINDOW_design (GtkWindow *main_window); void widget_DIALOG_WINDOW_design (GtkWindow *main_window, GtkWindow *dialog_window); void widget_TEXT_WINDOW_design (GtkWindow *main_window, GtkWindow *text_window); GtkWindow *head_get_MAIN_WINDOW(); GtkWindow *head_get_DIALOG_WINDOW(); GtkWindow *head_get_TEXT_WINDOW(); /******************************************************************************/ /* W I D G E T S */ /******************************************************************************/ GtkButton *get_GtkButton (char *btt_name); GtkWidget *get_STATE_page(); GtkWidget *get_RULES_page(); GtkWidget *get_STOCK_page(); GtkWidget *get_STOCK_text (gchar *text_name); /******************************************************************************/ /* T R E E */ /******************************************************************************/ struct TreeNode_t {gchar *text; struct TreeNode_t *child, *next;}; struct TreeNode_t *create_user_tree_node (const gchar* text); void add_child_node (struct TreeNode_t *parent, struct TreeNode_t *child); void let_us_create_a_complex_useless_and_expensive_tree (struct TreeNode_t *tree_root); GtkScrolledWindow *get_user_rules_tree (); /******************************************************************************/ /* I M A G E S */ /******************************************************************************/ // images are in : data / image / GtkWidget *get_image_E_coli(); GtkWidget *get_image_GLUTAMATE(); GtkWidget *get_image_GLUTAMINE(); GtkWidget *get_image_ATP(); GtkWidget *get_image_AMP(); /******************************************************************************/ /* T E X T S */ /******************************************************************************/ // texts are in : data / text / gchar *get_text_address_THEORY (); gchar *get_text_address_ABOUT_COMMANDS (); gchar *get_text_address_ANY (); /******************************************************************************/ /* L A B O */ /******************************************************************************/ void learning_how_to_create_a_menu (GtkMenuButton* menu_button);