2024-06-30 11:53:03 +02:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
* *
|
2024-07-04 08:04:58 +02:00
|
|
|
* Gem-graph client *
|
2024-06-30 11:53:03 +02:00
|
|
|
* *
|
2024-07-04 08:04:58 +02:00
|
|
|
* Widgets header *
|
2024-06-30 11:53:03 +02:00
|
|
|
* *
|
2024-07-01 00:42:25 +02:00
|
|
|
* Copyright © 2021 Libre en Communs <contact@a-lec.org> *
|
|
|
|
* Copyright © 2021 Adrien Bourmault <neox@a-lec.org> *
|
|
|
|
* Copyright © 2021 Jean Sirmai <jean@a-lec.org> *
|
2024-06-30 11:53:03 +02:00
|
|
|
* *
|
|
|
|
* This file is part of Gem-graph. *
|
|
|
|
* *
|
2024-07-01 00:42:25 +02:00
|
|
|
* 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. *
|
2024-06-30 11:53:03 +02:00
|
|
|
* *
|
2024-07-01 00:42:25 +02:00
|
|
|
* This program is distributed in the hope that it will be useful, *
|
2024-07-01 07:26:16 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; *
|
2024-07-01 00:42:25 +02:00
|
|
|
* without even the implied warranty of MERCHANTABILITY *
|
2024-07-01 07:26:16 +02:00
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. *
|
2024-07-01 00:42:25 +02:00
|
|
|
* See the GNU Affero General Public License for more details. *
|
2024-06-30 11:53:03 +02:00
|
|
|
* *
|
2024-07-01 00:42:25 +02:00
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
2024-06-30 11:53:03 +02:00
|
|
|
* *
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
2024-04-22 18:40:30 +02:00
|
|
|
|
2024-07-04 08:04:58 +02:00
|
|
|
|
2024-04-22 18:40:30 +02:00
|
|
|
#include <gtk-4.0/gtk/gtk.h>
|
|
|
|
|
2024-07-08 07:52:27 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* W I N D O W S */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2024-07-11 08:53:38 +02:00
|
|
|
void widget_head_set_MAIN_WINDOW (GtkApplication *app);
|
|
|
|
void widget_head_set_DIALOG_WINDOW (GtkApplication *app);
|
|
|
|
void widget_head_set_TEXT_WINDOW (GtkApplication *app);
|
2024-07-02 17:59:43 +02:00
|
|
|
|
2024-07-11 08:53:38 +02:00
|
|
|
void widget_head_MAIN_WINDOW_design (GtkWindow *main_window);
|
|
|
|
void widget_head_DIALOG_WINDOW_design (GtkWindow *main_window,
|
2024-07-13 07:48:46 +02:00
|
|
|
GtkWindow *dialog_window);
|
2024-07-11 08:53:38 +02:00
|
|
|
void widget_head_TEXT_WINDOW_design (GtkWindow *main_window,
|
2024-07-13 07:48:46 +02:00
|
|
|
GtkWindow *text_window);
|
2024-04-22 18:40:30 +02:00
|
|
|
|
2024-07-11 08:53:38 +02:00
|
|
|
GtkWindow *widget_head_get_MAIN_WINDOW();
|
|
|
|
GtkWindow *widget_head_get_DIALOG_WINDOW();
|
|
|
|
GtkWindow *widget_head_get_TEXT_WINDOW();
|
2024-07-02 17:59:43 +02:00
|
|
|
|
2024-07-08 07:52:27 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* W I D G E T S */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2024-07-13 07:48:46 +02:00
|
|
|
GtkButton *widget_head_get_GtkButton (char *btt_name);
|
2024-07-02 20:19:48 +02:00
|
|
|
|
2024-07-06 08:27:05 +02:00
|
|
|
GtkWidget *get_STATE_page();
|
|
|
|
GtkWidget *get_RULES_page();
|
|
|
|
GtkWidget *get_STOCK_page();
|
2024-07-01 00:42:25 +02:00
|
|
|
|
2024-07-06 08:27:05 +02:00
|
|
|
GtkWidget *get_STOCK_text (gchar *text_name);
|
2024-07-04 22:29:34 +02:00
|
|
|
|
2024-07-08 07:52:27 +02:00
|
|
|
|
2024-07-13 07:48:46 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* M E N U */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
struct MenuNode_t {gchar *text; struct MenuNode_t *child, *next;};
|
|
|
|
struct MenuNode_t *create_user_menu_node (const gchar* text);
|
|
|
|
|
|
|
|
GtkWidget *get_menu_anchor();
|
|
|
|
|
|
|
|
|
2024-07-08 07:52:27 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* T R E E */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2024-07-01 07:26:16 +02:00
|
|
|
struct TreeNode_t {gchar *text; struct TreeNode_t *child, *next;};
|
|
|
|
struct TreeNode_t *create_user_tree_node (const gchar* text);
|
2024-07-08 07:52:27 +02:00
|
|
|
|
|
|
|
void add_child_node (struct TreeNode_t *parent, struct TreeNode_t *child);
|
2024-07-13 19:31:25 +02:00
|
|
|
void labo_let_us_create_a_complex_useless_and_expensive_tree (struct TreeNode_t *tree_root);
|
2024-07-08 07:52:27 +02:00
|
|
|
|
2024-07-01 00:42:25 +02:00
|
|
|
GtkScrolledWindow *get_user_rules_tree ();
|
2024-06-30 12:47:34 +02:00
|
|
|
|
2024-07-08 07:52:27 +02:00
|
|
|
|
2024-07-05 10:23:19 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* 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 ();
|
2024-07-04 08:04:58 +02:00
|
|
|
|
|
|
|
|
2024-07-06 08:27:05 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
/* L A B O */
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2024-07-08 07:52:27 +02:00
|
|
|
void learning_how_to_create_a_menu (GtkMenuButton* menu_button);
|
2024-07-13 19:31:25 +02:00
|
|
|
void labo_create_a_simple_gtk_string_list ();
|
2024-07-06 08:27:05 +02:00
|
|
|
|