]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/emufs_view.c
* Actualizo borrar y modificar de EMUFS y subtipos para trabajar con claves (o no)
[z.facultad/75.06/emufs.git] / emufs_gui / emufs_view.c
index 33439242f72d78d9deecfff5b82f314a819be230..2ce36abc18f52cc364fd3b127626cfa59c838587 100644 (file)
@@ -163,7 +163,7 @@ void print_help(char *s)
 
 int main(int argc, char *argv[])
 {
-       int c, fin=0;
+       int fin=0;
        WINDOW *dialog;
 
        parametros.xml_art = parametros.xml_fact = -1;
@@ -267,33 +267,7 @@ int main(int argc, char *argv[])
 
        msg_box_free(stdscr, dialog);
 
-       /* CICLO PRINCIPAL DE LA APLICACION */
-       while ((c = main_menu()) != -1) {
-               switch (c) {
-                       case 0:
-                               menu_articulos();
-                       break;
-                       case 1:
-                               menu_facturas();
-                       break;
-                       case 2:
-                               menu_ver_registros();
-                       break;
-                       case 3:
-                               menu_ver_bloques();
-                       break;
-                       case 4:
-                               menu_estadisticas();
-                       break;
-                       case 5:
-                               menu_mantenimiento();
-                       break;
-                       case 6:
-                               fin = 1;
-                       break;
-               }
-               if (fin == 1) break;
-       }
+       main_menu();
 
        endwin();
 
@@ -309,11 +283,12 @@ void menu_facturas()
                MENU_OPCION("Alta", "Crear una nueva factura."),
                MENU_OPCION("Baja", "Elimina una factura existente."),
                MENU_OPCION("Modificacion", "Modifica una factura existente."),
+               MENU_OPCION("Consultas", "Consulta varias de articulo."),
                MENU_OPCION("Volver", "Volver al menu anterior.")
        };
        int opt;
                
-       while ((opt = menu_ejecutar(mi_menu, 4, "Menu Articulos")) != 3) {
+       while ((opt = menu_ejecutar(mi_menu, 5, "Menu Articulos")) != 4) {
                switch (opt) {
                        case 0:
                                fact_agregar(NULL);
@@ -323,6 +298,8 @@ void menu_facturas()
                        break;
                        case 2:
                                fact_modificar(NULL);
+                       case 3:
+                               fact_consultas(NULL);
                }
        }
 }
@@ -333,11 +310,12 @@ void menu_articulos()
                MENU_OPCION("Alta", "Crear un nuevo articulo."),
                MENU_OPCION("Baja", "Elimina un articulo existente."),
                MENU_OPCION("Modificacion", "Modifica un articulo existente."),
+               MENU_OPCION("Consultas", "Consulta varias de articulo."),
                MENU_OPCION("Volver", "Volver al menu anterior.")
        };
        int opt;
                
-       while ((opt = menu_ejecutar(mi_menu, 4, "Menu Articulos")) != 3) {
+       while ((opt = menu_ejecutar(mi_menu, 5, "Menu Articulos")) != 4) {
                switch (opt) {
                        case 0:
                                art_agregar(NULL);
@@ -347,6 +325,9 @@ void menu_articulos()
                        break;
                        case 2:
                                art_modificar(NULL);
+                       break;
+                       case 3:
+                               art_consultas(NULL);
                }
        }
 
@@ -439,6 +420,8 @@ void menu_ver_bloques()
 
 int main_menu()
 {
+       int c, w, h;
+       WINDOW *win;
        MENU(mi_menu) {
                MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."),
                MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."),
@@ -446,10 +429,40 @@ int main_menu()
                MENU_OPCION("Ver Bloques","Ver bloques (en su contexto) de los archivos."),
                MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."),
                MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."),
+               MENU_OPCION("DEBUG", "Debug de Arbol B"),
                MENU_OPCION("Salir", "Salir del sistema.")
        };
 
-       return menu_ejecutar(mi_menu, 7, "Menu Principal");
+       while ((c=menu_ejecutar(mi_menu, 8, "Menu Principal"))!=7) {
+               switch (c) {
+                       case 0:
+                               menu_articulos();
+                       break;
+                       case 1:
+                               menu_facturas();
+                       break;
+                       case 2:
+                               menu_ver_registros();
+                       break;
+                       case 3:
+                               menu_ver_bloques();
+                       break;
+                       case 4:
+                               menu_estadisticas();
+                       break;
+                       case 5:
+                               menu_mantenimiento();
+                       break;
+                       case 6:
+                               h = LINES-2;
+                               w = COLS-2;
+                               win = newwin(h, w, 1, 1);
+                               emufs_indice_b_ver(art_get_lst()->fp->indices, win, w, h, 0);
+                               delwin(win);
+               }
+       }
+
+       return 0;
 }