12 #include "articulos.h"
19 static void finish(int sig);
22 void menu_articulos();
24 void menu_mantenimiento();
25 void menu_estadisticas();
26 void menu_ver_registros();
27 void menu_ver_bloques();
28 void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg);
29 char *preguntar_file();
31 void ver_estadisticas(EMUFS *fp);
34 PARAM_OK, /* Parametros estan ok */
35 NO_ART_FILE, /* No se especifico nombre de archivo Articulos */
36 NO_FACT_FILE, /* No se especifico nombre de archivo Facturas */
37 SHOW_HELP, /* Mostrar ayuda encontrado */
38 TIPO_NO_DEFINIDO, /* No se definio tipo de archivo */
39 TIPO_INVALIDO, /* El valor de tipo de archivo no es valido */
40 BLOQUE_NO_DEFINIDO, /* No se especifico tamaño de bloque */
41 NULL_BLOCK_FOUND /* Tamaño de bloque <= 0!!! */
45 int xml_fact; /* Pos en argv del archivo XML a usar para facturas */
46 int xml_art; /* Pos en argv del archivo XML a usar para articulos */
47 char tipo_arch_fact; /* Tipo de archivo para Facturas */
48 char tipo_arch_art; /* Tipo de archivo para Articulos */
50 EMUFS_BLOCK_SIZE tam_bloque_fact;
51 EMUFS_BLOCK_SIZE tam_bloque_art;
52 EMUFS_BLOCK_SIZE tam_bloque_nota;
55 /* Verifica Argumentos */
56 t_Param param_ok(int argc, char *argv[])
60 for(i=1; i<argc; i++) {
61 if ((strcmp(argv[i], "-h")==0) || (strcmp(argv[i], "--help")==0)) return SHOW_HELP;
63 if (strcmp(argv[i], "-a") == 0) { /* Articulos! */
65 if (i >= argc) return SHOW_HELP;
66 if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
67 /* Luego del archivo XML debe seguir el tipo */
70 if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
71 if (((n == 1) || (n == 3)) && ((i+2)>=argc))
72 return BLOQUE_NO_DEFINIDO;
73 parametros.tipo_arch_art = n;
75 if ((i+2) >= argc) return NULL_BLOCK_FOUND;
76 parametros.tam_bloque_art = atoi(argv[i+2]);
77 if (parametros.tam_bloque_art <= 0) return NULL_BLOCK_FOUND;
79 parametros.xml_art = i;
81 /* Ops, no hay mas parametros */
82 return TIPO_NO_DEFINIDO;
89 if (strcmp(argv[i], "-f") == 0) { /* Facturas! */
91 if (i >= argc) return SHOW_HELP;
92 if (strcmp(argv[i]+strlen(argv[i])-3, "xml") == 0) {
93 /* Luego del archivo XML debe seguir el tipo */
98 if ((n < 1) || (n > 3)) return TIPO_INVALIDO;
99 if (((n == 1) || (n == 3)) && ((i+1)>=argc))
100 return BLOQUE_NO_DEFINIDO;
101 parametros.tipo_arch_fact = n;
106 parametros.tam_bloque_fact = atoi(argv[i]);
107 if (parametros.tam_bloque_fact <= 0) return NULL_BLOCK_FOUND;
109 if (i >= argc) return SHOW_HELP;
111 if ((n<1) || (n>3)) return SHOW_HELP;
112 parametros.tipo_arch_nota = n;
113 if (((n == 1) || (n == 3)) && ((i+1)>=argc))
117 parametros.tam_bloque_nota = atoi(argv[i]);
118 if (parametros.tam_bloque_nota <= 0) return SHOW_HELP;
122 if (i >= argc) return SHOW_HELP;
124 if ((n<1) || (n>3)) return SHOW_HELP;
125 parametros.tipo_arch_nota = n;
126 if (((n == 1) || (n == 3)) && ((i+1)>=argc))
130 parametros.tam_bloque_nota = atoi(argv[i]);
131 if (parametros.tam_bloque_nota <= 0) return SHOW_HELP;
135 parametros.xml_fact = file;
137 /* Ops, no hay mas parametros */
138 return TIPO_NO_DEFINIDO;
149 void print_help(char *s)
151 printf("EMUFS - 1v0\n");
152 printf("Modo de uso :%s -a <archivo XML> tipo -f <archivo XML> tipo [tam_bloque] tipo_n [tam_bloque_n]\n", s);
153 printf(" -f indica que lo que está a continuación seran los datos para generar el archivo de facturas.\n");
154 printf(" tipo_n == Tipo de archivo para el archivo de notas\n");
155 printf(" tam_bloque_n == Tamaño de bloque para el archivo de notas (si corresponde)\n");
156 printf(" -a indica que lo que está a continuación seran los datos para generar el archivo de articulos.\n");
157 printf(" 'tipo' es el modo de archivo. Siendo :\n");
158 printf(" 1 - Registros long. variables con bloque parametrizado\n");
159 printf(" 2 - Registros long. variables sin bloque\n");
160 printf(" 3 - Registros long fija con bloque parametrizado\n");
161 printf(" tamaño bloque debe ser especificado solo en aquellos tipos que lo requiera.\n");
164 int main(int argc, char *argv[])
169 parametros.xml_art = parametros.xml_fact = -1;
170 switch (param_ok(argc, argv)) {
174 case TIPO_NO_DEFINIDO:
175 printf("Falta parámetro requerido.\nLuego del nombre del archivo debe especificar el tipo de archivo\n");
177 case BLOQUE_NO_DEFINIDO:
178 printf("Falta parámetro requerido.\nLuego del tipo de archivo debe especificar el tamaño del bloque a utilizar\n");
181 printf("Tipo de archivo no valido. Los valores posibles para el tipo de archivo son:\n");
182 printf("\t1 - Archivo de bloque parametrizado y registro de long. variable.\n");
183 printf("\t2 - Archivo de registros variables sin bloques.\n");
184 printf("\t3 - Archivos de bloque parametrizado y registro de long. parametrizada.\n");
187 printf("Falta parámetro requerido.\nHa utilizado el modificador -a para crear los articulos a partir de un XML pero no ha especificado ningún archivo XML.\n");
190 printf("Falta parámetro requerido.\nHa utilizado el modificador -f para crear las facturas a partir de un XML pero no ha especificado ningún archivo XML.\n");
192 case NULL_BLOCK_FOUND:
193 printf("Error de parámerto.\nHa ingresado un valor nulo como tamaño de bloque.\n");
200 printf("CUIDADO! - Uds esta a punto de ejecutar EMUFS Gui compilado con mensajes de debug (-DDEBUG). ");
201 printf("Esto puede causar que ante un error alguna función trate de emitir un mensaje por pantalla ");
202 printf("haciendo que el aspecto visual se vea desvirtuado.\n\n");
203 printf("Todos los mensajes de error se envian por stderr, por lo que es conveniente que vuelva a ejecutar ");
204 printf("el programa de la siguiente manera :\n");
205 printf("\t#> %s <parametros> 2> error.log\n\n", argv[0]);
206 printf("De esta forma el SO se encargaga de redirigir stderr al archivo error.log y evitar algun problema en ");
207 printf("visualizacion de la aplicacion.\n");
208 printf("Para continuar **bajo su propio riesgo** presione una tecla. Puede cancelar la ejecucion en este punto con CTRL+C\n");
213 signal(SIGINT, finish);
215 keypad(stdscr, TRUE);
219 /* Si se soporta color, los inicializo */
222 /* Simple color assignment, often all we need. */
223 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
224 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
225 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
226 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
227 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
228 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
229 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
230 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
233 /* Verifico un tamaño minimo de consola */
234 if ((LINES < 25) || (COLS < 80)) {
236 printf("El tamaño de la consola debe ser de por lo menos 80x25!\n");
240 /* Ventana, caracter para linea vertical, caracter para linea horizontal*/
241 box(stdscr, ACS_VLINE, ACS_HLINE);
242 /* Ventana, Y, X, Texto */
243 mvwaddstr(stdscr, 1, 1, "EMUFS");
244 attron(COLOR_PAIR(2));
245 mvwaddstr(stdscr, LINES-2, 1, "EMUFS (c) The EMUFS Team - Bajo Licencia GNU/GPL");
246 attroff(COLOR_PAIR(2));
249 dialog = msg_box(stdscr, COLS, LINES, "Generando archivos ...");
251 if (parametros.xml_art != -1) {
252 art_cargar(argv[parametros.xml_art], parametros.tipo_arch_art, parametros.tam_bloque_art);
254 art_cargar(NULL, -1, -1);
256 if (parametros.xml_fact != -1) {
258 argv[parametros.xml_fact],
259 parametros.tipo_arch_fact,
260 parametros.tam_bloque_fact,
261 parametros.tipo_arch_nota,
262 parametros.tam_bloque_nota
265 fact_cargar(NULL, -1, -1, -1, -1);
268 msg_box_free(stdscr, dialog);
283 MENU_OPCION("Alta", "Crear una nueva factura."),
284 MENU_OPCION("Baja", "Elimina una factura existente."),
285 MENU_OPCION("Modificacion", "Modifica una factura existente."),
286 MENU_OPCION("Consultas", "Consulta varias de articulo."),
287 MENU_OPCION("Volver", "Volver al menu anterior.")
291 while ((opt = menu_ejecutar(mi_menu, 5, "Menu Articulos")) != 4) {
300 fact_modificar(NULL);
302 fact_consultas(NULL);
307 void menu_articulos()
310 MENU_OPCION("Alta", "Crear un nuevo articulo."),
311 MENU_OPCION("Baja", "Elimina un articulo existente."),
312 MENU_OPCION("Modificacion", "Modifica un articulo existente."),
313 MENU_OPCION("Consultas", "Consulta varias de articulo."),
314 MENU_OPCION("Volver", "Volver al menu anterior.")
318 while ((opt = menu_ejecutar(mi_menu, 5, "Menu Articulos")) != 4) {
336 void menu_estadisticas()
339 MENU_OPCION("Articulos", "Ver datos del archivo de Articulos."),
340 MENU_OPCION("Facturas", "Ver datos del archivo de Facturas."),
341 MENU_OPCION("Notas", "Ver datos del archivo de Notas."),
342 MENU_OPCION("Volver", "Ir al menu anterior.")
346 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Estadisticas")) != 3) {
349 ver_estadisticas( art_get_lst()->fp );
352 ver_estadisticas( fact_get_lst()->fp );
355 ver_estadisticas( fact_get_lst()->fp_texto );
360 void menu_ver_registros()
363 MENU_OPCION("Articulos", "Ver registros del archivo de Articulos."),
364 MENU_OPCION("Facturas", "Ver registros del archivo de Facturas."),
365 MENU_OPCION("Notas", "Ver registros del archivo de Notas."),
366 MENU_OPCION("Volver", "Ir al menu anterior.")
371 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Registros")) != 3) {
372 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
373 ver_registros(dialog, COLS-2, LINES-4, opt);
381 void menu_ver_bloques()
384 MENU_OPCION("Articulos", "Ver bloques del archivo de Articulos."),
385 MENU_OPCION("Facturas", "Ver bloques del archivo de Facturas."),
386 MENU_OPCION("Notas", "Ver bloques del archivo de Notas."),
387 MENU_OPCION("Volver", "Ir al menu anterior.")
392 while ((opt = menu_ejecutar(mi_menu, 4, "Menu Ver Bloques")) != 3) {
395 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
396 ver_bloques(dialog, COLS-2, LINES-4, 0);
403 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
404 ver_bloques(dialog, COLS-2, LINES-4, 1);
411 dialog = derwin(stdscr, LINES-4, COLS-2, 2, 1);
412 ver_bloques(dialog, COLS-2, LINES-4, 2);
426 MENU_OPCION("Articulos","Alta,baja,consulta y modificacion de articulos."),
427 MENU_OPCION("Facturas","Alta,baja,consulta y modificacion de facturas."),
428 MENU_OPCION("Ver Registros","Ver registros (en su contexto) de los archivos ."),
429 MENU_OPCION("Ver Bloques","Ver bloques (en su contexto) de los archivos."),
430 MENU_OPCION("Estadisticas","Ver estadisticas de ocupacion de archivos."),
431 MENU_OPCION("Mantenimiento","Tareas de mantenimiento de los archivos."),
432 MENU_OPCION("DEBUG", "Debug de Arbol B"),
433 MENU_OPCION("Salir", "Salir del sistema.")
436 while ((c=menu_ejecutar(mi_menu, 8, "Menu Principal"))!=7) {
445 menu_ver_registros();
454 menu_mantenimiento();
459 win = newwin(h, w, 1, 1);
460 emufs_indice_b_ver(art_get_lst()->fp->indices, win, w, h, 0);
469 static void finish(int sig)
473 /* do your non-curses wrapup here */
477 WINDOW *msg_box(WINDOW *win, int w, int h, const char *format, ...)
483 va_start(ap, format);
484 vsprintf(txt, format, ap);
489 dialog = derwin(win, mh, mw, h/2-mh/2, w/2-mw/2);
491 mvwaddstr(dialog, 1, 1, txt);
497 void msg_box_free(WINDOW *padre, WINDOW *win)
506 void menu_mantenimiento()
509 MENU_OPCION("Compactar Articulos","Elimina espacio no utilizado."),
510 MENU_OPCION("Compactar Facturas","Elimina espacio no utilizado."),
511 MENU_OPCION("Compactar Notas","Elimina espacio no utilizado."),
512 MENU_OPCION("Cambiar tipo Archivo Articulos","Permite cambiar el tipo del archivo."),
513 MENU_OPCION("Cambiar tipo Archivo Facturas","Permite cambiar el tipo del archivo."),
514 MENU_OPCION("Exportar Articulos", "Genera un archivo XML con los articulos."),
515 MENU_OPCION("Expostar Facturas", "Genera un archivo XML con las facturas."),
516 MENU_OPCION("Volver", "Volver al menu anterior.")
520 int nuevo_tam_registro, nuevo_tam_bloque, nuevo_tipo;
521 int nuevo_tam_registro1, nuevo_tam_bloque1, nuevo_tipo1;
525 while ((opt = menu_ejecutar(mi_menu, 8, "Menu Mantenimiento")) != 7) {
528 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
529 art_get_lst()->fp->compactar(art_get_lst()->fp);
530 msg_box_free(stdscr, dlg);
533 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
534 fact_get_lst()->fp->compactar(fact_get_lst()->fp);
535 msg_box_free(stdscr, dlg);
538 dlg = msg_box(stdscr, COLS, LINES, "Compactando archivo.... Aguarde");
539 fact_get_lst()->fp_texto->compactar(fact_get_lst()->fp_texto);
540 msg_box_free(stdscr, dlg);
543 nuevo_tam_registro = -1; /* No permito cambiar el tamaño de registro */
544 preguntar_nuevo_tipo("Parametros para Articulos", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
545 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
546 art_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro);
547 msg_box_free(stdscr, dlg);
550 nuevo_tam_registro = 0;
551 preguntar_nuevo_tipo("Parametros para Facturas", &nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro);
552 preguntar_nuevo_tipo("Parametros para Notas", &nuevo_tipo1, &nuevo_tam_bloque1, &nuevo_tam_registro1);
553 dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde");
554 fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro, nuevo_tipo1, nuevo_tam_bloque1, nuevo_tam_registro1);
555 msg_box_free(stdscr, dlg);
558 s = preguntar_file();
560 dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
563 msg_box_free(stdscr, dlg);
568 s = preguntar_file();
570 dlg = msg_box(stdscr, COLS, LINES, "Exportando .... Aguarde");
572 fact_exportar_xml(s);
573 msg_box_free(stdscr, dlg);
580 void preguntar_nuevo_tipo(const char *title, int *tipo, int *tam_bloque, int *tam_reg)
587 win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
590 mvwaddstr(win, 0, 1, title);
591 form = form_crear(win);
592 form_agregar_widget(form, RADIO, "Tipo de archivo", 3, "T1,T2,T3");
593 form_ejecutar(form, 1,1);
595 s = form_obtener_valor_char(form, "Tipo de archivo");
596 if (strcmp(s, "T1") == 0) n = T1;
597 if (strcmp(s, "T2") == 0) n = T2;
598 if (strcmp(s, "T3") == 0) n = T3;
609 form = form_crear(win);
610 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
613 form_set_valor(form, "Tamaño de bloque", "");
614 form_ejecutar(form, 1,1);
615 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
617 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
623 if (((*tam_reg) != -1) && ((*tam_reg) != -2)) {
624 mvwaddstr(win, LINES/2-3, 1, "Nota: El tamaño de registro puede");
625 mvwaddstr(win, LINES/2-2, 1, "llegar a ser redondeado por el sistema.");
627 form = form_crear(win);
628 form_agregar_widget(form, INPUT, "Tamaño de bloque", 8, "");
629 if ((*tam_reg) != -1)
630 form_agregar_widget(form, INPUT, "Tamaño de registro", 8, "");
633 form_set_valor(form, "Tamaño de bloque", "");
634 if ((*tam_reg) != -1)
635 form_set_valor(form, "Tamaño de registro", "");
636 form_ejecutar(form, 1,1);
637 if (form_obtener_valor_int(form, "Tamaño de bloque") > 0) is_ok = 1;
638 if ((*tam_reg) != -1) {
639 if (form_obtener_valor_int(form, "Tamaño de registro") > 0) is_ok = 1; else is_ok = 0;
642 (*tam_bloque) = form_obtener_valor_int(form, "Tamaño de bloque");
643 if ((*tam_reg) != -1)
644 (*tam_reg) = form_obtener_valor_int(form, "Tamaño de registro");
652 void ver_estadisticas(EMUFS *fp)
655 EMUFS_Estadisticas stats;
659 stats = fp->leer_estadisticas(fp);
661 win = newwin(LINES-4, COLS-2, 2, 1);
664 wattron(win, COLOR_PAIR(COLOR_YELLOW));
665 wattron(win, A_BOLD);
666 mvwaddstr(win, 1, 1, "Tipo de Archivo : ");
667 wattroff(win, A_BOLD);
668 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
671 waddstr(win, "Registro long. variable con bloque parametrizado");
672 wattron(win, A_BOLD);
673 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
674 wattroff(win, A_BOLD);
675 sprintf(s, "%lu bytes", fp->tam_bloque);
679 waddstr(win, "Registro long. variable sin bloques");
682 waddstr(win, "Registro long. fija con bloque parametrizado");
683 wattron(win, A_BOLD);
684 mvwaddstr(win, i++, 1, "Tamaño de bloque : ");
685 wattroff(win, A_BOLD);
686 sprintf(s, "%lu bytes", fp->tam_bloque);
688 wattron(win, A_BOLD);
689 mvwaddstr(win, i++, 1, "Tamaño de registro : ");
690 wattroff(win, A_BOLD);
691 sprintf(s, "%lu bytes", fp->tam_reg);
696 wattron(win, A_BOLD);
697 mvwaddstr(win, i++, 1, "Tamaño ocupado por datos / Tamaño archivo : ");
698 wattroff(win, A_BOLD);
699 sprintf(s, "%lu/%lu bytes (%.2f %%)",
700 stats.tam_archivo - stats.tam_info_control_dat - stats.total_fs,stats.tam_archivo,
701 (stats.tam_archivo-stats.tam_info_control_dat-stats.total_fs)*100.0f/(float)stats.tam_archivo);
704 wattron(win, A_BOLD);
705 mvwaddstr(win, i++, 1, "Tamaño info de control(1) / Tamaño archivo : ");
706 wattroff(win, A_BOLD);
707 sprintf(s, "%lu/%lu bytes (%.2f %%)", stats.tam_info_control_dat+stats.tam_archivos_aux, stats.tam_archivo, (stats.tam_info_control_dat+stats.tam_archivos_aux)*100.0f/(float)stats.tam_archivo);
710 wattron(win, A_BOLD);
711 mvwaddstr(win, i++, 1, "Espacio Libre / Tamaño archivo : ");
712 wattroff(win, A_BOLD);
713 sprintf(s, "%lu/%lu bytes (%.2f %%)", stats.total_fs, stats.tam_archivo, stats.total_fs*100.0f/(float)stats.tam_archivo);
716 wattron(win, A_BOLD);
717 mvwaddstr(win, i++, 1, "Media de espacio libre : ");
718 wattroff(win, A_BOLD);
719 sprintf(s, "%lu bytes/bloque", stats.media_fs);
722 wattron(win, A_BOLD);
723 mvwaddstr(win, i++, 1, "Maximo de Espacio libre : ");
724 wattroff(win, A_BOLD);
725 sprintf(s, "%lu bytes", stats.max_fs);
728 wattron(win, A_BOLD);
729 mvwaddstr(win, i++, 1, "Minimo de Espacio libre : ");
730 wattroff(win, A_BOLD);
731 sprintf(s, "%lu bytes", stats.min_fs);
734 wattron(win, A_BOLD);
735 mvwaddstr(win, i++, 1, "Tamaño de Archivo de datos : ");
736 wattroff(win, A_BOLD);
737 sprintf(s, "%lu bytes", stats.tam_archivo);
740 wattron(win, A_BOLD);
741 mvwaddstr(win, i++, 1, "Tamaño de Archivos auxiliares : ");
742 wattroff(win, A_BOLD);
743 sprintf(s, "%lu bytes", stats.tam_archivos_aux);
746 wattron(win, A_BOLD);
747 mvwaddstr(win, i++, 1, "Información de control en el .dat : ");
748 wattroff(win, A_BOLD);
749 sprintf(s, "%lu bytes", stats.tam_info_control_dat);
752 if ((fp->tipo == T1) || (fp->tipo == T3)) {
753 wattron(win, A_BOLD);
754 mvwaddstr(win, i++, 1, "Cantidad de bloques : ");
755 wattroff(win, A_BOLD);
756 sprintf(s, "%lu", stats.cant_bloques);
760 wattron(win, A_BOLD);
761 mvwaddstr(win, i++, 1, "Cant. Registros : ");
762 wattroff(win, A_BOLD);
763 sprintf(s, "%lu", stats.cant_registros);
766 wattron(win, A_BOLD);
767 mvwaddstr(win, i++, 1, "(1) Info control del .dat + los archivos auxiliares!.");
768 wattroff(win, A_BOLD);
770 wattron(win, A_BLINK);
771 mvwaddstr(win, i+2, 1, "Presione una tecla para continuar.");
772 wattroff(win, A_BLINK);
782 char *preguntar_file()
788 win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
791 form = form_crear(win);
792 form_agregar_widget(form, INPUT, "Nombre de archivo", 30, "");
793 form_ejecutar(form, 1,1);
795 s = form_obtener_valor_char(form, "Nombre de archivo");
797 if (strlen(s) == 0) {
801 t = (char *)malloc(sizeof(char*)*(strlen(s)+1));