]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/registros.c
* Se agrega un caracter (el .) para denotar el espacio libre en el registro
[z.facultad/75.06/emufs.git] / emufs_gui / registros.c
index ab6b5bccf20ebfd3570511061b547b0c2b83ce90..e6f81fc0e47f70959a34f8584a5bd2b2cc0e6bd2 100644 (file)
@@ -4,7 +4,7 @@
 #include "articulos.h"
 
 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
 #include "articulos.h"
 
 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
-static char *procesar_registro_articulo(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual);
+static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual);
 
 #define ACT 0
 #define ANT 1
 
 #define ACT 0
 #define ANT 1
@@ -21,18 +21,18 @@ void ver_registros(WINDOW *padre, int w, int h)
        char *data; /* Registros a mostrar en pantalla */
        char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
        EMUFS *fp;
        char *data; /* Registros a mostrar en pantalla */
        char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
        EMUFS *fp;
-       int pos_actual, ancho_registro;
+       int pos_actual, ancho_registro, offset, pos;
        fp = emufs_abrir("articulos");
 
        total_indice = emufs_idx_get_count(fp);
 
        ant_indice = 1;
        data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
        fp = emufs_abrir("articulos");
 
        total_indice = emufs_idx_get_count(fp);
 
        ant_indice = 1;
        data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
-       data = procesar_registro_articulo(fp, data, &size, &pos_actual);
+       data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
 
        ancho_registro = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
 
 
        ancho_registro = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
 
-       max_scroll = size / (w/3-2) - (h-8);
+       max_scroll = size / (w-4) - (h-8);
        if (max_scroll < 0) max_scroll = 0;
 
        actual[0] = derwin(padre, h-6, w-2, 1, 1);
        if (max_scroll < 0) max_scroll = 0;
 
        actual[0] = derwin(padre, h-6, w-2, 1, 1);
@@ -51,7 +51,20 @@ void ver_registros(WINDOW *padre, int w, int h)
        mvwaddstr(padre, h-4, 8, "Salir = ENTER");
        mvwaddstr(padre, h-3, 8, "Scroll = A/Z");
        mvwaddstr(padre, h-2, 8, "Seleccionar registros = K/L");
        mvwaddstr(padre, h-4, 8, "Salir = ENTER");
        mvwaddstr(padre, h-3, 8, "Scroll = A/Z");
        mvwaddstr(padre, h-2, 8, "Seleccionar registros = K/L");
-       mvwaddstr(padre, h-1, 8, "Editar Actual = e");
+       mvwaddstr(padre, h-1, 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 ");
        
        /* Info de leyenda */
        wattron(padre, A_BOLD);
        
        /* Info de leyenda */
        wattron(padre, A_BOLD);
@@ -59,7 +72,7 @@ void ver_registros(WINDOW *padre, int w, int h)
        mvwaddstr(padre, h-5, 35, "Leyenda :");
        wattroff(padre, A_BOLD);
        wattroff(padre, COLOR_PAIR(COLOR_RED));
        mvwaddstr(padre, h-5, 35, "Leyenda :");
        wattroff(padre, A_BOLD);
        wattroff(padre, COLOR_PAIR(COLOR_RED));
-       mvwaddstr(padre, h-4, 38, "| = Separador de campo");
+       mvwaddstr(padre, h-4, 38, "| = Separador de campo   . = Libre");
        mvwaddstr(padre, h-3, 38, "[XXX] = Campo numerico");
        mvwaddstr(padre, h-2, 38, "(XXX) = ID de registro");
        
        mvwaddstr(padre, h-3, 38, "[XXX] = Campo numerico");
        mvwaddstr(padre, h-2, 38, "(XXX) = ID de registro");
        
@@ -75,14 +88,48 @@ void ver_registros(WINDOW *padre, int w, int h)
        scroll = 0;
        while ((c=getch()) != 13) {
                switch (c) {
        scroll = 0;
        while ((c=getch()) != 13) {
                switch (c) {
-                       case 'e': /* Quiero editar !!! */
+                       case 'e':
+                       case 'E':
+                               fp->borrar_registro(fp, emufs_idx_get_id_at(fp, ant_indice));
+       
+                               total_indice = emufs_idx_get_count(fp);
+                               if (ant_indice >= total_indice) {
+                                       ant_indice = total_indice - 1;
+                               }
+                               
+                               data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
+                               data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
+                       break;
+                       case 'g':
+                       case 'G':
+                               art_agregar(NULL);
+                               free(data);
+                               data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
+                               data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
+       
+                               total_indice = emufs_idx_get_count(fp);
+
+                               /* Tengo que re-pintar algunas cosas */
+                               wattron(padre, A_BOLD);
+                               wattron(padre, COLOR_PAIR(COLOR_RED));
+                               mvwaddstr(padre, h-5, 5, "Teclas :");
+                               mvwaddstr(padre, h-5, 35, "Leyenda :");
+                               wattroff(padre, A_BOLD);
+                               wattroff(padre, COLOR_PAIR(COLOR_RED));
+                               mvwaddstr(padre, h-4, 38, "| = Separador de campo   . = Libre");
+                               mvwaddstr(padre, h-4, 8, "Salir = ENTER");
+                               box(actual[0], 0, 0);
+                               wrefresh(actual[0]);
+                       break;                  
+                       case 'M':
+                       case 'm': /* Quiero editar !!! */
                                sprintf(codigo, "%lu", emufs_idx_get_id_at(fp, ant_indice));
                                art_modificar(codigo);  
                                /* Vuelvo a cargar el articulo actual */
                                
                                free(data);
                                data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
                                sprintf(codigo, "%lu", emufs_idx_get_id_at(fp, ant_indice));
                                art_modificar(codigo);  
                                /* Vuelvo a cargar el articulo actual */
                                
                                free(data);
                                data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
-                               data = procesar_registro_articulo(fp, data, &size, &pos_actual);
+                               data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
 
                                /* Tengo que re-pintar algunas cosas */
                                wattron(padre, A_BOLD);
 
                                /* Tengo que re-pintar algunas cosas */
                                wattron(padre, A_BOLD);
@@ -91,6 +138,8 @@ void ver_registros(WINDOW *padre, int w, int h)
                                mvwaddstr(padre, h-5, 35, "Leyenda :");
                                wattroff(padre, A_BOLD);
                                wattroff(padre, COLOR_PAIR(COLOR_RED));
                                mvwaddstr(padre, h-5, 35, "Leyenda :");
                                wattroff(padre, A_BOLD);
                                wattroff(padre, COLOR_PAIR(COLOR_RED));
+                               mvwaddstr(padre, h-4, 38, "| = Separador de campo   . = Libre");
+                               mvwaddstr(padre, h-4, 8, "Salir = ENTER");
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;
@@ -101,13 +150,14 @@ void ver_registros(WINDOW *padre, int w, int h)
                        case 'z': /* Scroll */
                                scroll++;
                                if (scroll > max_scroll) scroll = max_scroll;
                        case 'z': /* Scroll */
                                scroll++;
                                if (scroll > max_scroll) scroll = max_scroll;
+                       break;
                        case 'l':
                                if (ant_indice < total_indice) {
                                        ant_indice++;
                                        if (ant_indice >= total_indice) ant_indice = total_indice-1;
                                        if (data) free(data);
                                        data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
                        case 'l':
                                if (ant_indice < total_indice) {
                                        ant_indice++;
                                        if (ant_indice >= total_indice) ant_indice = total_indice-1;
                                        if (data) free(data);
                                        data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
-                                       data = procesar_registro_articulo(fp, data, &size, &pos_actual);
+                                       data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
                                }
                        break;
                        case 'k':
                                }
                        break;
                        case 'k':
@@ -116,7 +166,7 @@ void ver_registros(WINDOW *padre, int w, int h)
                                        if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0;
                                        if (data) free(data);
                                        data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
                                        if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0;
                                        if (data) free(data);
                                        data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
-                                       data = procesar_registro_articulo(fp, data, &size, &pos_actual);
+                                       data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
                                }
 
                }
                                }
 
                }
@@ -125,11 +175,15 @@ void ver_registros(WINDOW *padre, int w, int h)
 
                /* Imprimo los registros */
                if (data) {
 
                /* Imprimo los registros */
                if (data) {
-                       mvwaddnstr(actual[1], 0, 0, data, pos_actual);
+                       offset = scroll*actual_ancho;
+                       pos = pos_actual - offset;
+                       mvwaddnstr(actual[1], 0, 0, data+offset, pos);
+                       offset += pos;
                        wattron(actual[1], A_BOLD);
                        wattron(actual[1], A_BOLD);
-                       waddnstr(actual[1], data+pos_actual, ancho_registro);
+                       waddnstr(actual[1], data+offset, ancho_registro);
                        wattroff(actual[1], A_BOLD);
                        wattroff(actual[1], A_BOLD);
-                       waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
+                       offset += ancho_registro;
+                       waddnstr(actual[1], data+offset, size-offset);
                }
 
                wrefresh(actual[1]);
                }
 
                wrefresh(actual[1]);
@@ -141,9 +195,9 @@ void ver_registros(WINDOW *padre, int w, int h)
        curs_set(1);
 }
 
        curs_set(1);
 }
 
-static char *procesar_registro_articulo(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual)
+char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual)
 {
 {
-       char *tmp, *salida, *tmp1, pos_actualizada;
+       char *tmp, *salida, *tmp1, pos_actualizada, ant;
        int cant_header, i=0, j;
        if (ptr == NULL) return NULL;
 
        int cant_header, i=0, j;
        if (ptr == NULL) return NULL;
 
@@ -163,6 +217,9 @@ static char *procesar_registro_articulo(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *s
        tmp1 = salida;
        pos_actualizada = 0;
        while (i<cant_header) {
        tmp1 = salida;
        pos_actualizada = 0;
        while (i<cant_header) {
+               /* Verifico la pos_actual para el resaltado, asi queda coherente 
+                * en el cambio de formato
+                */
                if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
                        (*pos_actual) = tmp1-salida;
                        pos_actualizada = 1;
                if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
                        (*pos_actual) = tmp1-salida;
                        pos_actualizada = 1;
@@ -178,10 +235,14 @@ static char *procesar_registro_articulo(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *s
                j = 0;
                while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
                        if (*tmp == '\0') {
                j = 0;
                while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
                        if (*tmp == '\0') {
-                               (*tmp1) = '|';
+                               if (ant == (*tmp))
+                                       (*tmp1) = '.';
+                               else
+                                       (*tmp1) = '|';
                        } else {
                                (*tmp1) = (*tmp);
                        }
                        } else {
                                (*tmp1) = (*tmp);
                        }
+                       ant = (*tmp);
                        tmp++;
                        tmp1++;
                        j++;
                        tmp++;
                        tmp1++;
                        j++;