X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/7381fcea0e5a5c890132397fee5bc7d0627d504c..8ecf90cd26aae1fb4a34561b497cbdc2f6a1b671:/emufs_gui/viewer.c diff --git a/emufs_gui/viewer.c b/emufs_gui/viewer.c index 1b4c541..c181b9e 100644 --- a/emufs_gui/viewer.c +++ b/emufs_gui/viewer.c @@ -14,7 +14,7 @@ static char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SI static int preguntar_id(WINDOW *win, EMUFS *fp); -void mostrar_info(WINDOW *padre, int h, int offset_alto) +void mostrar_info(WINDOW *padre, int h, int offset_alto, int opt) { /* Info de teclas */ wattron(padre, A_BOLD); @@ -25,20 +25,22 @@ void mostrar_info(WINDOW *padre, int h, int offset_alto) mvwaddstr(padre, h-offset_alto+2, 8, "Salir = ENTER"); mvwaddstr(padre, h-offset_alto+3, 8, "Scroll = A/Z"); mvwaddstr(padre, h-offset_alto+4, 8, "Seleccionar registros = K/L"); - mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: "); - waddstr(padre, "A"); - wattron(padre, A_BOLD); - waddch(padre, 'g'); - wattroff(padre, A_BOLD); - waddstr(padre, "regar "); - wattron(padre, A_BOLD); - waddstr(padre, "M"); - wattroff(padre, A_BOLD); - waddstr(padre, "ofidicar "); - wattron(padre, A_BOLD); - waddstr(padre, "E"); - wattroff(padre, A_BOLD); - waddstr(padre, "liminar "); + if (opt) { + mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: "); + waddstr(padre, "A"); + wattron(padre, A_BOLD); + waddch(padre, 'g'); + wattroff(padre, A_BOLD); + waddstr(padre, "regar "); + wattron(padre, A_BOLD); + waddstr(padre, "M"); + wattroff(padre, A_BOLD); + waddstr(padre, "ofidicar "); + wattron(padre, A_BOLD); + waddstr(padre, "E"); + wattroff(padre, A_BOLD); + waddstr(padre, "liminar "); + } mvwaddstr(padre, h-offset_alto+6, 8, "Buscar ID : B"); /* Info de leyenda */ @@ -52,7 +54,6 @@ void mostrar_info(WINDOW *padre, int h, int offset_alto) mvwaddstr(padre, h-offset_alto+4, 48, "(XXX) = ID de registro"); mvwaddstr(padre, h-offset_alto+5, 48, "{XXX} = Tam. de registro"); mvwaddstr(padre, h-offset_alto+6, 48, " . = Esp. Libre"); - mvwaddstr(padre, h-offset_alto+7, 48, " < > = Separador Bloques"); } char *juntar_memoria(char *s1, char *s2, char *s3, int size1, int size2, int size3) @@ -165,7 +166,7 @@ void ver_bloques(WINDOW *padre, int w, int h, int cual) curs_set(0); - mostrar_info(padre, h, offset_alto); + mostrar_info(padre, h, offset_alto, 0); mvwaddnstr(actual[1], 0, 0, data, pos_actual); wattron(actual[1], A_BOLD); @@ -183,7 +184,9 @@ void ver_bloques(WINDOW *padre, int w, int h, int cual) case 'B': dlg = newwin(4, 50, h/2-2, w/2-25); box(dlg, 0, 0); - preguntar_id(dlg, fp); + indices_actual = preguntar_id(dlg, fp); + if (indices_actual < 0) indices_actual = 0; + if (indices_actual > indices_total) indices_actual = indices_total-1; werase(dlg); wrefresh(dlg); delwin(dlg); @@ -318,7 +321,7 @@ void ver_registros(WINDOW *padre, int w, int h, int cual) curs_set(0); - mostrar_info(padre, h, offset_alto); + mostrar_info(padre, h, offset_alto, 1); mvwaddnstr(actual[1], 0, 0, data, pos_actual); wattron(actual[1], A_BOLD); @@ -371,7 +374,7 @@ void ver_registros(WINDOW *padre, int w, int h, int cual) indices = emufs_idx_get(fp, &indices_total); /* Tengo que re-pintar algunas cosas */ - mostrar_info(padre, h, offset_alto); + mostrar_info(padre, h, offset_alto, 1); box(actual[0], 0, 0); wrefresh(actual[0]); break; @@ -389,7 +392,7 @@ void ver_registros(WINDOW *padre, int w, int h, int cual) data = procesar(fp, data, &size, &pos_actual, &ancho_registro); /* Tengo que re-pintar algunas cosas */ - mostrar_info(padre, h, offset_alto); + mostrar_info(padre, h, offset_alto, 1); box(actual[0], 0, 0); wrefresh(actual[0]); break; @@ -616,28 +619,16 @@ char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si int preguntar_id(WINDOW *win, EMUFS *fp) { - int n=-1, j=0; + int n=-1; t_Form *form = form_crear(win); form_agregar_widget(form, INPUT, "ID a buscar", 8, ""); do { - if (j != 0) { - curs_set(0); - wattron(win, COLOR_PAIR(COLOR_YELLOW)); - wattron(win, A_BOLD); - mvwaddstr(win, 2, 1, "Registro no encontrado!!"); - wattroff(win, A_BOLD); - wattroff(win, COLOR_PAIR(COLOR_YELLOW)); - wrefresh(win); - getch(); - werase(win); - box(win, 0, 0); - } + form_set_valor(form, "ID a buscar", ""); form_ejecutar(form, 1,1); n = form_obtener_valor_int(form, "ID a buscar"); - j = 1; - } while (emufs_idx_existe_id(fp, n) != 0); + } while (n>0); form_destruir(form); return n;