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 int main(int argc, char *argv[])
30 /*art_cargar(argv[1]);
36 signal(SIGINT, finish);
42 /* Si se soporta color, los inicializo */
45 /* Simple color assignment, often all we need. */
46 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
47 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
48 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
49 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
50 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
51 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
52 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
53 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
56 /* Verifico un tamaño minimo de consola */
57 if ((LINES < 25) || (COLS < 80)) {
59 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
63 /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
64 box(stdscr, ACS_VLINE, ACS_HLINE);
65 /* Ventana, Y, X, Texto */
66 mvwaddstr(stdscr, 1, 1, "EMUFS");
67 attron(COLOR_PAIR(2));
68 mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");
69 attroff(COLOR_PAIR(2));
72 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
79 msg_box_free(stdscr, dialog);
81 /* CICLO PRINCIPAL DE LA APLICACION */
82 while ((c = main_menu()) != -1) {
89 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
90 ver_registros(dialog, COLS-2, LINES-4);
112 void menu_articulos()
125 items = (ITEM **)calloc(5, sizeof(ITEM *));
127 items[0] = new_item(opciones[0], "Crear un nuevo articulo.");
128 set_item_userptr(items[0], art_agregar);
129 items[1] = new_item(opciones[1], "Eliminar un articulo existente.");
130 set_item_userptr(items[1], art_eliminar);
131 items[2] = new_item(opciones[2], "Modificar un articulo existente.");
132 set_item_userptr(items[2], art_modificar);
133 items[3] = new_item(opciones[3], "Volver al menu anterior.");
136 menu = new_menu((ITEM **)items);
137 menu_win = newwin(8, COLS-2, 3, 1);
138 keypad(menu_win, TRUE);
139 set_menu_mark(menu, " > ");
140 set_menu_win(menu, menu_win);
141 set_menu_sub(menu, derwin(menu_win, 5, COLS-4, 3, 1));
144 mvwaddch(menu_win, 2, 0, ACS_LTEE);
145 mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3);
146 mvwaddch(menu_win, 2, COLS-3, ACS_RTEE);
147 wattron(menu_win, COLOR_PAIR(COLOR_RED));
148 mvwaddstr(menu_win, 1, 1, "Menu Articulos");
149 wattroff(menu_win, COLOR_PAIR(COLOR_RED));
155 while((!salir) && (c = getch()) != KEY_F(3)) {
158 menu_driver(menu, REQ_DOWN_ITEM);
161 menu_driver(menu, REQ_UP_ITEM);
168 cur = current_item(menu);
169 if (strcmp(item_name(cur), opciones[3]) == 0) {
172 p = item_userptr(cur);
175 p((char *)item_name(cur));
178 mvwaddch(menu_win, 2, 0, ACS_LTEE);
179 mvwhline(menu_win, 2, 1, ACS_HLINE, 67);
180 mvwaddch(menu_win, 2, 67, ACS_RTEE);
183 pos_menu_cursor(menu);
204 int c, salir, opcion;
215 items = (ITEM **)calloc(8, sizeof(ITEM *));
217 items[0] = new_item(opciones[0], "Alta,baja,consulta y modificacion de articulos.");
218 items[1] = new_item(opciones[1], "Alta,baja,consulta y modificacion de facturas.");
219 items[2] = new_item(opciones[2], "Ver registros de un archivo.");
220 items[3] = new_item(opciones[3], "Ver bloques de un archivo.");
221 items[4] = new_item(opciones[4], "Ver estadisticas de ocupacion de archivos.");
222 items[5] = new_item(opciones[5], "Tareas de mantenimiento de los archivos.");
223 items[6] = new_item(opciones[6], "Salir del sistema.");
226 menu = new_menu((ITEM **)items);
227 menu_win = newwin(14, COLS-2, 3, 1);
228 keypad(menu_win, TRUE);
229 set_menu_mark(menu, " > ");
230 set_menu_win(menu, menu_win);
231 set_menu_sub(menu, derwin(menu_win, 10, COLS-4, 3, 1));
234 mvwaddch(menu_win, 2, 0, ACS_LTEE);
235 mvwhline(menu_win, 2, 1, ACS_HLINE, COLS-3);
236 mvwaddch(menu_win, 2, COLS-3, ACS_RTEE);
237 wattron(menu_win, COLOR_PAIR(COLOR_RED));
238 mvwaddstr(menu_win, 1, 1, "Menu Principal");
239 wattroff(menu_win, COLOR_PAIR(COLOR_RED));
246 while((!salir) && (c = getch())) {
249 menu_driver(menu, REQ_DOWN_ITEM);
252 menu_driver(menu, REQ_UP_ITEM);
260 cur = current_item(menu);
262 if (strcmp(item_name(cur), opciones[i]) == 0)
265 pos_menu_cursor(menu);
290 static void finish(int sig)
294 /* do your non-curses wrapup here */
298 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
304 va_start(ap, format);
305 vsprintf(txt, format, ap);
310 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
312 mvwaddstr(dialog, 1, 1, txt);
318 void msg_box_free(WINDOW *padre, WINDOW *win)