]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/registros.c
* Se hace una reestructuracion de algunas funciones para facilitar la edicion
[z.facultad/75.06/emufs.git] / emufs_gui / registros.c
index bb8194cc3bfbe484724cfa73813b656133ae6b7c..b146a5f62a844193baf88ad7f89b68bc636d9e02 100644 (file)
@@ -1,6 +1,7 @@
 
 #include "registros.h"
 #include "idx.h"
+#include "articulos.h"
 
 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
 static char *procesar_registro_articulo(char *ptr, EMUFS_REG_SIZE *size);
@@ -17,7 +18,8 @@ void ver_registros(WINDOW *padre, int w, int h)
        int scroll, actual_ancho;
        int max_scroll, c;
        EMUFS_REG_ID ant_indice, total_indice; /* Indice de registro que tengo en ANT */
-       char *data[3];
+       char *data[3]; /* Registros a mostrar en pantalla */
+       char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
        EMUFS *fp;
        int error;
        fp = emufs_abrir("articulos");
@@ -34,18 +36,18 @@ void ver_registros(WINDOW *padre, int w, int h)
        data[SIG] = (char *)fp->leer_registro(fp, ant_indice+2, &size, &error);
        data[SIG] = procesar_registro_articulo(data[SIG], &size);
 
-       max_scroll = size / (w/3-2) - (h-7);
+       max_scroll = size / (w/3-2) - (h-8);
        if (max_scroll < 0) max_scroll = 0;
 
-       actual[0] = derwin(padre, h-5, w/3, 1, w/3);
+       actual[0] = derwin(padre, h-6, w/3, 1, w/3);
        actual_ancho = w/3-2;
-       actual[1] = derwin(actual[0], h-7, w/3-2, 1, 1);
+       actual[1] = derwin(actual[0], h-8, w/3-2, 1, 1);
        box(actual[0], 0, 0);
-       ant[0] = derwin(padre, h-5, w/3, 1, 0);
-       ant[1] = derwin(ant[0], h-7, w/3-2, 1, 1);
+       ant[0] = derwin(padre, h-6, w/3, 1, 0);
+       ant[1] = derwin(ant[0], h-8, w/3-2, 1, 1);
        box(ant[0], 0, 0);
-       sig[0] = derwin(padre, h-5, w/3, 1, w/3*2);
-       sig[1] = derwin(sig[0], h-7, w/3-2, 1, 1);
+       sig[0] = derwin(padre, h-6, w/3, 1, w/3*2);
+       sig[1] = derwin(sig[0], h-8, w/3-2, 1, 1);
        box(sig[0], 0, 0);
 
        curs_set(0);
@@ -57,22 +59,23 @@ void ver_registros(WINDOW *padre, int w, int h)
        /* Info de teclas */
        wattron(padre, A_BOLD);
        wattron(padre, COLOR_PAIR(COLOR_RED));
-       mvwaddstr(padre, h-4, 5, "Teclas :");
+       mvwaddstr(padre, h-5, 5, "Teclas :");
        wattroff(padre, A_BOLD);
        wattroff(padre, COLOR_PAIR(COLOR_RED));
-       mvwaddstr(padre, h-3, 8, "Salir = ENTER");
-       mvwaddstr(padre, h-2, 8, "Scroll = A/Z");
-       mvwaddstr(padre, h-1, 8, "Mover registros = K/L");
+       mvwaddstr(padre, h-4, 8, "Salir = ENTER");
+       mvwaddstr(padre, h-3, 8, "Scroll = A/Z");
+       mvwaddstr(padre, h-2, 8, "Mover registros = K/L");
+       mvwaddstr(padre, h-1, 8, "Editar Actual = e");
        
        /* Info de leyenda */
        wattron(padre, A_BOLD);
        wattron(padre, COLOR_PAIR(COLOR_RED));
-       mvwaddstr(padre, h-4, 35, "Leyenda :");
+       mvwaddstr(padre, h-5, 35, "Leyenda :");
        wattroff(padre, A_BOLD);
        wattroff(padre, COLOR_PAIR(COLOR_RED));
-       mvwaddstr(padre, h-3, 38, "| = Separador de campos");
-       mvwaddstr(padre, h-2, 38, "(XXX) = Campo numerico");
-       mvwaddstr(padre, h-1, 38, "* = Relleno en registros fijos");
+       mvwaddstr(padre, h-4, 38, "| = Separador de campos");
+       mvwaddstr(padre, h-3, 38, "(XXX) = Campo numerico");
+       mvwaddstr(padre, h-2, 38, "* = Relleno en registros fijos");
        
        
        wattron(actual[1], A_BOLD);
@@ -86,11 +89,31 @@ void ver_registros(WINDOW *padre, int w, int h)
        scroll = 0;
        while ((c=getch()) != 13) {
                switch (c) {
-                       case 'a':
+                       case 'e': /* Quiero editar !!! */
+                               sprintf(codigo, "%lu", ant_indice+1);
+                               fprintf(stderr, "%s", codigo);
+                               art_modificar(codigo);  
+                               /* Vuelvo a cargar el articulo actual */
+                               free(data[ACT]);
+                               data[ACT] = (char *)fp->leer_registro(fp, ant_indice+1, &size, &error);
+                               data[ACT] = procesar_registro_articulo(data[ACT], &size);
+
+                               /* Tengo que re-pintar algunas cosas */
+                               box(actual[0], 0, 0);
+                               box(sig[0], 0, 0);
+                               box(ant[0], 0, 0);
+                               mvwaddstr(actual[0], 0, w/6-3, "Actual");
+                               mvwaddstr(ant[0], 0, w/6-4, "Anterior");
+                               mvwaddstr(sig[0], 0, w/6-4, "Siguiente");
+                               wrefresh(actual[0]);
+                               wrefresh(sig[0]);
+                               wrefresh(ant[0]);
+                       break;
+                       case 'a': /* Scroll */
                                scroll--;
                                if (scroll < 0) scroll = 0;
                        break;
-                       case 'z':
+                       case 'z': /* Scroll */
                                scroll++;
                                if (scroll > max_scroll) scroll = max_scroll;
                        case 'k': /* Desplano los registros a derecha! */