+char *preguntar_file()
+{
+ WINDOW *win;
+ t_Form *form;
+ char *s, *t;
+
+ win = newwin(LINES/2, COLS/2, LINES/4, COLS/4);
+ box(win, 0, 0);
+
+ form = form_crear(win);
+ form_agregar_widget(form, INPUT, "Nombre de archivo", 30, "");
+ form_ejecutar(form, 1,1);
+
+ s = form_obtener_valor_char(form, "Nombre de archivo");
+
+ if (strlen(s) == 0) {
+ form_destruir(form);
+ return NULL;
+ }
+ t = (char *)malloc(sizeof(char*)*(strlen(s)+1));
+ strcpy(t, s);
+ form_destruir(form);
+ return t;
+}
+
+