]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* Ver Registros muestra el primer registro de articulos en pantalla (con scrol!...
authorRicardo Markiewicz <gazer.arg@gmail.com>
Tue, 13 Apr 2004 15:41:30 +0000 (15:41 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Tue, 13 Apr 2004 15:41:30 +0000 (15:41 +0000)
   Los campos numericos los transforma en string y los pone entre ( y ) y ademas
 pone el caracter | como separador de campos.

emufs_gui/registros.c
emufs_gui/registros.h

index 778f52dc429e92f68e6a50bd6788b07e2d22e6d2..0a9324f6cd2a268665a4661c02317717a895c4ac 100644 (file)
@@ -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;
+}
+
index 04ea88f63d972814af12db9050cd5b331a9abacf..df31f8d360aa4e0d6b4034eca61d24066a8a675f 100644 (file)
@@ -2,8 +2,11 @@
 #ifndef _REGISTROS_H_
 #define _REGISTROS_H_
 
+#include <string.h>
 #include <curses.h>
 
+#include "emufs.h"
+
 void ver_registros(WINDOW *padre, int w, int h);
 
 #endif