]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/gui.c
* Faltaban un par de cosas y ahora el GUI recupera con exito desde el archivo.
[z.facultad/75.06/emufs.git] / emufs_gui / gui.c
index 95c55bfeffb71f56b21109e3853033c224d105fe..f6c2ece188f74e8847a3b5d4dcfc5b4f7434bba7 100644 (file)
@@ -8,6 +8,7 @@
 
 #include "form.h"
 #include "articulos.h"
+#include "emufs.h"
 
 #define CTRLD 4
 
@@ -24,23 +25,20 @@ int main(int argc, char *argv[])
                return 1;
        }
 
-       /* Inicio Curses */
-       signal(SIGINT, finish);      /* arrange interrupts to terminate */
-       initscr();      /* initialize the curses library */
-       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 */
-       
-       /* Verifico un tamaño minimo de consola */
-       if ((LINES < 25) || (COLS < 80)) {
-               endwin();
-               printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
-               return 1;
-       }
+/*     art_cargar(argv[1]);
 
-       art_cargar(argv[1]);
+       art_obtener(NULL, "438");
 
+       art_liberar(NULL);
+       return 1;
+*/
+       /* Inicio Curses */
+       signal(SIGINT, finish);
+       initscr();
+       keypad(stdscr, TRUE);
+       nonl();
+       cbreak();
+       noecho();
        /* Si se soporta color, los inicializo */
        if (has_colors()) {
                start_color();
@@ -55,6 +53,15 @@ int main(int argc, char *argv[])
                init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
        }
        
+       /* Verifico un tamaño minimo de consola */
+       if ((LINES < 25) || (COLS < 80)) {
+               endwin();
+               printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
+               return 1;
+       }
+
+       art_cargar(argv[1]);
+       
        /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
        box(stdscr, ACS_VLINE, ACS_HLINE);
        /* Ventana, Y, X, Texto */
@@ -64,6 +71,7 @@ int main(int argc, char *argv[])
        attroff(COLOR_PAIR(2));
        wrefresh(stdscr);
 
+       /* CICLO PRINCIPAL DE LA APLICACION */
        while ((c = main_menu()) != -1) {
                switch (c) {
                        case 0:
@@ -83,7 +91,6 @@ int main(int argc, char *argv[])
 
        art_liberar(NULL);
 
-       MD_Listar();
        return 0;
 }
 
@@ -217,7 +224,7 @@ int main_menu()
        curs_set(0);
        opcion = -1;
        salir = 0;
-       while((!salir) && (c = getch()) != KEY_F(1)) {
+       while((!salir) && (c = getch())) {
                switch(c) {
                        case KEY_DOWN:
                                menu_driver(menu, REQ_DOWN_ITEM);
@@ -226,7 +233,8 @@ int main_menu()
                                menu_driver(menu, REQ_UP_ITEM);
                        break;
                        case 13:
-                       case 10: {
+                       case 10: 
+                       {
                                ITEM *cur;
                                int i;