]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/form.h
* Agrego Widgets de solo lectura en los formularios.
[z.facultad/75.06/emufs.git] / emufs_gui / form.h
index be9da37d922448f5b50b52dab97841486d790880..3b5bd572d26fa68cc448e3691763d537d4b40c89 100644 (file)
@@ -42,6 +42,8 @@ typedef struct _elem_ {
        /** Siguiente elemento */
        struct _elem_ *sig;
 
+       int modificable;
+
        /* Métodos */
        int (*ejecutar)(WINDOW *win, int x, int y, struct _elem_ *w);
        void (*destruir)(struct _elem_ *);
@@ -91,6 +93,14 @@ void form_agregar_widget(t_Form *f, t_Campo tipo, const char *nombre, unsigned i
  */
 void form_ejecutar(t_Form *f, int x, int y);
 
+/** Establece si un Widget puede ser modificado
+ *
+ *  \param f Formulario.
+ *  \param widget Nombre del Widget.
+ *  \param b Valor booleano
+ */
+void form_es_modificable(t_Form *f, const char *widget, int b);
+
 /** Obtiene el valor asociado a un campo como char *
  *
  *  \param f Formulario.