10 #include "articulos.h"
13 #include "registros.h"
17 static void finish(int sig);
20 void menu_articulos();
21 /* cuadro de msg. w y h son de la ventana padre */
22 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...);
23 void msg_box_free(WINDOW *padre, WINDOW *win);
25 /* Verifica Argumentos */
26 int param_ok(int argc, char *argv[])
33 if (strcmp("-h", argv[1]) == 0) {
44 void print_help(char *s)
46 printf("EMUFS - 1v0\n");
47 printf("Modo de uso : %s [<archivo articulos XML> tipo=[1|2|3]]\n", s);
48 printf("\nSi especifica un archivo XML desde donde cargar los articulos debera tambien especificar el tipo");
49 printf(" de archivo a crear, siendo 1, 2, 3\n");
52 int main(int argc, char *argv[])
57 if (!param_ok(argc, argv)) {
63 signal(SIGINT, finish);
69 /* Si se soporta color, los inicializo */
72 /* Simple color assignment, often all we need. */
73 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
74 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
75 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
76 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
77 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
78 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
79 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
80 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
83 /* Verifico un tamaño minimo de consola */
84 if ((LINES < 25) || (COLS < 80)) {
86 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
90 /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
91 box(stdscr, ACS_VLINE, ACS_HLINE);
92 /* Ventana, Y, X, Texto */
93 mvwaddstr(stdscr, 1, 1, "EMUFS");
94 attron(COLOR_PAIR(2));
95 mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");
96 attroff(COLOR_PAIR(2));
99 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
101 art_cargar(argv[1], atoi(argv[2]));
102 fact_cargar(argv[1]);
104 art_cargar(NULL, -1);
106 msg_box_free(stdscr, dialog);
108 /* CICLO PRINCIPAL DE LA APLICACION */
109 while ((c = main_menu()) != -1) {
116 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
117 ver_registros(dialog, COLS-2, LINES-4);
139 void menu_articulos()
152 items = (ITEM **)calloc(5, sizeof(ITEM *));
154 items[0] = new_item(opciones[0], "Crear un nuevo articulo.");
155 set_item_userptr(items[0], art_agregar);
156 items[1] = new_item(opciones[1], "Eliminar un articulo existente.");
157 set_item_userptr(items[1], art_eliminar);
158 items[2] = new_item(opciones[2], "Modificar un articulo existente.");
159 set_item_userptr(items[2], art_modificar);
160 items[3] = new_item(opciones[3], "Volver al menu anterior.");
163 menu = new_menu((ITEM **)items);
164 menu_win = newwin(8, COLS-2, 3, 1);
165 keypad(menu_win, TRUE);
166 set_menu_mark(menu, " > ");
167 set_menu_win(menu, menu_win);
168 set_menu_sub(menu, derwin(menu_win, 5, COLS-4, 3, 1));
171 mvwaddch(menu_win, 2, 0, ACS_LTEE);
172 mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3);
173 mvwaddch(menu_win, 2, COLS-3, ACS_RTEE);
174 wattron(menu_win, COLOR_PAIR(COLOR_RED));
175 mvwaddstr(menu_win, 1, 1, "Menu Articulos");
176 wattroff(menu_win, COLOR_PAIR(COLOR_RED));
182 while((!salir) && (c = getch()) != KEY_F(3)) {
185 menu_driver(menu, REQ_DOWN_ITEM);
188 menu_driver(menu, REQ_UP_ITEM);
195 cur = current_item(menu);
196 if (strcmp(item_name(cur), opciones[3]) == 0) {
199 p = item_userptr(cur);
202 p(NULL); /* Paso NULL para que ejecute la accion por defecto */
205 mvwaddch(menu_win, 2, 0, ACS_LTEE);
206 mvwhline(menu_win, 2, 1, ACS_HLINE, 67);
207 mvwaddch(menu_win, 2, 67, ACS_RTEE);
210 pos_menu_cursor(menu);
231 int c, salir, opcion;
242 items = (ITEM **)calloc(8, sizeof(ITEM *));
244 items[0] = new_item(opciones[0], "Alta,baja,consulta y modificacion de articulos.");
245 items[1] = new_item(opciones[1], "Alta,baja,consulta y modificacion de facturas.");
246 items[2] = new_item(opciones[2], "Ver registros de un archivo.");
247 items[3] = new_item(opciones[3], "Ver bloques de un archivo.");
248 items[4] = new_item(opciones[4], "Ver estadisticas de ocupacion de archivos.");
249 items[5] = new_item(opciones[5], "Tareas de mantenimiento de los archivos.");
250 items[6] = new_item(opciones[6], "Salir del sistema.");
253 menu = new_menu((ITEM **)items);
254 menu_win = newwin(14, COLS-2, 3, 1);
255 keypad(menu_win, TRUE);
256 set_menu_mark(menu, " > ");
257 set_menu_win(menu, menu_win);
258 set_menu_sub(menu, derwin(menu_win, 10, COLS-4, 3, 1));
261 mvwaddch(menu_win, 2, 0, ACS_LTEE);
262 mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3);
263 mvwaddch(menu_win, 2, COLS-3, ACS_RTEE);
264 wattron(menu_win, COLOR_PAIR(COLOR_RED));
265 mvwaddstr(menu_win, 1, 1, "Menu Principal");
266 wattroff(menu_win, COLOR_PAIR(COLOR_RED));
273 while((!salir) && (c = getch())) {
276 menu_driver(menu, REQ_DOWN_ITEM);
279 menu_driver(menu, REQ_UP_ITEM);
287 cur = current_item(menu);
289 if (strcmp(item_name(cur), opciones[i]) == 0)
292 pos_menu_cursor(menu);
317 static void finish(int sig)
321 /* do your non-curses wrapup here */
325 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
331 va_start(ap, format);
332 vsprintf(txt, format, ap);
337 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
339 mvwaddstr(dialog, 1, 1, txt);
345 void msg_box_free(WINDOW *padre, WINDOW *win)