X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/4cbdb39bf0f27ac467d8132ffb03c5a69fdd56e6..9dd2b7f874aebc9461d93a3a2206ff710410d034:/emufs_gui/emufs_view.c?ds=inline diff --git a/emufs_gui/emufs_view.c b/emufs_gui/emufs_view.c index 5a7e77e..fb8436c 100644 --- a/emufs_gui/emufs_view.c +++ b/emufs_gui/emufs_view.c @@ -26,8 +26,8 @@ void menu_mantenimiento(); void menu_estadisticas(); void menu_ver_registros(); void menu_ver_bloques(); +void menu_ver_indices(); void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg); -char *preguntar_file(); void ver_estadisticas(EMUFS *fp); @@ -60,7 +60,6 @@ void print_help(char *s) int leer_tipo_arbol(char *s) { if (strcmp(s, "B") == 0) return 0; if (strcmp(s, "BA") == 0) return 1; - if (strcmp(s, "BP") == 0) return 2; /* Por defecto es un B */ return 0; @@ -263,10 +262,11 @@ void param_xml(char *s, t_Parametros *param) } } +static t_Parametros parametros; + int main(int argc, char *argv[]) { WINDOW *dialog; - t_Parametros parametros; if (argc != 2) { print_help(argv[0]); @@ -359,7 +359,7 @@ void menu_facturas() }; int opt; - while ((opt = menu_ejecutar(mi_menu, 6, "Menu Articulos")) != 5) { + while ((opt = menu_ejecutar(mi_menu, 6, "Menu Facturas")) != 5) { switch (opt) { case 0: fact_agregar(NULL); @@ -372,6 +372,7 @@ void menu_facturas() break; case 3: fact_consultas(NULL); + break; case 4: fact_recorrer(); } @@ -386,11 +387,12 @@ void menu_articulos() MENU_OPCION("Modificacion", "Modifica un articulo existente."), MENU_OPCION("Consultas", "Consulta varias de articulo."), MENU_OPCION("Recorrer", "Recorrer el archivo por alguno de sus indices."), + MENU_OPCION("Ver ventas", "Ver venta de articulos entre 2 fechas."), MENU_OPCION("Volver", "Volver al menu anterior.") }; int opt; - while ((opt = menu_ejecutar(mi_menu, 6, "Menu Articulos")) != 5) { + while ((opt = menu_ejecutar(mi_menu, 7, "Menu Articulos")) != 6) { switch (opt) { case 0: art_agregar(NULL); @@ -406,6 +408,9 @@ void menu_articulos() break; case 4: art_recorrer(); + break; + case 5: + art_ver_ventas(); } } @@ -496,10 +501,61 @@ void menu_ver_bloques() } } -int main_menu() +void ver_indice(int arch, char *indice) { - int c, w, h; + INDICE *idx; + int w, h; WINDOW *win; + switch (arch) { + case 0: + idx = emufs_buscar_indice_por_nombre(art_get_lst()->fp, indice); + break; + case 1: + idx = emufs_buscar_indice_por_nombre(fact_get_lst()->fp, indice); + } + h = LINES-4; + w = COLS-2; + win = newwin(h, w, 2, 1); + + if ((idx != NULL) && (idx->tipo != IND_B_PLUS)) { + emufs_indice_b_ver(idx, win, w, h, 0); + } else { + if (idx != NULL) { + WINDOW *dlg; + dlg = msg_box(win, w, h, "El tipo de arbol B+ no esta soportado en el visor"); + getch(); + msg_box_free(win, dlg); + } + } + delwin(win); +} + +void menu_ver_indices() +{ + int arch[8] = {0, 0, 0, 1, 1, 1, 1, 1}; + char *nombres[8] = {"codigo", "desc", "presentacion", + "numero", "emision", "vto", "cheque", "ctacte"}; + MENU(mi_menu) { + MENU_OPCION("Articulos->codigo",""), + MENU_OPCION("Articulos->desc",""), + MENU_OPCION("Articulos->presentacion",""), + MENU_OPCION("Facturas->numero",""), + MENU_OPCION("Facturas->emision",""), + MENU_OPCION("Facturas->vto",""), + MENU_OPCION("Facturas->cheque", ""), + MENU_OPCION("Facturas->ctacte", ""), + MENU_OPCION("Volver", "Volver al menu anterior.") + }; + int c; + + while ((c=menu_ejecutar(mi_menu, 9, "Menu Principal"))!=8) { + ver_indice(arch[c], nombres[c]); + } +} + +int main_menu() +{ + int c; MENU(mi_menu) { MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."), MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."), @@ -507,7 +563,7 @@ int main_menu() MENU_OPCION("Ver Bloques","Ver bloques (en su contexto) de los archivos."), MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."), MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."), - MENU_OPCION("DEBUG", "Debug de Arbol B"), + MENU_OPCION("Ver Indices", "Permite ver y recorrer los indices"), MENU_OPCION("Salir", "Salir del sistema.") }; @@ -532,11 +588,7 @@ int main_menu() menu_mantenimiento(); break; case 6: - h = LINES-2; - w = COLS-2; - win = newwin(h, w, 1, 1); - emufs_indice_b_ver(fact_get_lst()->fp->indices, win, w, h, 0); - delwin(win); + menu_ver_indices(); } } @@ -621,7 +673,9 @@ void menu_mantenimiento() nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */ preguntar_nuevo_tipo("Parametros para Articulos", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro); dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde"); - art_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro); + parametros.tipo_arch_art = nuevo_tipo; + parametros.tam_bloque_art = nuevo_tam_bloque; + art_reformatear(¶metros); msg_box_free(stdscr, dlg); break; case 4: @@ -667,13 +721,15 @@ void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *ta mvwaddstr(win, 0, 1, title); form = form_crear(win); - form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3"); + form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3,T4,T5"); form_ejecutar(form, 1,1); s = form_obtener_valor_char(form, "Tipo de archivo"); if (strcmp(s, "T1") == 0) n = T1; if (strcmp(s, "T2") == 0) n = T2; if (strcmp(s, "T3") == 0) n = T3; + if (strcmp(s, "T4") == 0) n = T4; + if (strcmp(s, "T5") == 0) n = T5; form_destruir(form); @@ -721,6 +777,19 @@ void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *ta if ((*tam_reg) != -1) (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro"); form_destruir(form); + break; + case T4: + case T5: + form = form_crear(win); + form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, ""); + is_ok = 0; + do { + form_set_valor(form, "Tamaño de bloque", ""); + form_ejecutar(form, 1,1); + if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1; + } while (!is_ok); + (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque"); + form_destruir(form); } werase(win); wrefresh(win); @@ -881,3 +950,4 @@ char *preguntar_file() form_destruir(form); return t; } +