]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - gui/gui.c
* Mas Doc de la API
[z.facultad/75.06/emufs.git] / gui / gui.c
index 8d1da943f5ad836ecd7d7386bd05cc3efa5157bf..06aee1c99811157ed91fcc6cfb2ea769b4cea8ee 100644 (file)
--- a/gui/gui.c
+++ b/gui/gui.c
@@ -9,28 +9,30 @@
 
 static void finish(int sig);
                                
-/** Simula un TextField
- *
- *  \param win Ventana
- *  \param x Posicion en X
- *  \param y Posicion en Y
- *  \param w Cantidad maxima de caracteres.
- *  \param s Destino donde guardar
- */
-
 int main(int argc, char *argv[])
 {
        /* initialize your non-curses data structures here */
        WINDOW *mainwin;
        t_Form *form;
 
+       /* Inicio Curses */
        signal(SIGINT, finish);      /* arrange interrupts to terminate */
        mainwin = initscr();      /* initialize the curses library */
+       
+       /* Verifico un tamaño minimo de consola */
+       if ((LINES < 25) || (COLS < 80)) {
+               delwin(mainwin);
+               endwin();
+               printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
+               return 1;
+       }
+
        keypad(stdscr, TRUE);  /* enable keyboard mapping */
        nonl();         /* tell curses not to do NL->CR/NL on output */
        cbreak();       /* take input chars one at a time, no wait for \n */
        noecho();       /* don't echo input */
 
+       /* Si se soporta color, los inicializo */
        if (has_colors()) {
                start_color();
                /* Simple color assignment, often all we need. */
@@ -51,35 +53,33 @@ int main(int argc, char *argv[])
 
        /* Creo el formulario */
        form = form_crear(mainwin);
-       form_agregar_widget(form, INPUT, "Nombre", 15);
-       form_agregar_widget(form, INPUT, "Padron", 5);
-       form_agregar_widget(form, INPUT, "Datos", 30);
+       form_agregar_widget(form, INPUT, "Nombre", 15, "");
+       form_agregar_widget(form, RADIO, "Voto", 3, "Si,No,No Corresponde");
+       form_agregar_widget(form, INPUT, "Datos", 30, "");
 
        form_ejecutar(form, 10, 10);
 
-
        delwin(mainwin);
        endwin();
        
        /* Imprimo los datos! */
        printf("Datos Ingresados : \n");
        printf("\tNombre : %s\n", form_obtener_valor(form, "Nombre"));
-       printf("\tPadron : %s\n", form_obtener_valor(form, "Padron"));
+       printf("\tVoto   : %s\n", form_obtener_valor(form, "Voto"));
        printf("\tDatos  : %s\n", form_obtener_valor(form, "Datos"));
        
        /* Libero el formulario */
        form_destruir(form);
+       
+       MD_Listar();
        return 0;
 }
 
-
-
 static void finish(int sig)
 {
        endwin();
 
        /* do your non-curses wrapup here */
-
        exit(0);
 }