X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/f1276ee6db18ea8d953d8b90907aceb3e2cc1166..c4b24cdb8c9c9c83ad2b4cad26560b3487d15bd7:/emufs_gui/gui.c?ds=sidebyside diff --git a/emufs_gui/gui.c b/emufs_gui/gui.c index 27aab8f..ec90147 100644 --- a/emufs_gui/gui.c +++ b/emufs_gui/gui.c @@ -4,11 +4,13 @@ #include #include #include +#include #include "form.h" #include "articulos.h" #include "facturas.h" #include "emufs.h" +#include "registros.h" #define CTRLD 4 @@ -16,16 +18,82 @@ static void finish(int sig); int main_menu(); void menu_articulos(); +/* cuadro de msg. w y h son de la ventana padre */ +WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...); +void msg_box_free(WINDOW *padre, WINDOW *win); + +typedef enum {PARAM_OK, SHOW_HELP, TIPO_NO_DEFINIDO, TIPO_INVALIDO, BLOQUE_NO_DEFINIDO} t_Param; + +/* Verifica Argumentos */ +t_Param param_ok(int argc, char *argv[]) +{ + int n,i; + for(i=1; i 3)) return TIPO_INVALIDO; + if (((n == 1) || (n == 3)) && ((i+2)>=argc)) + return BLOQUE_NO_DEFINIDO; + } else { + /* Ops, no hay mas parametros */ + return TIPO_NO_DEFINIDO; + } + } + } + + return PARAM_OK; +} + +void print_help(char *s) +{ + printf("EMUFS - 1v0\n"); + printf("Modo de uso : %s [ tipo=[1|2|3]]\n", s); + printf("\nSi especifica un archivo XML desde donde cargar los articulos debera tambien especificar el tipo"); + printf(" de archivo a crear, siendo 1, 2, 3\n"); +} int main(int argc, char *argv[]) { int c, fin=0; + WINDOW *dialog; + + switch (param_ok(argc, argv)) { + case SHOW_HELP: + print_help(argv[0]); + return 0; + case TIPO_NO_DEFINIDO: + printf("Falta parámetro requerido.\nLuego del nombre del archivo debe especificar el tipo de archivo\n"); + return 1; + case BLOQUE_NO_DEFINIDO: + printf("Falta parámetro requerido.\nLuego del tipo de archivo debe especificar el tamaño del bloque a utilizar\n"); + return 1; + case TIPO_INVALIDO: + printf("Tipo de archivo no valido. Los valores posibles para el tipo de archivo son:\n"); + printf("\t1 - Archivo de bloque parametrizado y registro de long. variable.\n"); + printf("\t2 - Archivo de registros variables sin bloques.\n"); + printf("\t3 - Archivos de bloque parametrizado y registro de long. parametrizada.\n"); + return 2; + case PARAM_OK: + fin = 0; + } -/* art_cargar(argv[1]); +#ifdef DEBUG + printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). "); + printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla "); + printf("haciendo que el aspecto visual se vea desvirtuado.\n\n"); + printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar "); + printf("el programa de la siguiente manera :\n"); + printf("\t#> %s 2> error.log\n\n", argv[0]); + printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en "); + printf("visualizacion de la aplicacion.\n"); + printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n"); + fgetc(stdin); +#endif - art_liberar(NULL); - return 1; -*/ /* Inicio Curses */ signal(SIGINT, finish); initscr(); @@ -54,12 +122,6 @@ int main(int argc, char *argv[]) return 1; } - if (argc == 2) { - art_cargar(argv[1]); - fact_cargar(argv[1]); - } else - art_cargar(NULL); - /* Ventana, caracter para linea vertical, caracter para linea horizontal*/ box(stdscr, ACS_VLINE, ACS_HLINE); /* Ventana, Y, X, Texto */ @@ -69,6 +131,15 @@ int main(int argc, char *argv[]) attroff(COLOR_PAIR(2)); wrefresh(stdscr); + dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ..."); + if (argc == 4) { + art_cargar(argv[1], atoi(argv[2]), atoi(argv[3])); + fact_cargar(argv[1]); + } else + art_cargar(NULL, -1, -1); + + msg_box_free(stdscr, dialog); + /* CICLO PRINCIPAL DE LA APLICACION */ while ((c = main_menu()) != -1) { switch (c) { @@ -76,7 +147,14 @@ int main(int argc, char *argv[]) menu_articulos(); break; // case 1: - // case 2: + case 2: + dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1); + ver_registros(dialog, COLS-2, LINES-4); + werase(dialog); + wrefresh(dialog); + delwin(dialog); + refresh(); + break; // case 3: case 6: fin = 1; @@ -156,7 +234,7 @@ void menu_articulos() p = item_userptr(cur); unpost_menu(menu); refresh(); - p((char *)item_name(cur)); + p(NULL); /* Paso NULL para que ejecute la accion por defecto */ post_menu(menu); box(menu_win,0,0); mvwaddch(menu_win, 2, 0, ACS_LTEE); @@ -279,3 +357,32 @@ static void finish(int sig) exit(0); } +WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...) +{ + va_list ap; + char txt[255]; + int mw, mh; + WINDOW *dialog; + va_start(ap, format); + vsprintf(txt, format, ap); + va_end(ap); + + mw = strlen(txt)+2; + mh = 3; + dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2); + box(dialog, 0 ,0); + mvwaddstr(dialog, 1, 1, txt); + wrefresh(dialog); + curs_set(0); + return dialog; +} + +void msg_box_free(WINDOW *padre, WINDOW *win) +{ + werase(win); + wrefresh(win); + delwin(win); + curs_set(1); + wrefresh(padre); +} +