]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* mas detalles
authorRicardo Markiewicz <gazer.arg@gmail.com>
Wed, 14 Apr 2004 21:12:10 +0000 (21:12 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Wed, 14 Apr 2004 21:12:10 +0000 (21:12 +0000)
emufs_gui/registros.c

index 09cd7f909f612e270ef72cde1a514f72e6fa4066..9f816a12273f0d9884206b0643d2bdfdac588d90 100644 (file)
@@ -7,10 +7,45 @@
 static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
 static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
 
 static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
 static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
 
-#define ACT 0
-#define ANT 1
-#define SIG 2
-
+void mostrar_info(WINDOW *padre, int h, int offset_alto)
+{
+       /* Info de teclas */
+       wattron(padre, A_BOLD);
+       wattron(padre, COLOR_PAIR(COLOR_RED));
+       mvwaddstr(padre, h-offset_alto+1, 5, "Teclas :");
+       wattroff(padre, A_BOLD);
+       wattroff(padre, COLOR_PAIR(COLOR_RED));
+       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 ");
+       
+       /* Info de leyenda */
+       wattron(padre, A_BOLD);
+       wattron(padre, COLOR_PAIR(COLOR_RED));
+       mvwaddstr(padre, h-offset_alto+1, 45, "Leyenda :");
+       wattroff(padre, A_BOLD);
+       wattroff(padre, COLOR_PAIR(COLOR_RED));
+       mvwaddstr(padre, h-offset_alto+2, 48, "  |   = Separador de campo");
+       mvwaddstr(padre, h-offset_alto+3, 48, "[XXX] = Campo numerico");
+       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");
+}
+       
 void ver_registros(WINDOW *padre, int w, int h)
 {
        /* Ventanas donde mostrar las cosas */
 void ver_registros(WINDOW *padre, int w, int h)
 {
        /* Ventanas donde mostrar las cosas */
@@ -18,7 +53,7 @@ void ver_registros(WINDOW *padre, int w, int h)
        WINDOW *actual[2];
        EMUFS_REG_SIZE size;
        int scroll, actual_ancho;
        WINDOW *actual[2];
        EMUFS_REG_SIZE size;
        int scroll, actual_ancho;
-       int max_scroll, c;
+       int max_scroll, c, offset_alto;
        EMUFS_REG_ID ant_indice, total_indice; /* Indice de registro que tengo en ANT */
        char *data; /* Registros a mostrar en pantalla */
        char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
        EMUFS_REG_ID ant_indice, total_indice; /* Indice de registro que tengo en ANT */
        char *data; /* Registros a mostrar en pantalla */
        char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
@@ -41,49 +76,18 @@ void ver_registros(WINDOW *padre, int w, int h)
        data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
 
 
        data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
 
 
-       max_scroll = size / (w-4) - (h-8);
+       offset_alto = 8;
+       max_scroll = size / (w-4) - (h-offset_alto-2);
        if (max_scroll < 0) max_scroll = 0;
 
        if (max_scroll < 0) max_scroll = 0;
 
-       actual[0] = derwin(padre, h-6, w-2, 1, 1);
+       actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
        actual_ancho = w-4;
        actual_ancho = w-4;
-       actual[1] = derwin(actual[0], h-8, w-4, 1, 1);
+       actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
        box(actual[0], 0, 0);
 
        curs_set(0);
 
        box(actual[0], 0, 0);
 
        curs_set(0);
 
-       /* Info de teclas */
-       wattron(padre, A_BOLD);
-       wattron(padre, COLOR_PAIR(COLOR_RED));
-       mvwaddstr(padre, h-5, 5, "Teclas :");
-       wattroff(padre, A_BOLD);
-       wattroff(padre, COLOR_PAIR(COLOR_RED));
-       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, "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);
-       wattron(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-3, 38, "[XXX] = Campo numerico");
-       mvwaddstr(padre, h-2, 38, "(XXX) = ID de registro");
+       mostrar_info(padre, h, actual_ancho);
        
        mvwaddnstr(actual[1], 0, 0, data, pos_actual);
        wattron(actual[1], A_BOLD);
        
        mvwaddnstr(actual[1], 0, 0, data, pos_actual);
        wattron(actual[1], A_BOLD);
@@ -99,7 +103,8 @@ void ver_registros(WINDOW *padre, int w, int h)
                switch (c) {
                        case 'e':
                        case 'E':
                switch (c) {
                        case 'e':
                        case 'E':
-                               fp->borrar_registro(fp, emufs_idx_get_id_at(fp, ant_indice));
+                               if (ant_indice != EMUFS_NOT_FOUND)
+                                       fp->borrar_registro(fp, emufs_idx_get_id_at(fp, ant_indice));
        
                                total_indice = emufs_idx_get_count(fp);
                                if (ant_indice >= total_indice) {
        
                                total_indice = emufs_idx_get_count(fp);
                                if (ant_indice >= total_indice) {
@@ -119,14 +124,7 @@ void ver_registros(WINDOW *padre, int w, int h)
                                total_indice = emufs_idx_get_count(fp);
 
                                /* Tengo que re-pintar algunas cosas */
                                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");
+                               mostrar_info(padre, h, actual_ancho);
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;                  
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;                  
@@ -141,14 +139,7 @@ void ver_registros(WINDOW *padre, int w, int h)
                                data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
 
                                /* Tengo que re-pintar algunas cosas */
                                data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
 
                                /* 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");
+                               mostrar_info(padre, h, actual_ancho);
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;
                                box(actual[0], 0, 0);
                                wrefresh(actual[0]);
                        break;
@@ -263,7 +254,7 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
        free(ptr);
        (*tmp1) = '\0';
        (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
        free(ptr);
        (*tmp1) = '\0';
        (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
-       (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+10;
+       (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
        return salida;
 }
 
        return salida;
 }