]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/form.c
* Se restaura el control del scroll al ver registros.
[z.facultad/75.06/emufs.git] / emufs_gui / form.c
index d86d4b158a5d3c20b1dcbd6b84bb67a7eb321d29..9e5cb57d9130f3dd0120941a62aa10d50a53b253 100644 (file)
@@ -80,6 +80,7 @@ void form_agregar_widget(t_Form *f, t_Campo tipo, const char *nombre, unsigned i
 
        /* Si se creo wl widget, lo agrego al formulario al final */
        if (tmp) {
+               tmp->modificable = 1;
                if (f->primero == NULL) {
                        f->primero = f->ultimo = tmp;
                } else {
@@ -126,7 +127,8 @@ void form_ejecutar(t_Form *f, int x, int y)
        while (tmp) {
                ++my_y;
                wmove(f->win, my_y, x+offset);
-               salida = tmp->ejecutar(f->win, x+offset, my_y, tmp);
+               if (tmp->modificable)
+                       salida = tmp->ejecutar(f->win, x+offset, my_y, tmp);
                wrefresh(f->win);
                tmp = tmp->sig;
        }
@@ -356,3 +358,16 @@ int form_radio(WINDOW *win, int x, int y, t_Widget *w)
        return 0;
 }
 
+void form_es_modificable(t_Form *f, const char *widget, int b)
+{
+       /* Busco el widget */
+       t_Widget *tmp = f->primero;
+       while (tmp) {
+               if (strcmp(widget, tmp->nombre) == 0) {
+                       tmp->modificable = b;
+                       break;
+               }
+               tmp = tmp->sig;
+       }
+}
+