X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/7c2f319760d15120f4dd6f7f61217d830490e4d6..ca0a546df5b5730a8d5dd899391bd0f194f028fa:/emufs_gui/form.h diff --git a/emufs_gui/form.h b/emufs_gui/form.h index 3b8c531..d78d2e0 100644 --- a/emufs_gui/form.h +++ b/emufs_gui/form.h @@ -62,6 +62,7 @@ t_Form *form_crear(WINDOW *win); /** Libera un formulario */ int form_destruir(t_Form *); + /** Agrega un nuevo campo * * Significado de max segĂșn tipo: @@ -101,6 +102,16 @@ void form_ejecutar(t_Form *f, int x, int y); */ void form_es_modificable(t_Form *f, const char *widget, int b); +/** Setea el valor de un widget + * + * Para campos de texto solamente!. + * + * Pone en el campo valor el texto pasado por parametro. + * + * \param f Formulario. + * \param widget Nombre del widget. + * \param s Texto a poner. + */ void form_set_valor(t_Form *f, const char *widget, const char *s); /** Obtiene el valor asociado a un campo como char *