#include "form.h"
#include "articulos.h"
+#include "emufs.h"
#define CTRLD 4
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();
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 */
attroff(COLOR_PAIR(2));
wrefresh(stdscr);
+ /* CICLO PRINCIPAL DE LA APLICACION */
while ((c = main_menu()) != -1) {
switch (c) {
case 0:
art_liberar(NULL);
- MD_Listar();
return 0;
}
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);
menu_driver(menu, REQ_UP_ITEM);
break;
case 13:
- case 10: {
+ case 10:
+ {
ITEM *cur;
int i;