]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/emufs_view.c
no anda perfecto pero ahora actualiza mucho mejor el fsc
[z.facultad/75.06/emufs.git] / emufs_gui / emufs_view.c
index 7d2616d9ff6672344f18b3ffc1eda7ba421113ea..e8af9fcfb95faae3513e389c10fa39e5ff5c98e3 100644 (file)
@@ -118,6 +118,19 @@ t_Param param_ok(int argc, char *argv[])
                                                                parametros.tam_bloque_nota = atoi(argv[i]);
                                                                if (parametros.tam_bloque_nota <= 0) return SHOW_HELP;
                                                        }
+                                               break;
+                                               case 2:
+                                                       if (i >= argc) return SHOW_HELP;
+                                                       n = atoi(argv[i]);
+                                                       if ((n<1) || (n>3)) return SHOW_HELP;
+                                                       parametros.tipo_arch_nota = n;
+                                                       if (((n == 1) || (n == 3)) && ((i+1)>=argc))
+                                                               return SHOW_HELP;
+                                                       i++;
+                                                       if (n != 2) {
+                                                               parametros.tam_bloque_nota = atoi(argv[i]);
+                                                               if (parametros.tam_bloque_nota <= 0) return SHOW_HELP;
+                                                       }
                                        }
                                        PERR("ACA");
                                        parametros.xml_fact = file;
@@ -528,6 +541,7 @@ void menu_mantenimiento()
                                dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
                                fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro, nuevo_tipo1, nuevo_tam_bloque1, nuevo_tam_registro1);
                                msg_box_free(stdscr, dlg);
+                       break;
                        case 5:
                                s = preguntar_file();
                                if (s) {
@@ -666,32 +680,7 @@ void ver_estadisticas(EMUFS *fp)
                        waddstr(win, s);
        }
 
-       if ((fp->tipo == T1) || (fp->tipo == T3)) {
-               wattron(win, A_BOLD);
-               mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
-               wattroff(win, A_BOLD);
-               sprintf(s, "%lu", stats.cant_bloques);
-               waddstr(win, s);
-       }
-       
-       wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Cant. Registros : ");
-       wattroff(win, A_BOLD);
-       sprintf(s, "%lu", stats.cant_registros);
-       waddstr(win, s);
-
-       wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
-       wattroff(win, A_BOLD);
-       sprintf(s, "%lu bytes", stats.tam_archivo);
-       waddstr(win, s);
 
-       wattron(win, A_BOLD);
-       mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
-       wattroff(win, A_BOLD);
-       sprintf(s, "%lu bytes", stats.tam_archivos_aux);
-       waddstr(win, s);
-       
        wattron(win, A_BOLD);
        mvwaddstr(win, i++, 1, "Tamaño ocupado por datos : ");
        wattroff(win, A_BOLD);
@@ -730,6 +719,31 @@ void ver_estadisticas(EMUFS *fp)
        sprintf(s, "%lu bytes", stats.min_fs);
        waddstr(win, s);
 
+       wattron(win, A_BOLD);
+       mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
+       wattroff(win, A_BOLD);
+       sprintf(s, "%lu bytes", stats.tam_archivo);
+       waddstr(win, s);
+       
+       wattron(win, A_BOLD);
+       mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
+       wattroff(win, A_BOLD);
+       sprintf(s, "%lu bytes", stats.tam_archivos_aux);
+       waddstr(win, s);
+       
+       if ((fp->tipo == T1) || (fp->tipo == T3)) {
+               wattron(win, A_BOLD);
+               mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
+               wattroff(win, A_BOLD);
+               sprintf(s, "%lu", stats.cant_bloques);
+               waddstr(win, s);
+       }
+       
+       wattron(win, A_BOLD);
+       mvwaddstr(win, i++, 1, "Cant. Registros : ");
+       wattroff(win, A_BOLD);
+       sprintf(s, "%lu", stats.cant_registros);
+       waddstr(win, s);
        
        wattron(win, A_BLINK);
        mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");