-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathqmenu.c
3692 lines (3467 loc) · 95.1 KB
/
qmenu.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
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
'******************************************************************************
' This file is part of qmenu.c
'
' Copyright © 1992 - 2014 Stefano Teodorani
' Authors: Stefano "teopost" Teodorani <[email protected]>
'
' This program IS free software; you can redistribute it AND / OR modify
' it under the terms OF the GNU General PUBLIC License AS published by
' the Free Software Foundation; version 3 OF the License.
'
' 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 General PUBLIC License FOR more details.
'
' You should have received a COPY OF the GNU General PUBLIC License
'
' along WITH this program; IF NOT, WRITE TO the Free Software
' Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110 - 1301, USA.
'
'******************************************************************************
================================================================================
qmenu.c - quick menu
--------------------------------------------------------------------------------
Compilazione su sistema 3000 -> cc -o qmenu qmenu.c -lcurses
Compilazione su SCO -> cc -xenix -lcurses -ltermcap -o qmenu qmenu.c
Compilazione su Linux -> gcc x -lncurses -o qmenu qmenu.c
================================================================================
*/
// For Unix System V NCR -> #include <cursesr2>
#include <ncurses.h>
#include <stdlib.h>
#include <string.h>
#include <signal.h>
#include <ctype.h>
#include <time.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "dirent.h"
#include <term.h>
// Varius constants
#define VERSION "Rel. 5.0.3"
#define SUPER 1 // Pop-up Stampanti Superutente
#define USER 2 // Pop-up Stampanti Utente
#define ON 1 // Costante stato ON
#define OFF 0 // Costante stato OFF
#define MENU -1 // Check Password da voce Menu
#define EDIT -2 // Check Password da <Shift-@>
#define SHELL -3 // Check Password da <Shift-!>
#define SUPER_MENU -4 // Check Password da <Shift-#>
#define PASSWD_MODE -5 // Check Password in password mode
#define TL 1 // Flag simbolo grafico Top-Left
#define BL 2 // Flag simbolo grafico Bottom-Left
#define TR 3 // Flag simbolo grafico Top-Right
#define BR 4 // Flag simbolo grafico Bottom-Right
#define ROW 5 // Flag simbolo grafico Row
#define COL 6 // Flag simbolo grafico Col
#define SHADOW 7 // Flag simbolo grafico Shadow
#define LEFT_SYMBOL '>' // Simbolo Sx della barra di selezione
#define RIGHT_SYMBOL ' ' // Simbolo Dx della barra di selezione
#define LOGFILE_DIM 50000 // Dimensione max del file di LOG
#define CONFIG_FILE qmenu.cfg // Nome File di configurazione
#define MAXR 24 // Numero massimo righe Display
#define MAXC 90 // Numero massimo colonne Display
#define MAXITEMS 40 // Massimo Numero Voci di menu
#define MAXFRMITEMS 20 // Massimo Numero Voci di menu
#define PREV_FIELD "-2" // Massimo Numero Voci di menu
#define ABORT "-1" // Massimo Numero Voci di menu
#define C_U 256 // Cursore Su
#define C_D 257 // Cursore Giu'
#define C_L 258 // Cursore Sinistra
#define C_R 259 // Cursore Destra
#define FZ1 261 // Tasto Funzione F1
#define FZ2 262 // Tasto Funzione F2
#define FZ3 263 // Tasto Funzione F3
#define FZ4 264 // Tasto Funzione F4
#define FZ5 265 // Tasto Funzione F5
#define FZ6 266 // Tasto Funzione F6
#define FZ7 267 // Tasto Funzione F7
#define FZ8 268 // Tasto Funzione F8
#define FZ9 269 // Tasto Funzione F9
#define FZ0 270 // Tasto Funzione F10
#define FZA 271 // Tasto Funzione F11
#define FZB 272 // Tasto Funzione F12
#define DEL 18 // Tasto DELETE
#define BKSP 8 // Tasto BACK-SPACE
#define INS 5 // Tasto INSERT
#define RET 13 // Tasto RETURN
#define NL 10 // Tasto NEW-LINE
#define PGUP 300 // Tasto Pagina Su'
#define PGDN 301 // Tasto Pagina Giu'
#define HOME 302 // Tasto Pagina Giu'
#define END 303 // Tasto Pagina Giu'
#define ESC 27 // Tasto ESCAPE
#define X_COORD 3 // Coord. X Display Help
#define Y_COORD 5 // Coord. Y Display Help
#define MAX_ROW 16 // Righe Max Display Help
#define MAX_COL 70 // Colonne Max Display Help
// Messages
#define msg_DONT_OPEN "Can't open"
#define msg_DONT_WRITE "Can't write"
#define msg_USER_DONT_HAVE_PERM "The user has not permissions"
#define msg_MENU_FILE_ERROR "Menu file error"
#define msg_THIS_IS_MAIN_MENU "This is the main menu"
#define msg_INVALID_SELECTION "Invalid selection"
#define msg_PARENT_MENU_CHANGED "Parent menu changed"
// File pointer
FILE *infile, *fopen (); // File Generici di Input/Output
FILE *ofile, *helpfile; // File Generici di Input/Output
// Global variables
signed char attrb[MAXR + 1][MAXC];// Campi di selezione Dati
char vscreen[MAXR + 1][MAXC]; // Schermo di Lavoro
char linea[200]; // Buffer Globale Generico
char finestra[23][200];
int max_elem_fin = 0;
int max_lun_fin = 0;
int j = 0;
char help_line[800][255];
char nometemp[64]; // File temporaneo
char lpdestenv[32]; // Spazio environment x LPDEST
char lpdestval[32]; // Spazio environment x LPDEST
char sistema[12]; // Nome sistema
char imenu[80][40]; // Catasta di Menu
char NULSTRING[] = { 0, 0 }; // Stringa nulla statica per funzioni
char titolo[40]; // Titolo del menu
char editor[40]; // Editor utilizzato (vi)
char rvs_row[40]; // Stringa di righe da evidenziare
char rvs_tmp[40][10]; // Stringa temp. di righe da evidenz.
char shell[40]; // Shell lanciata
char porta[20]; // Nome tty di input
char utente[20]; // Nome login di input
char spoolernm[16]; // Nome dello spooler assegnato
char ability_user[80];
char prsuper[80];
char pruser[80];
char super_passwd[80];
char menu_dir[64]; // Nome directory dei menu
char sh_passwd[64]; // Nome parola chiave per shell
char sh_passwd_ok = 0; // Flag parola chiave per shell
char edit_passwd[64]; // Nome parola chiave per edit menu
char edit_passwd_ok = 0; // Flag parola chiave per edit menu
char intflg = 0; // Flag Interrupt da subroutine
char tfu[10][300]; // Tasti Funzione Utente
char lfu[10][20]; // Label Tasti Funzione Utente
char pfu[10][26]; // Password Tasti Funzione Utente
int selmenu[40]; // Catasta di Menu
int help_item = 0;
int rvs_r; // Riga da evidenziare
int ipmenu = 0; // Puntatore a Catasta di Menu
int nitems; // Numero di Voci
int curitem; // Voce corrente
int iy = 21, ix = 1; // Posizione di default per input
int keydisp = 1; // Flag Diplay Tasti Funzione
int prdisp = 1; // Flag display Stampante
int itime_out = 900; // Time Out di Procedura
int mnu_tim = 1; // Inattivita tastiera attivata
int bks_exit = 0; // Se 1 esce dal menu principale
int neterr = 0; // Flag Errore di non trovato login
int en, o = 0, junk, d; // Variabili generiche, contatori ecc.
int user = OFF;
int super = OFF;
int superpasswd = OFF;
int passwd_mode = OFF;
int inc = 0, memoinc = 0; // Variabile pointer file memorizzato
int graf = 1; // Flag Grafica Abilitata (se=1)
double procid; // Numero processo in corso
long logfile_dim = LOGFILE_DIM; // Dimensione max file di log
char env_var[80]; // Stringa variabile d' ambiente
char simb_var[80]; // Stringa variabile simbolo
char env_value[80]; // Valore variabile d' environment
char memofile[15000]; // File memorizzato in un array
char hlp_filename[60]; // Nome file di Help
char to_found[60]; // Stringa da ricercare nel file Help
int mnuname_y; // Riga simbolo MNUNAME (Nome menu)
int mnuname_x; // Colonna simbolo MNUNAME
int mnuname_g; // Giustificazione simbolo MNUNAME
int mnuname_flag = OFF; // Flag ON/OFF simbolo MNUNAME
int mnuname_rvs = OFF; // Flag reverse on simbolo MNUNAME
int msg_y; // Riga simbolo MSG (Messaggio Help)
int msg_x; // Colonna simbolo MSG
int msg_g; // Giustificazione simbolo MSG
int msg_flag = OFF; // Flag ON/OFF simbolo MSG
int msg_rvs = OFF; // Flag reverse on simbolo MSG
int time_y; // Riga simbolo TIME (Orario)
int time_x; // Colonna simbolo TIME
int time_g; // Giustificazione simbolo TIME
int time_flag = 0; // Flag ON/OFF simbolo TIME
int time_rvs = OFF; // Flag reverse on simbolo TIME
int title_y; // Riga simbolo TITLE (Titolo)
int title_x; // Colonna simbolo TITLE
int title_g; // Giustificazione simbolo TITLE
int title_flag = 0; // Flag ON/OFF simbolo TITLE
int title_rvs = OFF; // Flag reverse on simbolo TITLE
int infoterm_y; // Riga simbolo INFOTERM (Info term.)
int infoterm_x; // Colonna simbolo INFOTERM
int infoterm_g; // Giustificazione simbolo INFOTER
int infoterm_flag = 0; // Flag ON/OFF simbolo INFOTERM
int infoterm_rvs = OFF; // Flag reverse on simbolo INFOTERM
int mnutrace_y; // Riga simbolo MNUTRACE (Elenc.menu)
int mnutrace_x; // Colonna simbolo MNUTRACE
int mnutrace_g; // Giustificazione simbolo MNUTRACE
int mnutrace_flag = 0; // Flag ON/OFF simbolo MNUTRACE
int mnutrace_rvs = OFF; // Flag reverse on simbolo MNUTRACE
int a = 0;
// Menu struct
struct menuitem
{
char desc[80]; // Descrizione a Video
char execute[300]; // Comando Corrispondente Eseguito
char msg[80]; // Messaggio descrittore del comando
char passw[26]; // Eventuale Password
int x; // Posizione x
int y; // Posizione y
int len; // Lunghezza Descizione
int inplen; // Lunghezza indice Selezione
} scelta[MAXITEMS]; // Massimo numero scelte (01-99,A-Z)
struct form
{
char desc[80];
int x;
int y;
int lun;
} frm[MAXFRMITEMS];
// Functions headers
char *getlogin ();
char *ttyname ();
char *cercadop ();
char *getenv ();
int senum ();
void fine1 ();
void fine2 ();
void fine3 ();
void fine4 ();
void fine5 ();
void templim ();
void helper ();
void cre_cfg ();
void cre_model ();
int form (char *forma);
void disegna_form ();
void readcfg ();
int getlineext (char *tamp);
int loadmenu ();
void alert (char *titolo, char *testo);
void dispmenu ();
void history_string (char *message);
void mnutrace ();
void disegna_form ();
void display_config ();
void pausa ();
void dataoggi (char *datastr);
int confirm ();
int chkinit ();
void orolog ();
void menu_name_disp ();
void getentry (int xpos, int ypos, int tot_entry, char *entry);
void getpasswd (char *entry);
void alert (char *titolo, char *testo);
void grafic (int etichetta);
void infoterm ();
void simb_pos (char *simb_name, int y_pos, int x_pos, int gst);
void hlpmsg ();
void win (char *titolo, int x, int y, int z, int k);
void disphelp (int row, int col, int first_row, int first_col);
int ext (char *label);
void inpsel (int op);
void smove (int y, int x);
void selspool (int type_sel);
int esegui (char *comando);
void scarica ();
void menu_name_disp ();
void selez (int op);
int chkinit ();
int ricerca_passwd (char *etichetta);
int selectnext (int c);
int win_option (char *winlist);
int chkpass (int tipo);
int getkey ();
void microhelp(char *message);
time_t t1;
struct tm *tptr;
// Main
int main (int argc, char **argv)
{
int errorlvl = 0; /* Variabile controllo ritorno funz. */
int ii = 0, c, c1, t, idx; /* Variabili di utilizzo generale */
int k = 0;
int primavolta; /* Primo utilizzo frecce e tastiera */
int tmpcnt, flg1, flg2;
char command[60]; /* Command Variab.usato dalla system() */
char prgname[80];
char menu_name[128];
char compare[80];
char buf0[4];
char buf1[4];
char formid[30];
char shellid[30];
char frm_argument[255];
int dentro_parentesi = FALSE;
int p, n, r;
if (argc == 1) /* Se non esistono argomenti, errore */
{
microhelp("");
exit (0);
}
if (strcmp (argv[1], "-init") == 0)
{
cre_cfg ();
exit (0);
}
if (strcmp (argv[1], "-model") == 0)
{
cre_model ();
exit (0);
}
readcfg (); // Lettura Variabili d' ambiente
strcat (imenu[ipmenu], argv[1]); // Rilevo il nome del Menu passato
//strcat(imenu[ipmenu],".mnu"); // Aggiungo estensione al nome menu
strcpy (menu_name, menu_dir);
strcat (menu_name, imenu[ipmenu]);
if ((infile = fopen (menu_name, "r")) == NULL)
{
microhelp("File not found");
exit (0);
}
else
fclose (infile);
signal (SIGINT, fine1); // Interruzione utente (^C, Del, Trap)
signal (SIGFPE, fine2); // Errore Aritmetico
signal (SIGBUS, fine3); // Bus Error
signal (SIGSEGV, fine4); // Segmentation fault
signal (SIGTERM, fine5); // Segnale interruzione esterno
signal (SIGALRM, templim); // Tempo di Inattiviva utente
/* Lettura Variabili d' ambiente */
strcpy (porta, ttyname (fileno (stdin))); /* Identificazione porta */
initscr (); /* Inizializzazione schermo curses */
noecho ();
cbreak ();
clear ();
refresh ();
noecho ();
crmode ();
strcpy (compare, argv[0]); /* Ottiene nome programma di lancio */
while (compare[0] != 0)
{
strcpy (prgname, compare);
strcpy (compare, cercadop (prgname, "/"));
}
if (argc < 3) /* Se non esistono 3 argomenti, uso */
strcpy (editor, "vi"); /* il vi come editor di modifica menu */
else /* altrimenti */
strcpy (editor, argv[2]); /* uso il terzo argomento come Editor */
strcpy (shell, "sh"); /* Uso sh come shell di sistema */
if (getlogin ()) /* Letto il nome login */
strcpy (utente, getlogin ()); /* e ne copio il contenuto in utente */
strcpy (nometemp, "\0"); /* Copio su sistema il sistema in uso */
strcpy (nometemp, tmpnam (nometemp));
strcpy (linea, "uuname -l > ");
strcat (linea, nometemp);
system (linea);
infile = fopen (nometemp, "r");
getlineext (sistema);
fclose (infile);
unlink (nometemp);
errorlvl = loadmenu ();
if (errorlvl)
{
if (errorlvl != 10)
{
alert (" Warning ", msg_MENU_FILE_ERROR);
errorlvl = 3;
}
beep ();
goto the_end;
}
clear ();
dispmenu ();
history_string ("[START]");
curitem = 1;
tmpcnt = 0;
c = 0;
primavolta = 0;
tmpcnt = 0;
if (passwd_mode)
{
if (chkinit ())
dispmenu ();
else
goto the_end;
}
while (1) /* inizio ciclo controllo menu' */
{
c1 = c;
if ((tmpcnt == 1) && (c1 > 1000))
{
smove (iy, ix - 1);
sprintf (buf0, "%.2d", c1 - 1000);
addch ('?');
}
smove (iy, ix);
if (time_flag)
orolog ();
if (mnu_tim)
alarm (itime_out); /* Delay di inattivita' */
if ((msg_flag) && (primavolta))
hlpmsg ();
if (infoterm_flag)
infoterm ();
inpsel (primavolta);
refresh ();
c = getkey ();
if (mnu_tim)
alarm (0);
if ((senum (c)) && (tmpcnt == 0)) /* Input numerico allora verifico */
{
/* se puo essere una decina */
tmpcnt = 1; /* Flag controllo primo input */
buf0[0] = c; /* numerico */
buf0[1] = 0;
c = atoi (buf0) + 1000; /* Sommo 1000 all'input c per */
flg1 = -1; /* distinguerlo come primo input */
flg2 = -1;
for (t = 1; t <= nitems; t++)
{
buf1[0] = scelta[t].desc[0];
buf1[1] = scelta[t].desc[1];
buf1[2] = 0;
if ((senum (buf1[0]) == 0) && (senum (buf1[1]) == 0))
continue;
if (c == (atoi (buf1) + 1000))
flg1 = 0;
}
for (t = 1; t <= nitems; t++)
if (scelta[t].desc[0] == buf0[0])
if (senum (scelta[t].desc[1]) == 1)
flg2 = 0;
if (flg1 == -1)
{
if ((flg2 == -1) && (buf0[0] != '0'))
{
beep ();
tmpcnt = 0;
}
continue;
}
if ((flg1 == 0) && (flg2 == -1))
{
tmpcnt = 0;
inpsel (primavolta);
}
}
if ((tmpcnt == 1) && (senum (c))) /* Se sono nel secondo ciclo */
{
/* dell'input numerico */
tmpcnt = 0;
buf0[0] = (c1 - 1000) + '0';
buf0[1] = c;
buf0[2] = 0;
c = atoi (buf0) + 1000;
flg1 = -1;
for (t = 1; t <= nitems; t++)
{
buf1[0] = scelta[t].desc[0];
buf1[1] = scelta[t].desc[1];
buf1[2] = 0;
if ((senum (buf1[0]) == 0) && (senum (buf1[1]) == 0))
continue;
if (c == (atoi (buf1) + 1000))
flg1 = 0;
}
if (flg1 != 0)
{
smove (iy, ix - 1);
printw ("%.2d", c - 1000);
scarica ();
alert (" Warning ", msg_INVALID_SELECTION);
dispmenu ();
selez (1);
c = 0;
continue;
}
}
if ((senum (c) != 1) && (c < 1000)) /* Non si ammettono cifre */
tmpcnt = 0; /* mischiate a lettere */
if (c == 0) /* Tasto nullo */
continue;
if (c == BKSP) /* Ritorno a menu' Precedente */
{
history_string ("[Previuous menu]");
ipmenu--;
if (ipmenu < 0)
{
if (bks_exit)
goto the_end;
else
{
ipmenu = 0;
alert (" Warning ", msg_THIS_IS_MAIN_MENU);
dispmenu ();
refresh ();
primavolta = 0;
selez (0);
curitem = 1;
c = 0;
continue;
}
}
if ((errorlvl = loadmenu (imenu[ipmenu])))
{
alert (" Warning ", msg_PARENT_MENU_CHANGED);
goto the_end;
}
clear ();
dispmenu ();
primavolta = 1;
curitem = selmenu[ipmenu];
selez (1);
continue;
}
if (c == '#') /*--- Richiesta Shell Assegnata -----*/
{
if (superpasswd)
{
if (chkpass (SUPER_MENU))
{
dispmenu ();
selez (1);
continue;
}
switch (win_option
("ACCESSO A SHELL,MODIFICA MENU,MODIFICA STAMPANTE DI DEFAULT,VISUAL. FILE DI CONFIGURAZIONE,VISUAL. FILE DI LOG,MODIFICA FILE DI CONFIGURAZIONE,MODIFICA FILE DI FORM,MODIFICA FILE DI HELP,INFORMAZIONI"))
{
case 0:
strcpy (command, shell);
esegui (command);
errorlvl = loadmenu (imenu[ipmenu]);
if (errorlvl)
{
if (errorlvl != 10)
{
alert (" Warning ", msg_MENU_FILE_ERROR);
errorlvl = 3;
}
goto the_end;
}
break;
case 1:
strcpy (command, editor);
strcat (command, " ");
strcat (command, menu_dir);
strcat (command, imenu[ipmenu]);
esegui (command);
errorlvl = loadmenu (imenu[ipmenu]);
if (errorlvl)
{
if (errorlvl != 10)
{
alert (" Warning ", msg_MENU_FILE_ERROR);
errorlvl = 3;
}
goto the_end;
}
break;
case 2:
selspool (SUPER);
break;
case 3:
display_config ();
break;
case 4:
if ((infile = fopen ("qmenu.log", "r")) == NULL)
{
printw ("%s qmenu.log\n", msg_DONT_OPEN);
break;
}
help_item = 0;
while ((a = getlineext (help_line[help_item])) != EOF)
help_item++;
help_item--;
fclose (infile);
helper ();
for (a = 0; a != help_item; a++)
help_line[a][0] = '\0';
break;
case 5:
esegui ("vi qmenu.cfg");
errorlvl = loadmenu (imenu[ipmenu]);
break;
case 6:
esegui ("vi qmenu.frm");
errorlvl = loadmenu (imenu[ipmenu]);
break;
case 7:
strcpy (command, editor);
strcat (command, " ");
strcat (command, hlp_filename);
esegui (command);
errorlvl = loadmenu (imenu[ipmenu]);
break;
case 8:
win (" INFORMATION ", 2, 2, 18, 78);
move (4, 3);
printw (" %s ", VERSION);
move (6, 3);
printw (" quick menu");
move (8, 3);
printw (" Created by S.Teodorani & G.Juan Oteri");
move (10, 3);
printw (" File list : qmenu - main executable");
move (11, 3);
printw(" qmenu.cfg - configuration file");
move (12, 3);
printw(" qmenu.hlp - help file (mandatory)");
move (13, 3);
printw(" qmenu.log - log file (generated by qmenu)");
move (14, 3);
printw(" qmenu.log.bak - backup log file");
move (15, 3);
printw(" qmenu.frm - form file");
move (18, 4);
printw (" F4 - Exit ");
while ((a = getkey ()) != FZ4);
break;
default:
break;
}
}
dispmenu ();
selez (1);
continue;
}
if (c == '\t') /*--- Richiesta Help su argomento ----*/
{
strcpy (to_found, imenu[ipmenu]);
strcat (to_found, ":");
if (primavolta != 0)
strncat (to_found, scelta[curitem].desc, 2);
strcat (to_found, "\0");
if ((junk = ext (to_found)) == 1)
alert (" Warning ", " MENU FILE NOT FOUND \0");
dispmenu ();
if (primavolta != 0)
selez (1);
inpsel (primavolta);
continue;
}
if ((c >= FZ1) && (c <= FZ0)) /*--- Tasti funzione ----*/
{
idx = c - FZ1;
if (keydisp == 1) /* Flash del Tasto funzione */
{
if (tfu[idx][0] > 0)
{
for (t = 0; t < 9; t++)
{
for (ii = 0; ii < 50000; ii++);
{
if (t % 2)
standout ();
else
standend ();
}
move (23, idx * 8);
if (idx < 9)
printw ("F%.1d", idx + 1);
else
printw ("F0");
refresh ();
}
standend ();
refresh ();
}
}
if (tfu[idx][0] == 0)
continue;
if (strncmp (tfu[idx], "exit", 4) == 0)
goto the_exit;
if (strncmp (tfu[idx], "fine", 4) == 0)
{
if (confirm ())
{
clear ();
refresh ();
history_string ("[END]");
goto the_end;
}
dispmenu ();
selez (1);
continue;
}
if (tfu[idx][0] == '$')
{
if ((pfu[idx][0]) > 0)
if (chkpass (idx))
{
dispmenu ();
selez (1);
continue;
}
selmenu[ipmenu] = curitem;
ipmenu++;
strcpy (imenu[ipmenu], &tfu[idx][1]);
strcat (imenu[ipmenu], ".mnu");
errorlvl = loadmenu (imenu[ipmenu]);
if (errorlvl)
{
ipmenu--;
if (ipmenu == -1)
ipmenu = 0;
errorlvl = loadmenu (imenu[ipmenu]);
if (errorlvl)
{
alert (" Warning ", msg_PARENT_MENU_CHANGED);
goto the_end;
}
}
clear ();
dispmenu ();
curitem = 1;
selez (0);
primavolta = 0;
continue;
}
if (strncmp (tfu[idx], "return", 6) == 0)
{
if (strncmp (tfu[idx], "returnmain", 10) == 0)
ipmenu = 0;
else
ipmenu--;
if (ipmenu < 0)
{
clear ();
refresh ();
goto the_end;
}
if ((errorlvl = loadmenu (imenu[ipmenu])))
{
alert (" Warning ", msg_PARENT_MENU_CHANGED);
goto the_end;
}
clear ();
curitem = 1;
continue;
}
if ((pfu[idx][0]) > 0)
if (chkpass (idx))
{
dispmenu ();
selez (1);
continue;
}
strcpy (command, tfu[idx]);
esegui (command);
crmode ();
noecho ();
clear ();
dispmenu ();
selez (1);
inpsel (primavolta);
continue;
}
if (c == NL) /*--- Esecuzione ----*/
{
if (primavolta == 0)
{
beep ();
continue;
}
if (curitem == 0)
continue;
if (scelta[curitem].execute[0] == 0)
continue;
if (strncmp (scelta[curitem].execute, "exit", 4) == 0)
goto the_exit;
if (strncmp (scelta[curitem].execute, "fine", 4) == 0)
{
if (confirm ())
{
clear ();
refresh ();
history_string ("[END]");
goto the_end;
}
dispmenu ();
selez (1);
continue;
}
if (scelta[curitem].execute[0] == '$')
{
if (strlen (scelta[curitem].passw) > 0)
if (chkpass (MENU))
{
dispmenu ();
selez (1);
continue;
}
history_string (scelta[curitem].desc);
selmenu[ipmenu] = curitem;
ipmenu++;
strcpy (imenu[ipmenu], &scelta[curitem].execute[1]);
strcat (imenu[ipmenu], ".mnu");
errorlvl = loadmenu (imenu[ipmenu]);
if (errorlvl)
{
ipmenu--;
if (ipmenu == -1)
ipmenu = 0;
errorlvl = loadmenu (imenu[ipmenu]);
if (errorlvl)
{
alert (" Warning ", msg_PARENT_MENU_CHANGED);
goto the_end;
}
}
clear ();
dispmenu ();
curitem = 1;
selez (0);
primavolta = 0;
c = 0;
refresh ();
continue;
}
/* FORM */
if (scelta[curitem].execute[0] == '*')
{
p = 1;
n = 0;
r = 0;
while (scelta[curitem].execute[p] != '\0')
{
if (scelta[curitem].execute[p] == '(')
{
p++;
dentro_parentesi = TRUE;
}
if (scelta[curitem].execute[p] == ')')
{
p++;
dentro_parentesi = FALSE;
}
if (dentro_parentesi)
shellid[n++] = scelta[curitem].execute[p];
else
formid[r++] = scelta[curitem].execute[p];
p++;
}
shellid[n] = '\0';
formid[r] = '\0';
if (!form (formid))
{
sprintf (frm_argument, "%s ", shellid);
for (k = 0; k < j; k++)
{
strcat (frm_argument, " \"");
strcat (frm_argument, frm[k].desc);
strcat (frm_argument, "\"");
}
strcat (frm_argument, "\0");
resetty ();
esegui (frm_argument);
crmode ();
noecho ();
}
dispmenu ();
selez (1);
continue;
}
if (strncmp (scelta[curitem].execute, "return", 6) == 0)
{
if (strncmp (scelta[curitem].execute, "returnmain", 10) == 0)
ipmenu = 0;
else
ipmenu--;
if (ipmenu < 0)
{
clear ();
refresh ();
goto the_end;
}
if ((errorlvl = loadmenu (imenu[ipmenu])))
{
alert (" Warning ", msg_PARENT_MENU_CHANGED);
goto the_end;
}
dispmenu ();
curitem = 1;
primavolta = 0;
continue;
}
if (strlen (scelta[curitem].passw) > 0)
if (chkpass (MENU))
{
dispmenu ();
selez (1);
continue;
}
resetty ();
strcpy (command, scelta[curitem].execute);
history_string (scelta[curitem].execute);
esegui (command);
crmode ();
noecho ();
clear ();
dispmenu ();
selez (1);
inpsel (primavolta);
primavolta = 1;
continue;
}
if ((c > 255) && (c < 1000)) /* Frecce */
{
if (primavolta == 0)
{
selez (0);
curitem = 1;
selez (1);
buf0[0] = scelta[curitem].desc[0];
buf0[1] = scelta[curitem].desc[1];
buf0[2] = 0;
if ((senum (buf0[0])) || (senum (buf0[1])))
c = 1000 + atoi (buf0);
primavolta = 1;
}
else
{
selez (0);
curitem = selectnext (c);
selez (1);
buf0[0] = scelta[curitem].desc[0];
buf0[1] = scelta[curitem].desc[1];
buf0[2] = 0;
if ((senum (buf0[0])) || (senum (buf0[1])))
c = 1000 + atoi (buf0);
}
}
else /* Lettere o decine numeriche */
{
if (c < 1000) /*--- Lettere ---*/
{
c = toupper (c);
primavolta = 1;
selez (0);
for (t = 1; t <= nitems; t++)
{
if (c == scelta[t].desc[0])
curitem = t;
}
selez (1);
refresh ();
}
else
{
primavolta = 1;