-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInput.h
596 lines (582 loc) · 22.6 KB
/
Input.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
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
#ifndef _Input_H_
#define _Input_H_
#include <ctype.h>
#include <string.h>
#include "String++.h"
int Input_Text(char *text, int CooredonneX, int CooredonneY, int maxlength);
// Defines a single-line text and save in text
int Input_Number(char *Number, int CooredonneX, int CooredonneY, int maxlength);
// Defines a single-line Number and save in Number
int Input_MotPass(char *MotPass, int CooredonneX, int CooredonneY,
int maxlength);
// Defines a single-line Mot Pass and save in Number
int Input_Area_Number(char *Number, int CooredonneX, int CooredonneY,
int maxlength, int maxLength_Line);
// Defines a multi line Number
int SaiserCntrl(void);
// Attendre que utilisateur taper les touch du controlle et ingnore les autres
void FrameRectangle(int x, int y, int length, int height, char charFrame);
// display frame in screen with length and height made with charFrame
void DrawRectangle(int x, int y, int length, int height);
// Draw rectangle
void AfficheButton(const char *NomButton, int x, int y, int length, int height);
// display the button in the screen
void cputsxyTemp(int x, int y, const char *chain, int Temp);
// print the string chain in the screen in position x and y with pause Temp ms
// between All char
int AreYouSure(int x, int y);
// asking the user if he is sure
void AfficheErreur(int x, int y, const char *Erreur);
// Affiche un erreur in th screen
int Menu(const char **Ph, int NbrPhrase, int x, int y, int Longueur,
int Hauteur, int colorbackground, int colorMenu);
// Affichez Le menu return le nemero choiser return 0 c'est choiser retourner en
// arreire
void AffichezListeChoix(const char **ch, int NbrChoix, int num,
int MaxLongueurString, int x, int y);
// Affichez un liste des chiox qui se trouve dans tableau ch de Nbrchoix phrase
int SaiserCtrlText(void);
// attendre que utilisateur taper les touch du controlle text comme cntrl F ..
// et ignore les autres
int Input_Text(char *text, int CooredonneX, int CooredonneY, int maxlength) {
/** Defines a single-line text
** il return la camande qui la fait sortire comme entre ou up ou down
**/
unsigned char toucheClavier, toucheClavier1;
int TailleDuTexte = strlen(text);
int i = TailleDuTexte;
cputsxyBlanc(CooredonneX, CooredonneY, text, maxlength);
do {
gotoxy(CooredonneX + i, CooredonneY);
toucheClavier = getch();
if (toucheClavier == 0 || toucheClavier == 224) {
// on lit les touch des clavier qui a deux code
toucheClavier1 = getch();
if (toucheClavier == 224 && toucheClavier1 == 75) {
// touch clavier est touch lift
if (i > 0)
i--; // on decremante la postiion du la curseur
} else if (toucheClavier == 224 && toucheClavier1 == 77) {
// touch clavier est touch right
if (i < TailleDuTexte)
i++; // on incremante la postiion du la curseur
} else if (toucheClavier == 224 && toucheClavier1 == 79) {
// touch clavier est touch Fin de Line
i = TailleDuTexte; // on postiionne la curseur a la fin de la line
} else if (toucheClavier == 224 && toucheClavier1 == 71) {
// touch clavier est touch Debut de Line
i = 0; // on postiionne la curseur a la debut de la line
} else if (toucheClavier == 224 && toucheClavier1 == 83) {
// touch clavier est touch suppr inser
if (i < TailleDuTexte) {
StrSuppChar(text, i); // on supprime le cractere de la postion i
cputsxyBlanc(CooredonneX, CooredonneY, text, TailleDuTexte--);
} else
printf("%c", 7);
} else if (toucheClavier == 224 &&
(toucheClavier1 == 73 || toucheClavier1 == 81 ||
toucheClavier1 == 80 || toucheClavier1 == 72)) {
// touch clavier est touch up ou down ou page suivant ou precedant
return toucheClavier1; // on sort du la fonction avec return du le touch
// qui fait sortire
}
} else if (iscntrl(toucheClavier)) {
if (toucheClavier == 8) {
// touch supp
if (i > 0) {
StrSuppChar(text, --i); // on supprime le cractere de la postion i-1
cputsxyBlanc(CooredonneX, CooredonneY, text, TailleDuTexte--);
} else
printf("%c", 7);
} else if (toucheClavier == 9 || toucheClavier == 27 ||
toucheClavier == 13) {
// si les touch entres ou echap ou -- on sort de la fonction
return toucheClavier; // on sort du la fonction avec return du le touch
// qui fait sortire
}
} else if (isprint(toucheClavier) || isCharSpFr(toucheClavier)) {
if (TailleDuTexte < maxlength) {
StrInsertChar(
text, (char)toucheClavier,
i++); // on Insert le cractere toucheClavier a la postion i
cputsxy(CooredonneX, CooredonneY, text);
TailleDuTexte++;
} else
printf("%c", 7);
}
} while (1);
return -1;
}
int Input_Number(char *Number, int CooredonneX, int CooredonneY,
int maxlength) {
/** Defines a single-line Number
** il return la camande qui la fait sortir comme entre ou up ou down
**/
unsigned char toucheClavier, toucheClavier1;
int NbrChiffre = strlen(Number);
int i = NbrChiffre;
cputsxyBlanc(CooredonneX, CooredonneY, Number, maxlength);
do {
gotoxy(CooredonneX + i, CooredonneY);
toucheClavier = getch();
if (toucheClavier == 0 || toucheClavier == 224) {
// on lit les touch des clavier qui a deux code
toucheClavier1 = getch();
if (toucheClavier == 224 && toucheClavier1 == 75) {
// touch clavier est touch lift
if (i > 0)
i--; // on decremante la postiion du la curseur
} else if (toucheClavier == 224 && toucheClavier1 == 77) {
// touch clavier est touch right
if (i < NbrChiffre)
i++; // on incremante la postiion du la curseur
} else if (toucheClavier == 224 && toucheClavier1 == 79) {
// touch clavier est touch Fin de Line
i = NbrChiffre; // on postiionne la curseur a la fin de la line
} else if (toucheClavier == 224 && toucheClavier1 == 71) {
// touch clavier est touch Debut de Line
i = 0; // on postiionne la curseur a la debut de la line
} else if (toucheClavier == 224 && toucheClavier1 == 83) {
// touch clavier est touch suppr inser
if (i < NbrChiffre) {
StrSuppChar(Number, i); // on supprime le cractere de la postion i
cputsxyBlanc(CooredonneX, CooredonneY, Number, NbrChiffre--);
} else
printf("%c", 7);
} else if (toucheClavier == 224 &&
(toucheClavier1 == 73 || toucheClavier1 == 81 ||
toucheClavier1 == 80 || toucheClavier1 == 72)) {
// touch clavier est touch up ou down ou page suivant ou precedant
return toucheClavier1; // on sort du la fonction avec return du le touch
// qui fait sortire
}
} else if (iscntrl(toucheClavier)) {
if (toucheClavier == 8) {
// touch supp
if (i > 0) {
StrSuppChar(Number, --i); // on supprime le cractere de la postion i-1
cputsxyBlanc(CooredonneX, CooredonneY, Number, NbrChiffre--);
} else
printf("%c", 7);
} else if (toucheClavier == 9 || toucheClavier == 27 ||
toucheClavier == 13) {
// si les touch entres ou echap ou -- on sort de la fonction
return toucheClavier; // on sort du la fonction avec return du le touch
// qui fait sortire
}
} else if (isdigit(toucheClavier)) {
if (NbrChiffre < maxlength) {
StrInsertChar(
Number, (char)toucheClavier,
i++); // on Insert le cractere toucheClavier a la postion i
cputsxy(CooredonneX, CooredonneY, Number);
NbrChiffre++;
} else
printf("%c", 7);
}
} while (1);
return -1;
}
int SaiserCntrl(void) {
/** attendre que utilisateur taper les touch du controlle et ignore les autres
** return le code du touch
**/
unsigned char toucheClavier, toucheClavier1;
do {
toucheClavier = getch();
if (toucheClavier == 0 || toucheClavier == 224) {
toucheClavier1 = getch();
if (toucheClavier == 224) {
if (toucheClavier1 == 75 || toucheClavier1 == 77 ||
toucheClavier1 == 73 || toucheClavier1 == 81 ||
toucheClavier1 == 80 || toucheClavier1 == 72) {
return toucheClavier1;
}
}
} else if (toucheClavier == 9 || toucheClavier == 27 ||
toucheClavier == 13) {
// si les touch entres ou echap ou -- on sort de la fonction
return toucheClavier;
}
} while (1);
return -1;
}
int Input_MotPass(char *MotPass, int CooredonneX, int CooredonneY,
int maxlength) {
/** Defines a single-line MotPass
** il return la commande qui la fait sortire comme entre ou up ou down
**/
unsigned char toucheClavier, toucheClavier1;
int TailleDuTexte = strlen(MotPass);
char text[maxlength + 1];
int i;
for (i = 0; i < TailleDuTexte; i++)
text[i] = '*';
text[TailleDuTexte] = '\0';
cputsxyBlanc(CooredonneX, CooredonneY, text, maxlength);
do {
gotoxy(CooredonneX + i, CooredonneY);
toucheClavier = getch();
if (toucheClavier == 0 || toucheClavier == 224) {
// on lit les touch des clavier qui a deux code
toucheClavier1 = getch();
if (toucheClavier == 224 && toucheClavier1 == 75) {
// touch clavier est touch lift
if (i > 0)
i--; // on decremante la postiion du la curseur
} else if (toucheClavier == 224 && toucheClavier1 == 77) {
// touch clavier est touch right
if (i < TailleDuTexte)
i++; // on incremante la postiion du la curseur
} else if (toucheClavier == 224 && toucheClavier1 == 79) {
// touch clavier est touch Fin de Line
i = TailleDuTexte; // on postiionne la curseur a la fin de la line
} else if (toucheClavier == 224 && toucheClavier1 == 71) {
// touch clavier est touch Debut de Line
i = 0; // on postiionne la curseur a la debut de la line
} else if (toucheClavier == 224 && toucheClavier1 == 83) {
// touch clavier est touch suppr inser
if (i < TailleDuTexte) {
StrSuppChar(MotPass, i); // on supprime le cractere de la postion i
text[--TailleDuTexte] = '\0';
cputsxyBlanc(CooredonneX, CooredonneY, text, TailleDuTexte + 1);
} else
printf("%c", 7);
} else if (toucheClavier == 224 &&
(toucheClavier1 == 73 || toucheClavier1 == 81 ||
toucheClavier1 == 80 || toucheClavier1 == 72)) {
// touch clavier est touch up ou down ou page suivant ou precedant
return toucheClavier1; // on sort du la fonction avec return du le touch
// qui fait sortire
}
} else if (iscntrl(toucheClavier)) {
if (toucheClavier == 8) {
// touch supp
if (i > 0) {
StrSuppChar(MotPass,
--i); // on supprime le cractere de la postion i-1
text[--TailleDuTexte] = '\0';
cputsxyBlanc(CooredonneX, CooredonneY, text, TailleDuTexte + 1);
} else
printf("%c", 7);
} else if (toucheClavier == 9 || toucheClavier == 27 ||
toucheClavier == 13) {
// si les touch entres ou echap ou -- on sort de la fonction
return toucheClavier; // on sort du la fonction avec return du le touch
// qui fait sortire
}
} else if (isprint(toucheClavier) || isCharSpFr(toucheClavier)) {
if (TailleDuTexte < maxlength) {
StrInsertChar(
MotPass, (char)toucheClavier,
i++); // on Insert le cractere toucheClavier a la postion i
text[TailleDuTexte++] = '*';
text[TailleDuTexte] = '\0';
cputsxy(CooredonneX, CooredonneY, text);
} else
printf("%c", 7);
}
} while (1);
return -1;
}
void FrameRectangle(int x, int y, int length, int height, char charFrame) {
/** display frame in screen with length and height made with charFrame
**/
int i;
gotoxy(x, y);
for (i = 0; i < length; i++)
putch(charFrame);
for (i = 1; i < height - 1; i++) {
putchxy(x, y + i, charFrame);
putchxy(x + length - 1, y + i, charFrame);
}
gotoxy(x, y + height - 1);
for (i = 0; i < length; i++)
putch(charFrame);
}
void DrawRectangle(int x, int y, int length, int height) {
/// Draw rectangle
int i, j;
for (i = 0; i < height; i++) {
gotoxy(x, y + i);
for (j = 0; j < length; j++)
putch(' ');
}
}
void AfficheButton(const char *NomButton, int x, int y, int length,
int height) {
/// display the button in the screen
DrawRectangle(x, y, length, height);
cputsxy(x + (length - strlen(NomButton)) / 2, y + (height / 2), NomButton);
}
void cputsxyTemp(int x, int y, const char *chain, int Temp) {
/// print the string chain in the screen in position x and y with pause Temp
/// ms between All char
int i = 0;
gotoxy(x, y);
while (chain[i] != 0) {
putch(chain[i++]);
Sleep(Temp);
}
}
int AreYouSure(int x, int y) {
/// asking the user if he is sure
struct char_info *AncienTexte;
AncienTexte = malloc(26 * 7 * sizeof(struct char_info));
gettext(x, y, x + 25, y + 6, AncienTexte);
textbackground(WHITE);
DrawRectangle(x, y, 26, 7);
textcolor(RED);
cputsxy(x + 7, y + 1, "Are you Sure");
textcolor(BLACK);
textbackground(LIGHTCYAN);
AfficheButton("Non", x + 14, y + 3, 9, 3);
textbackground(BLUE);
AfficheButton("Oui", x + 3, y + 3, 9, 3);
int i = 1, c;
do {
do {
c = SaiserCntrl();
} while (c != 13 && c != 75 && c != 77);
if (c == 13) {
break;
} else if (i == 1) {
textbackground(LIGHTCYAN);
AfficheButton("Oui", x + 3, y + 3, 9, 3);
textbackground(BLUE);
AfficheButton("Non", x + 14, y + 3, 9, 3);
i = 0;
} else {
textbackground(BLUE);
AfficheButton("Oui", x + 3, y + 3, 9, 3);
textbackground(LIGHTCYAN);
AfficheButton("Non", x + 14, y + 3, 9, 3);
i = 1;
}
} while (1);
puttext(x, y, x + 25, y + 6, AncienTexte);
free(AncienTexte);
return i;
}
void AfficheErreur(int x, int y, const char *Erreur) {
/// Affiche un erreur in th screen
textbackground(WHITE);
textcolor(RED);
printf("%c", 7);
printf("%c", 7);
Page_Temporaire(x, y, 40, 5, Erreur);
}
void AffichezListeChoix(const char **ch, int NbrChoix, int num,
int MaxLongueurString, int x, int y) {
/** Affichez un liste des chiox qui se trouve dans tableau ch de Nbrchoix
* phrase la taille maximan de ces phrase est MaxLongString le premier pherase
* se trouve dans la postion (x,y) de ecran le num est un debut numeration de
* la pherase � affichez
*/
int i;
char c[5];
for (i = 0; i < NbrChoix; i++) {
/// allez � la postion (x,y+i) le premier phrase se trouve dans (x,y) et la
/// 2 se trouva dans (x,y+1) ...
sprintf(c, "%d- ", num + i);
cputsxyBlanc(x, y + i, c, 5); /// affichez le numeration
cputsxyBlanc(x + 5, y + i, ch[i], MaxLongueurString - 5);
}
gotoxy(1, 1);
}
int Menu(const char **Ph, int NbrPhrase, int x, int y, int Longueur,
int Hauteur, int colorbackground, int colorMenu) {
/** Affichez Le menu
** return le nemero choiser
** return 0 c'est choiser retourner en arreire
**/
int Mn, chx = 1, f = 0;
char c;
Mn = Min(Hauteur, NbrPhrase); /// on prend le minimant pour affichez les choix
/// pour evitez de soortire de cadre
textbackground(colorbackground);
DrawRectangle(x, y, Longueur, Hauteur);
AffichezListeChoix(Ph + 1, Mn - 1, 2, Longueur, x,
y + 1); /// affichez le reste des choix avec le Normal
textbackground(colorMenu); /// Affichez le prmier choix avec le colorMenu
AffichezListeChoix(Ph, 1, 1, Longueur, x, y);
do {
do {
c = getch();
} while ((c != -32) && (c != 8) && (c != 27) && (c != 13));
if ((c == 8) || (c == 27)) {
chx = 0; /// chiox pour retournez en arriere
break;
}
if (c == 13)
break; /// il chioser le choix selectionez
c = getch();
if ((c != 72) && (c != 80))
continue;
textbackground(colorbackground);
if (c == 72) {
/// SI IL APPEUIYER SUR UP
if ((f == 0) && (NbrPhrase > Mn)) {
if (chx == 1) {
f = Mn - 1;
AffichezListeChoix(&Ph[NbrPhrase - Mn], Mn - 1, NbrPhrase - Mn + 1,
Longueur, x, y);
} else
AffichezListeChoix(&Ph[chx - 1], Mn - 1, chx, Longueur, x, y + 1);
} else {
AffichezListeChoix(&Ph[chx - 1], 1, chx, Longueur, x, y + f);
f = ((f + Mn) - 1) % Mn; /// decrimanter le f mais il dois restez sur
/// intervale 0 .. Hauteur-1
}
chx = ((chx + NbrPhrase) - 2) % NbrPhrase +
1; /// decrimanter le chx mais il dois restez sur intervale 1 ..
/// NbrPhrase
} else {
if (c == 80) {
if ((f == Mn - 1) && (NbrPhrase > Mn)) {
if (chx == NbrPhrase) {
f = 0;
AffichezListeChoix(&Ph[1], Mn - 1, 2, Longueur, x, y + 1);
} else
AffichezListeChoix(&Ph[chx - f], Mn - 1, chx - f + 1, Longueur, x,
y);
} else {
AffichezListeChoix(&Ph[chx - 1], 1, chx, Longueur, x, y + f);
f = ((f + Mn) + 1) % Mn; /// incrimanter le f mais il dois restez sur
/// intervale 0 .. Hauteur-1
}
chx = (chx + NbrPhrase) % NbrPhrase +
1; /// incrimanter le chx mais il dois restez sur intervale 1 ..
/// NbrPhrase
}
}
textbackground(colorMenu); /// Affichez le prmier choix avec le color2
AffichezListeChoix(&Ph[chx - 1], 1, chx, Longueur, x, y + f);
} while (1);
gotoxy(1, 1);
return chx;
}
int SaiserCtrlText(void) {
/** attendre que utilisateur taper les touch du controlle text comme cntrl F
*.. et ignore les autres
** return le code du touch
**/
unsigned char toucheClavier, toucheClavier1;
do {
toucheClavier = getch();
if (toucheClavier == 0 || toucheClavier == 224) {
toucheClavier1 = getch();
if (toucheClavier == 224) {
if (toucheClavier1 == 75 || toucheClavier1 == 77 ||
toucheClavier1 == 73 || toucheClavier1 == 81 ||
toucheClavier1 == 80 || toucheClavier1 == 72 ||
toucheClavier1 == 71 || toucheClavier1 == 79 ||
toucheClavier1 == 61) {
return toucheClavier1;
}
}
} else if (toucheClavier == 9 || toucheClavier == 27 ||
toucheClavier == 13 || toucheClavier == 8 ||
toucheClavier == 6 || toucheClavier == 32) {
// si les touch entres ou echap ou -- on sort de la fonction
return toucheClavier;
}
} while (1);
return -1;
}
int Input_Area_Number(char *Number, int CooredonneX, int CooredonneY,
int maxlength, int maxLength_Line) {
/** Defines a multi line Number
** il return la camande qui la fait sortir comme entre
**/
unsigned char toucheClavier, toucheClavier1;
int NbrChiffre = strlen(Number);
int i = NbrChiffre;
cputsxyAreaBlanc(CooredonneX, CooredonneY, Number,
maxlength / maxLength_Line + 1, maxLength_Line,
"0123456789");
do {
gotoxy(CooredonneX + i % maxLength_Line, CooredonneY + i / maxLength_Line);
toucheClavier = getch();
if (toucheClavier == 0 || toucheClavier == 224) {
// on lit les touch des clavier qui a deux code
toucheClavier1 = getch();
if (toucheClavier == 224 && toucheClavier1 == 75) {
// touch clavier est touch lift
if (i > 0)
i--; // on decremante la postiion du la curseur
} else if (toucheClavier == 224 && toucheClavier1 == 77) {
// touch clavier est touch right
if (i < NbrChiffre)
i++; // on incremante la postiion du la curseur
} else if (toucheClavier == 224 && toucheClavier1 == 79) {
// touch clavier est touch Fin de Line
i = NbrChiffre; // on postiionne la curseur a la fin de la line
} else if (toucheClavier == 224 && toucheClavier1 == 71) {
// touch clavier est touch Debut de Line
i = 0; // on postiionne la curseur a la debut de la line
} else if (toucheClavier == 224 && toucheClavier1 == 83) {
// touch clavier est touch suppr inser
if (i < NbrChiffre) {
StrSuppChar(Number, i); // on supprime le cractere de la postion i
cputsxyAreaBlanc(CooredonneX, CooredonneY, Number,
NbrChiffre / maxLength_Line + 1, maxLength_Line,
"0123456789");
NbrChiffre--;
} else
printf("%c", 7);
} else if (toucheClavier == 224 &&
(toucheClavier1 == 80 || toucheClavier1 == 72)) {
// touch clavier est touch up ou down
if (toucheClavier1 == 80) {
i = NbrChiffre + maxLength_Line;
if (i > NbrChiffre)
i = NbrChiffre;
} else {
i = NbrChiffre - maxLength_Line;
if (i < 0)
i = 0;
}
} else if (toucheClavier == 224 &&
(toucheClavier1 == 73 || toucheClavier1 == 81)) {
// page suivant ou precedant
return toucheClavier1; // on sort du la fonction avec return du le touch
// qui fait sortire
}
} else if (iscntrl(toucheClavier)) {
if (toucheClavier == 8) {
// touch supp
if (i > 0) {
StrSuppChar(Number, --i); // on supprime le cractere de la postion i-1
cputsxyAreaBlanc(CooredonneX, CooredonneY, Number,
NbrChiffre / maxLength_Line + 1, maxLength_Line,
"0123456789");
NbrChiffre--;
} else
printf("%c", 7);
} else if (toucheClavier == 9 || toucheClavier == 27 ||
toucheClavier == 13) {
// si les touch entres ou echap ou -- on sort de la fonction
return toucheClavier; // on sort du la fonction avec return du le touch
// qui fait sortire
}
} else if (isdigit(toucheClavier)) {
if (NbrChiffre < maxlength) {
StrInsertChar(
Number, (char)toucheClavier,
i++); // on Insert le cractere toucheClavier a la postion i
cputsxyArea(CooredonneX, CooredonneY, Number, maxLength_Line,
"0123456789");
NbrChiffre++;
} else
printf("%c", 7);
}
} while (1);
return -1;
}
void chargerA(int x, int y, int pl) {
gotoxy(x + 50, y - 1);
printf("%02d%%", pl);
DrawRectangle(x, y, pl, 2);
}
#endif