-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
881 lines (722 loc) · 18.7 KB
/
main.c
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <gtk/gtk.h>
#include <stdbool.h>
#define NOM_FICH1 "mots_courants.txt"
#define NOM_FICH2 "graphe.txt"
#define DICO "dictionnaire.txt"
void initialisation(void) //cette fonction va initialiser le graphe au lancement du programme. Son principe est le suivant : si n'existe que le fichier avec les mots donné par le professeur, il va utiliser ce fichier pour créer la liste chainée. Sinon, la liste chainée sera crée à partir du fichier texte contenant les mots et leur nombre d'occurence
{
FILE *fpp = fopen(NOM_FICH2,"r");
if(fpp!=NULL)
{
fclose(fpp);
init_random();
}
else
{
init_premiere_fois();
}
}
void visualisation_liste_chainee(void)
{
occurrence_mot *visual = tete;
while(visual!=NULL)
{
printf("mot : %s freq : %d\n", visual->m, visual->occ);
visual = visual->suivant;
}
}
void init_premiere_fois(void)
{
char mot_courant[100];
occurrence_mot *courant;
int trouve=0;
FILE *fp = fopen(NOM_FICH1, "r");
while(fscanf(fp, " %s", mot_courant)==1) //On parcourt le fichier des mots, et on fait une liste chainée avec leur nombre d'occurrence
{
courant = tete;
trouve=0;
while((trouve==0) && (courant!=NULL))
{
if(strcmp(courant->m,mot_courant)==0)
{
trouve=1;
courant->occ = courant->occ +1;
}
courant=courant->suivant;
}
if(trouve==0)
{
occurrence_mot *new = malloc(sizeof(occurrence_mot));
strcpy(new->m,mot_courant);
new->occ = 1;
new->suivant=tete;
tete = new;
}
}
fclose(fp);
}
void init_random(void) //cas où le fichier de la bonne configuration existe, on l'ouvre alors pour créer la liste chainée
{
FILE *fm = fopen(NOM_FICH2, "r");
char mot_courant[100];
int occu;
while(fscanf(fm, "%s%d", mot_courant, &occu)==2)
{
occurrence_mot *new = malloc(sizeof(occurrence_mot));
strcpy(new->m,mot_courant);
new->occ = occu;
new->suivant=tete;
tete = new;
}
fclose(fm);
}
void sortie(void)
{
occurrence_mot *courant = tete;
FILE *fg = fopen(NOM_FICH2, "w");
while(courant!=NULL) //On parcourt la liste chainée en réécrivant dans le nouveau fichier texte
{
fprintf(fg, "%s %d\n", courant->m, courant->occ);
courant=courant->suivant;
}
fclose(fg);
}
void creation_graphe(graphe *G) //Fonction qui créée le graphe à partir du fichier texte qui est de la forme ("mot, fréquence utilisation")
{
G->fils_tete = NULL;
occurrence_mot *courant = tete;
while(courant!=NULL)
{
ajouter_mot(G, courant->m, courant->occ);
courant = courant->suivant;
}
}
graphe *test_lettre_arbre(graphe* G, char a_comparer) //Renvoie le pointeur sur le maillon de type graphe si existe (avec la bonne lettre), sinon NULL
{
successeur *courant = G->fils_tete;
while(courant!=NULL)
{
if(courant->fils->lettre==a_comparer)
{
return(courant->fils);
}
courant = courant->suiv;
}
return NULL;
}
void test(graphe *G)
{
successeur *courant = G->fils_tete;
while(courant!=NULL)
{
printf("Lettre : %c\n", courant->fils->lettre);
courant=courant->suiv;
}
}
void ajouter_mot(graphe *G, char *mot, float f) //Ajoute un mot dans l'arbre
{
if(mot[0]!='\0')
{
char courant = mot[0];
graphe *existe = test_lettre_arbre(G, courant);
if(existe != NULL) //ie il existe une banche avec la lettre
{
int len = strlen(mot);
char *nouveau_mot = mot+1;
if(f>existe->freq)
{
existe->freq = f;
}
if(strlen(mot)==1)
{
existe->fin = 1;
}
ajouter_mot(existe, nouveau_mot, f);
}
else //Si la branche avec la lettre cherchée n'existe pas
{
graphe *new_graph = malloc(sizeof(graphe));
new_graph->lettre = mot[0]; //On initialise le nouveau sous graphe
new_graph->fils_tete = NULL;
new_graph->freq = f;
successeur *new_successeur = malloc(sizeof(successeur)); //On crée un nouveau maillon dans la liste chainée des successeurs du noeud courant, et on l'ajoute
new_successeur->fils = new_graph;
new_successeur->suiv = G->fils_tete;
G->fils_tete = new_successeur;
if(strlen(mot)==1)
{
new_graph->fin = 1;
}
int len = strlen(mot);
char *nouveau_mot = mot+1;
ajouter_mot(new_graph, nouveau_mot, f);
}
}
}
bool ajout_volee(char *a_ajouter, graphe *G) //Ajoute un mot à la liste chainée et à l'arbre, utilisé quand on veut ajouter un mot à la volée
{
int interdit=0;
occurrence_mot *courant = tete;
while(courant!=NULL)
{
if(strcmp(a_ajouter, courant->m)==0)
{
printf("Le mot que vous voulez ajouter existe déjà\n");
interdit=1;
}
courant = courant->suivant;
}
if(interdit==0)
{
ajouter_mot(G, a_ajouter, 1);
occurrence_mot *new = malloc(sizeof(occurrence_mot));
strcpy(new->m, a_ajouter);
new->occ = 1;
new->suivant = tete;
tete = new;
}
if(interdit ==1)
{
return FALSE;
}
else
{
return TRUE;
}
}
void suppression_volee(char *a_supprimer)
{
occurrence_mot *courant = tete;
occurrence_mot *courant_devant = tete->suivant;
int trouve=0;
if(strcmp(a_supprimer, courant->m)==0)
{
tete = courant_devant;
free(courant);
trouve +=1;
}
while(courant_devant!=NULL && trouve==0)
{
if(strcmp(a_supprimer, courant_devant->m)==0)
{
courant->suivant=courant_devant->suivant;
free(courant_devant);
trouve+=1;
}
courant_devant = courant_devant->suivant;
courant = courant->suivant;
}
if(trouve==0)
{
printf("[suppression] Le mot %s n'a pas été trouvé\n",a_supprimer);
}
else
{
printf("[suppression] le mot %s a été supprimé\n",a_supprimer);
}
}
void maj_occurrence(char *mot) //Fonction de mise à jour de l'occurence d'un mot, utilisée après la selection d'un mot proposée par la saisie prédictive
{
occurrence_mot *courant = tete;
int trouve = 0;
while(courant!=NULL && trouve==0)
{
if(strcmp(mot, courant->m)==0)
{
courant->occ = courant->occ +1;
trouve = 1;
}
courant = courant->suivant;
}
}
void parcours_profondeur(graphe *g) //Permet d'afficher tous les mots qui sont dans l'arbre
{
successeur *courant = g->fils_tete;
if(courant==NULL)
{
printf("%c", g->lettre);
}
while(courant!=NULL)
{
printf("%c", g->lettre);
parcours_profondeur(courant->fils);
courant=courant->suiv;
}
printf("\n");
}
graphe *graphe_to_look(graphe *G, char *debut)
{
int trouve=0;
char courant = debut[0];
int taille = strlen(debut);
char *debut_copy = (char*) malloc(taille*sizeof(char));
strcpy(debut_copy,debut);
if(courant!='\0')
{
successeur *point_courant = G->fils_tete;
while(point_courant!=NULL && trouve==0)
{
if(courant==point_courant->fils->lettre)
{
trouve+=1;
char *nouveau_mot = debut+1;
printf("%c trouvée. On cherche : %s\n",debut[0], nouveau_mot);
return graphe_to_look(point_courant->fils, nouveau_mot);
}
point_courant=point_courant->suiv;
}
if(trouve == 0)
{
printf(" rien trouvé\n");
return NULL;
}
}
else if(trouve == strlen(debut_copy))
{
printf("[graphe2look] On a trouvé ! dernière lettre : %c\n", G->lettre);
parcours_profondeur(G); //Hum il marche très bien ce programme
return G; //Pour la peine, retournons ce super sous-graphe
}
}
int BestMatch(char* wordToLook, graphe *G, char mot1[], char mot2[], char mot3[])
{
int maxFreq = 0;
int maxFreq2 =0;
int maxFreq3 = 0;
int k =0;
int i, result;
int len = strlen(wordToLook);
int len1 = strlen(mot1);
int len2 = strlen(mot2);
int len3 = strlen(mot3);
char charstring[2];
char scannedWord[70];
graphe *startNode = graphe_to_look(G, wordToLook);
graphe *tempNode;
successeur *cursor;
/* Gestion du mot1 */
for(i = 0; i<len1; i++)
{
mot1[i] = '\0';
}
tempNode = NULL;
if(startNode!=NULL && startNode->fils_tete!=NULL)
{
cursor = startNode->fils_tete;
while(cursor != NULL)
{
if(cursor->fils->freq > maxFreq)
{
maxFreq = cursor->fils->freq;
tempNode = cursor->fils;
}
cursor = cursor->suiv;
}
for( i = 0 ; i<len ; i++)
{
mot1[i] = wordToLook[i];
k+=1;
}
mot1[k] = tempNode->lettre;
k+=1;
cursor = tempNode->fils_tete;
while(cursor != NULL)
{
if(cursor->fils->freq ==maxFreq)
{
tempNode = cursor->fils;
mot1[k] = tempNode->lettre;
k+=1;
printf("lettre trouvée : %c\n",tempNode->lettre);
cursor = cursor->fils->fils_tete;
}
else
{
cursor = cursor->suiv;
}
}
printf("[BestMatch] le mot avec maxFreq1=%d est %s\n",maxFreq,mot1);
suppression_volee(mot1);
creation_graphe(G);
result+=1;
}
else
{
printf("Ouverture du dictionnaire\n");
//TODO : optimiser la recherche dans le dictionnaire en créant un graphe
//Ici, on utilise une fonction de type ChercheDansDictionnaire(wordToLook) qui copie dans mot1 le premier mot commençant par wordToLook
}
/* Gestion du mot2 */
//reset des variables de parcours
k=0;
maxFreq2=0;
startNode = graphe_to_look(G,wordToLook);
for(i = 0; i<len2; i++)
{
mot2[i] = '\0';
}
tempNode = NULL;
if(startNode!=NULL && startNode->fils_tete!=NULL)
{
cursor = startNode->fils_tete;
while(cursor != NULL)
{
if(cursor->fils->freq > maxFreq2)
{
maxFreq2 = cursor->fils->freq;
tempNode = cursor->fils;
}
cursor = cursor->suiv;
}
for( i = 0 ; i<len ; i++)
{
mot2[i] = wordToLook[i];
k+=1;
}
mot2[k] = tempNode->lettre;
k+=1;
cursor = tempNode->fils_tete;
while(cursor != NULL)
{
if(cursor->fils->freq ==maxFreq2)
{
tempNode = cursor->fils;
mot2[k] = tempNode->lettre;
k+=1;
printf("lettre trouvée : %c\n",tempNode->lettre);
cursor = cursor->fils->fils_tete;
}
else
{
cursor = cursor->suiv;
}
}
printf("[BestMatch] le mot avec maxFreq2=%d est %s\n",maxFreq2,mot2);
suppression_volee(mot2);
creation_graphe(G);
sortie();
result+=1;
}
else
{
printf("Ouverture du dictionnaire\n");
//TODO : optimiser la recherche dans le dictionnaire en créant un graphe
//Ici, on utilise une fonction de type ChercheDansDictionnaire(wordToLook) qui copie dans mot2 le premier mot commençant par wordToLook
}
/* Gestion du mot3 */
//reset des variables de parcours
k=0;
maxFreq3=0;
startNode = graphe_to_look(G,wordToLook);
for(i = 0; i<len3; i++)
{
mot3[i] = '\0';
}
tempNode = NULL;
if(startNode!=NULL && startNode->fils_tete!=NULL)
{
cursor = startNode->fils_tete;
while(cursor != NULL)
{
if(cursor->fils->freq > maxFreq3)
{
maxFreq3 = cursor->fils->freq;
tempNode = cursor->fils;
}
cursor = cursor->suiv;
}
for( i = 0 ; i<len ; i++)
{
mot3[i] = wordToLook[i];
k+=1;
}
mot3[k] = tempNode->lettre;
k+=1;
cursor = tempNode->fils_tete;
while(cursor != NULL)
{
if(cursor->fils->freq ==maxFreq3)
{
tempNode = cursor->fils;
mot3[k] = tempNode->lettre;
k+=1;
printf("[BestMatch]lettre trouvée : %c\n",tempNode->lettre);
cursor = cursor->fils->fils_tete;
}
else
{
cursor = cursor->suiv;
}
}
printf("[BestMatch] le mot avec maxFreq3=%d est %s\n",maxFreq3,mot3);
suppression_volee(mot3);
creation_graphe(G);
sortie();
k=0;
result+=1;
}
else
{
printf("Ouverture du dictionnaire\n");
//TODO : optimiser la recherche dans le dictionnaire en créant un graphe
//Ici, on utilise une fonction de type ChercheDansDictionnaire(wordToLook) qui copie dans mot3 le premier mot commençant par wordToLook
}
ajout_volee(mot1,G);
if(maxFreq >1)
{
for(i=1;i<maxFreq;i++)
{
maj_occurrence(mot1);
}
}
ajout_volee(mot2,G);
if(maxFreq2 >1)
{
for(i=1;i<maxFreq2;i++)
{
maj_occurrence(mot2);
}
}
ajout_volee(mot3,G);
if(maxFreq3 >1)
{
for(i=1;i<maxFreq3;i++)
{
maj_occurrence(mot3);
}
}
creation_graphe(G);
sortie();
return result;
}
void initDico(void)
{
printf("init dico lancée\n");
char scanned[70];
FILE *fp = fopen(DICO,"r+q");
while( fscanf(fp, "%s",scanned)!= EOF)
{
fprintf(fp, " 1\n");
printf("mot scanné : %s\n",scanned);
}
fclose(fp);
}
int main(int argc, char *argv[])
{
GtkWidget* window = NULL;
GtkWidget* vbox = NULL;
GtkWidget* hbox = NULL;
GtkWidget* hbox2 = NULL;
GtkWidget* entry = NULL;
initialisation();
graphe *G = malloc(sizeof(graphe));
graphe *Dico = malloc(sizeof(graphe));
G->lettre = '\0';
Dico->lettre = '\0';
creation_graphe(G);
BestMatch("", G, mot1, mot2, mot3);
sortie();
/* Front End*/
gtk_init (&argc, &argv);
FILE *fp = fopen("motcourant.txt", "w");
fclose(fp);
/*Création de la fenêtre*/
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
gtk_widget_set_size_request (GTK_WIDGET (window), 800, 400);
gtk_window_set_title (GTK_WINDOW (window), "Predictive Text Algorithm");
gtk_widget_show_all(window);
/*Création de l'entry */
entry = gtk_entry_new ();
gtk_entry_set_max_length (GTK_ENTRY (entry), 240);
gtk_widget_show(entry);
/* Création de la vbox */
vbox = gtk_vbox_new(TRUE,30); //un espacement homogène de 30 pixels entre chaque widget
gtk_container_add( GTK_CONTAINER (window), vbox);
hbox = gtk_hbox_new (FALSE, 0); //On ajoute la hbox qui va contenir les 3 boutons
gtk_container_add (GTK_CONTAINER (vbox), hbox);
gtk_widget_show (hbox);
/*Création des boutons */
BestMatch("", G, mot1, mot2, mot3);
Bouton1 = gtk_button_new_with_label(mot1);
Bouton2 = gtk_button_new_with_label(mot2);
Bouton3 = gtk_button_new_with_label(mot3);
gtk_box_pack_start ( GTK_BOX (hbox), Bouton1, TRUE, TRUE, 0);
gtk_box_pack_start ( GTK_BOX (hbox), Bouton2, TRUE, TRUE, 0);
gtk_box_pack_start ( GTK_BOX (hbox), Bouton3, TRUE, TRUE, 0);
gtk_widget_show (Bouton1);
gtk_widget_show (Bouton2);
gtk_widget_show (Bouton3);
/*Assemblage de la vbox*/
gtk_box_pack_start ( GTK_BOX (vbox), entry, TRUE, TRUE, 0); //On ajoute entry dans vbox
gtk_widget_show(vbox);
/* Création de hbox */
hbox = gtk_hbox_new (FALSE, 0);
gtk_container_add (GTK_CONTAINER (vbox), hbox);
gtk_widget_show (hbox);
/* Création de hbox2 */
hbox2 = gtk_hbox_new (FALSE, 0);
gtk_container_add(GTK_CONTAINER(vbox), hbox2);
gtk_widget_show (hbox2);
/*Création d'un toggle*/
toggle = gtk_toggle_button_new_with_label( "Prediction" );
gtk_widget_show(toggle);
gtk_box_pack_start( GTK_BOX (hbox2), toggle, TRUE, TRUE, 0);
/*Création d'un bouton supprimer*/
suppr = gtk_button_new_with_label("Supprimer du dictionnaire");
gtk_box_pack_start(GTK_BOX (hbox2), suppr, TRUE, TRUE, 0);
gtk_widget_show(suppr);
/*Gestion évenementielle*/
g_signal_connect (window, "destroy",G_CALLBACK (gtk_main_quit), NULL);
g_signal_connect (entry, "key-release-event", G_CALLBACK (OnType), G);
g_signal_connect (Bouton1, "released", G_CALLBACK (OnPress), entry);
g_signal_connect (Bouton2, "released", G_CALLBACK (OnPress), entry);
g_signal_connect (Bouton3, "released", G_CALLBACK (OnPress), entry);
g_signal_connect(suppr,"released", G_CALLBACK (OnDel), G);
gtk_main();
return EXIT_SUCCESS;
}
/*Callback pour chaque touche tapée dans la zone de texte*/
static gboolean OnType(GtkWidget *widget, GdkEventKey *event, graphe* G)
{
gint i;
char** result;
gint pressedKeyCode = event->keyval;
gchar* currentWord = (gchar*) malloc(60*sizeof(char));
gchar* cutWord = (gchar*) malloc(60*sizeof(char));
if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toggle)))
{
gtk_button_set_label(GTK_BUTTON(Bouton1),"Fonction desactivee");
gtk_button_set_label(GTK_BUTTON(Bouton2),"Fonction desactivee");
gtk_button_set_label(GTK_BUTTON(Bouton3),"Fonction desactivee");
return FALSE;
}
/*Cas de la touche espace*/
if(pressedKeyCode==32)
{
positionBeforeWord = gtk_editable_get_position(GTK_EDITABLE(widget));
FILE *fp = fopen("motcourant.txt","r");
if(fp!=NULL)
{
if (fscanf(fp,"%s",currentWord)==1)
{
printf("mot à traiter = %s\n",currentWord);
}
else
{
BestMatch("", G, mot1, mot2, mot3);
gtk_button_set_label(GTK_BUTTON(Bouton1),mot1);
gtk_button_set_label(GTK_BUTTON(Bouton2),mot2);
gtk_button_set_label(GTK_BUTTON(Bouton3),mot3);
return FALSE;
}
}
fclose(fp);
if(currentWord!= "Effacez_Votre_Mot_En_Entier")
{
if(ajout_volee(currentWord,G)==FALSE)
{
maj_occurrence(currentWord);
creation_graphe(G);
printf("mot mis à jour : %s\n", currentWord);
}
else
{
creation_graphe(G);
printf("mot ajouté : %s\n", currentWord);
}
}
sortie();
FILE *fp1 = fopen("motcourant.txt","w");
fclose(fp1);
BestMatch("", G, mot1, mot2, mot3);
gtk_button_set_label(GTK_BUTTON(Bouton1),mot1);
gtk_button_set_label(GTK_BUTTON(Bouton2),mot2);
gtk_button_set_label(GTK_BUTTON(Bouton3),mot3);
}
/*Cas de la touche retour*/
else if(pressedKeyCode==65288)
{
FILE *fp3 = fopen("motcourant.txt","w");
fputs("Effacez_Votre_Mot_En_Entier",fp3);
fclose(fp3);
}
else
{
FILE *fp4 = fopen("motcourant.txt","a");
g_printerr("key pressed : %s\n",gdk_keyval_name(pressedKeyCode));
fputs(gdk_keyval_name(pressedKeyCode),fp4);
fclose(fp4);
}
/*On attribue le texte que doit contenir chaque bouton*/
FILE *fp5 = fopen("motcourant.txt","r");
if(fp5!=NULL)
//On cherche les mots qui correspondent à currentWord
{
while(fscanf(fp5,"%s",currentWord)==1)
{
BestMatch(currentWord, G, mot1, mot2, mot3);
gtk_button_set_label(GTK_BUTTON(Bouton1),mot1);
gtk_button_set_label(GTK_BUTTON(Bouton2),mot2);
gtk_button_set_label(GTK_BUTTON(Bouton3),mot3);
}
}
return FALSE;
}
gint OnPress (GtkButton *button, GtkEntry* entry)
{
const gchar* entryText = gtk_entry_get_text(entry);
const gchar *text = gtk_button_get_label( button );
gint position = gtk_editable_get_position(GTK_EDITABLE (entry) );
gint i;
if(gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(toggle)))
{
return 1;
}
gtk_editable_delete_text(GTK_EDITABLE(entry), positionBeforeWord, position);
printf("PositionBeforeWord = %d\n", positionBeforeWord);
printf("position : %d\n",position);
gtk_editable_insert_text (GTK_EDITABLE (entry), text, -1, &position);
return 0;
}
gint OnDel (GtkButton *button, graphe* G)
{
gint scan;
gchar texte[80];
gchar* wordToDel = (gchar*) malloc(20*sizeof(gchar));
FILE *fp = fopen("motcourant.txt", "r");
if(fp==NULL)
{
gtk_button_set_label(button, "Tapez un mot");
}
else
{
scan = fscanf(fp, "%s",wordToDel);
if(scan==0)
{
gtk_button_set_label(button, "Tapez un mot");
fclose(fp);
return 1;
}
else
{
strcat(texte,"Mot supprimé : ");
strcat(texte ,wordToDel);
gtk_button_set_label(button, texte);
printf("mot à supprimer : %s\n", wordToDel);
suppression_volee((char*) wordToDel);
fclose(fp);
creation_graphe(G);
sortie();
FILE *fpp = fopen("graphe.txt", "r");
while(fscanf(fpp,"%s %d", wordToDel, &scan)==2)
{
printf("lu :%s %d\n", wordToDel, scan);
}
fclose(fpp);
return 0;
}
}
}