-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfonctions_gtk.h
36 lines (25 loc) · 929 Bytes
/
fonctions_gtk.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* JEANNE-ROSE Méven
18/8/22
fonctions_gtk.h
Display in GTK and use fonctions.* to calculate
*/
#ifndef _FONCTION_GTK_H
#define _FONCTION_GTK_H
#include <gtk/gtk.h>
#include "fonctions.h"
extern uint8_t g_ti [9][9];
extern struct Cellule g_tableau[9][9];
extern uint8_t recurs;
/*Main to use GTK*/
int main_gtk(int argc, char **argv);
/*Entry point with GTK, display some info in the textView*/
uint8_t resolution_gtk(struct Cellule tableau[9][9], gpointer data);
/*Check fields and begins computation when main button is clicked*/
void button_clicked(GtkWidget *widget, gpointer data);
/*Input is checked before building the main Cellule array*/
void text_entered(GtkWidget *widget, gpointer data);
/*Used to check the entiere Cellule array before performing computation*/
uint8_t gtk_check_values(void);
/*Display the array in the GTK' window*/
void Affichage_gtk(struct Cellule const tab[9][9]);
#endif