2024-06-30 11:53:03 +02:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
|
|
* *
|
|
|
|
* Gem-graph client *
|
|
|
|
* *
|
|
|
|
* Widgets header *
|
|
|
|
* *
|
|
|
|
* Copyright © 2021 Libre en Communs <contact@a-lec.org> *
|
|
|
|
* Copyright © 2023 Adrien Bourmault <neox@a-lec.org> *
|
|
|
|
* Copyright © 2024 Jean Sirmai <jean@a-lec.org> *
|
|
|
|
* *
|
|
|
|
* 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 publishedby 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 <http://www.gnu.org/licenses/>. *
|
|
|
|
* *
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
2024-04-22 18:40:30 +02:00
|
|
|
|
|
|
|
#include <gtk-4.0/gtk/gtk.h>
|
|
|
|
|
|
|
|
#define W 1920
|
|
|
|
#define H 960
|
|
|
|
#define W_IMAGE W - 320
|
|
|
|
#define H_IMAGE H - 126
|
|
|
|
#define H_STYLES_PANE 30
|
|
|
|
#define W_IMAGE_LOCAL W / 16
|
|
|
|
#define H_IMAGE_LOCAL H / 16
|
|
|
|
|
|
|
|
void main_window_design (GtkWindow *main_window);
|
|
|
|
void set_check_button_active (GtkButton *button, int active);
|
|
|
|
void two_notebooks_in_two_panes (GtkWindow *window);
|
|
|
|
|
|
|
|
GtkFrame *get_frame_with_label();
|
|
|
|
GtkWidget *get_selected_rules_vpaned_new();
|
|
|
|
GtkWidget *get_TIME_EXEC_controls_box();
|
|
|
|
GtkWidget *get_SPACE_EDIT_controls_box();
|
|
|
|
GtkButton *get_GtkButton (char *btt_name);
|
|
|
|
GtkWidget *get_window_child_STATE();
|
|
|
|
GtkWidget *get_window_child_RULES();
|
|
|
|
GtkWidget *get_window_child_DATA();
|