X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/ffba5290f8f2c8f215cc07d59cf5559f5383c8b8..9be3cef1df309cc384c37af980d379d465ab25e9:/emufs_gui/emufs_view.c?ds=sidebyside diff --git a/emufs_gui/emufs_view.c b/emufs_gui/emufs_view.c index 7d2616d..e8af9fc 100644 --- a/emufs_gui/emufs_view.c +++ b/emufs_gui/emufs_view.c @@ -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.");