From: Ricardo Markiewicz Date: Tue, 13 Apr 2004 15:41:30 +0000 (+0000) Subject: * Ver Registros muestra el primer registro de articulos en pantalla (con scrol!... X-Git-Tag: svn_import_r684~502 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/087bc4de9c787d31ba4711af77af8620c4eae004?ds=sidebyside;hp=400a65517e77878e7ba0e2c13f9ba33bbc18725b * Ver Registros muestra el primer registro de articulos en pantalla (con scrol!! Ojo, no valido!!). Los campos numericos los transforma en string y los pone entre ( y ) y ademas pone el caracter | como separador de campos. --- diff --git a/emufs_gui/registros.c b/emufs_gui/registros.c index 778f52d..0a9324f 100644 --- a/emufs_gui/registros.c +++ b/emufs_gui/registros.c @@ -1,53 +1,86 @@ #include "registros.h" +/* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */ +static char *procesar_registro(char *ptr, size_t size); + void ver_registros(WINDOW *padre, int w, int h) { /* Ventanas donde mostrar las cosas */ - WINDOW *actual, *ant, *sig; - int c; - char *reg = "asdlñnfajfnsadlkñfnasdlfñnasdlfasnñas oin2o4nr hf hfh 1ehjr 093r 3908rhj 0e98fj 2 0rj 9fj 2 rh 0hf 20rh 0 fh 230rh 8y f128n r`0vnew 80fh 4+9vj ¡9023j f'49j ¡09yuf 3'vkj'9 f294ug 0r \ - 13i qe \ - hjwgi`rg`hjg0934jgt 39gu ¡q9gj 3¡9gu ¡q09gj ¡95gj hj9g 35+9'gj 0¡39g 5¡09 3q0¡h j1111111111111111111111111111111111111111111111111\ - 2222222222222222222222222222222222222222222222222222222222222222222222222222222222\ - 333333333333333333333333333333333333333333333333333333333333333333333333333333333333\ - 44444444444444444444444444444444444444444444444444444444444444444444444444444444444444\ - 555555555555555555555555555555555555555555555555555555555555555555555555555555555555\ - 66666666666666666666666666666666666666666666666666666666666"; - - actual = derwin(padre, h-2, w/3, 1, w/3); - box(actual, 0, 0); - ant = derwin(padre, h-2, w/3, 1, 0); - box(ant, 0, 0); - sig = derwin(padre, h-2, w/3, 1, w/3*2); - box(sig, 0, 0); - - wattron(actual, A_BOLD); - mvwaddstr(actual, 1, 1, reg); - wattroff(actual, A_BOLD); + WINDOW *actual[2], *ant[2], *sig[2]; + int c, scroll, actual_ancho; + char *data; + EMUFS *fp; + fp = emufs_abrir("articulos"); + + data = (char *)fp->leer_registro(fp, 0, &c, &scroll); + + data = procesar_registro(data, c); + + actual[0] = derwin(padre, h-2, w/3, 1, w/3); + actual_ancho = w/3-2; + actual[1] = derwin(actual[0], h-4, w/3-2, 1, 1); + box(actual[0], 0, 0); + ant[0] = derwin(padre, h-2, w/3, 1, 0); + box(ant[0], 0, 0); + sig[0] = derwin(padre, h-2, w/3, 1, w/3*2); + box(sig[0], 0, 0); + + wattron(actual[1], A_BOLD); + mvwaddstr(actual[1], 0, 0, data); + wattroff(actual[1], A_BOLD); - wrefresh(sig); - wrefresh(ant); - wrefresh(actual); + wrefresh(sig[0]); + wrefresh(ant[0]); + wrefresh(actual[0]); + wrefresh(actual[1]); wrefresh(padre); - scrollok(actual, 1); + scroll = 0; while ((c=getch()) != 13) { switch (c) { case 'a': - wscrl(actual, -1); + scroll--; + if (scroll < 0) scroll = 0; break; case 'z': - wscrl(actual, 1); + scroll++; } - wrefresh(actual); + werase(actual[1]); + wattron(actual[1], A_BOLD); + mvwaddstr(actual[1], 0, 0, data+actual_ancho*scroll); + wattroff(actual[1], A_BOLD); + wrefresh(actual[1]); + wrefresh(actual[0]); wrefresh(padre); } - werase(actual); - delwin(actual); - werase(sig); - delwin(sig); - werase(ant); - delwin(ant); + werase(actual[1]); + delwin(actual[1]); + werase(actual[0]); + delwin(actual[0]); + werase(sig[0]); + delwin(sig[0]); + werase(ant[0]); + delwin(ant[0]); wrefresh(padre); } +static char *procesar_registro(char *ptr, size_t size) +{ + char *tmp, *salida, *tmp1; + salida = (char *)malloc(size-sizeof(unsigned int)+10+1); + sprintf(salida, "(%08d)", *((unsigned int *)ptr)); + tmp1 = salida+10; + tmp = ptr+sizeof(unsigned int); + while (tmp < (ptr+size)) { + if (*tmp == '\0') { + (*tmp1) = '|'; + } else { + (*tmp1) = (*tmp); + } + tmp++; + tmp1++; + } + free(ptr); + return salida; +} + diff --git a/emufs_gui/registros.h b/emufs_gui/registros.h index 04ea88f..df31f8d 100644 --- a/emufs_gui/registros.h +++ b/emufs_gui/registros.h @@ -2,8 +2,11 @@ #ifndef _REGISTROS_H_ #define _REGISTROS_H_ +#include #include +#include "emufs.h" + void ver_registros(WINDOW *padre, int w, int h); #endif