]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/form.c
* Se restaura el control del scroll al ver registros.
[z.facultad/75.06/emufs.git] / emufs_gui / form.c
1
2 #include "form.h"
3
4 /** Libera la memoria ocupada por un widget
5  *
6  *  \param w Widget a liberar
7  */
8 static void widget_free(t_Widget *w);
9 /** Crea un nuevo campo de entrada de texto
10  *
11  *  \param tipo Debe ser INPUT
12  *  \param nombre Nombre del control (también usada como etiqueta).
13  *  \param max Cantidad máxima de caracteres.
14  *  \param defecto Valor inicial del campo.
15  */
16 static t_Widget *widget_input_create(t_Campo tipo, const char *nombre, unsigned int max, const char *defecto);
17 /** Crea un nuevo RADIO Group
18  *
19  *  \param tipo Debe ser RADIO
20  *  \param nombre Nombre del campo
21  *  \param max Cantidad de opciones
22  *  \param valores Texto separado con comas con las opciones
23  */
24 static t_Widget *widget_radio_create(t_Campo tipo, const char *nombre, unsigned int max, const char *valores);
25 /** Ejecuta una consulta sobre un INPUT
26  *
27  *  Permite ingresar texto en el INPUT hasta que se presiona ENTER
28  */
29 static int form_input(WINDOW *win, int x, int y, t_Widget *w);
30 /** Ejecuta una consulta sobre un RADIO
31  *
32  *  Permite seleccionar una de las múltiples opciones del control.
33  *  Para seleccionar se utilizan las feclas <- y -> y ENTER
34  *  para aceptar.
35  */
36 static int form_radio(WINDOW *win, int x, int y, t_Widget *w);
37
38 t_Form *form_crear(WINDOW *win)
39 {
40         t_Form *tmp = (t_Form *)malloc(sizeof(t_Form));
41         if (tmp == NULL) {
42                 return NULL;
43         }
44         tmp->primero = tmp->ultimo = NULL;
45         tmp->win = win;
46
47         return tmp;
48 }
49
50 int form_destruir(t_Form *f)
51 {
52         t_Widget *tmp;
53         if (f == NULL) return 0;
54
55         tmp = f->primero;
56
57         while (tmp) {
58                 f->primero = f->primero->sig;
59                 tmp->destruir(tmp);
60                 tmp = f->primero;
61         }
62         free(f);
63         return 1;
64 }
65
66 void form_agregar_widget(t_Form *f, t_Campo tipo, const char *nombre, unsigned int max, const char *defecto)
67 {
68         t_Widget *tmp = NULL;
69
70         if (f == NULL) return;
71
72         /* Creo el nuevo widget segun el tipo */
73         switch (tipo) {
74                 case INPUT:
75                         tmp = widget_input_create(tipo, nombre, max, defecto);
76                 break;
77                 case RADIO:
78                         tmp = widget_radio_create(tipo, nombre, max, defecto);
79         }
80
81         /* Si se creo wl widget, lo agrego al formulario al final */
82         if (tmp) {
83                 tmp->modificable = 1;
84                 if (f->primero == NULL) {
85                         f->primero = f->ultimo = tmp;
86                 } else {
87                         f->ultimo->sig = tmp;
88                         f->ultimo = tmp;
89                 }
90         }
91 }
92
93 void form_ejecutar(t_Form *f, int x, int y)
94 {
95         int offset = 0, my_y, salida;
96         t_Widget *tmp = f->primero;
97         my_y = y-1;
98         
99         /* Calculo cual es la etiqueta más larga de FORM */
100         while (tmp) {
101                 my_y++;
102                 if (strlen(tmp->nombre) > offset)
103                         offset = strlen(tmp->nombre);
104
105                 tmp = tmp->sig;
106         }
107         /* Agrego el ": " al offset*/
108         offset += 2;
109
110         tmp = f->primero;
111         my_y = y-1;
112         /* Agrego el etiqueta y el valor actual para cada elemento */
113         while (tmp) {
114                 ++my_y;
115                 mvwaddstr(f->win, my_y, x, tmp->nombre);
116                 waddch(f->win, ':');
117                 waddch(f->win, ' ');
118                 /* TODO : VER QUE SI ES UNA OPCION ES DISTINTO!! */
119                 mvwaddstr(f->win, my_y, x+offset, tmp->valor);
120                 tmp = tmp->sig;
121         }
122         wrefresh(f->win);
123
124         tmp = f->primero;
125         my_y = y-1;
126         /* Ejecuto el formulario */
127         while (tmp) {
128                 ++my_y;
129                 wmove(f->win, my_y, x+offset);
130                 if (tmp->modificable)
131                         salida = tmp->ejecutar(f->win, x+offset, my_y, tmp);
132                 wrefresh(f->win);
133                 tmp = tmp->sig;
134         }
135 }
136
137 int form_obtener_valor_int(t_Form *f, const char *widget)
138 {
139         /* TODO : verificar errores */
140         return atoi(form_obtener_valor_char(f, widget));
141 }
142
143 float form_obtener_valor_float(t_Form *f, const char *widget)
144 {
145         /* TODO : verificar errores */
146         return atof(form_obtener_valor_char(f, widget));
147 }
148
149 char *form_obtener_valor_char(t_Form *f, const char *widget)
150 {
151         /* Busco el widget */
152         t_Widget *tmp = f->primero;
153         while (tmp) {
154                 if (strcmp(widget, tmp->nombre) == 0) {
155                         switch (tmp->tipo) {
156                                 case INPUT:
157                                         return tmp->valor;
158                                 case RADIO:
159                                         return tmp->opciones[tmp->actual];
160                         }
161                 }
162                 tmp = tmp->sig;
163         }
164         /* No hay nada. TODO : Retornar NULL? */
165         return "";
166 }
167
168 t_Widget *widget_input_create(t_Campo tipo, const char *nombre, unsigned int max, const char *defecto)
169 {
170         t_Widget *tmp = (t_Widget *)malloc(sizeof(t_Widget));
171
172         if (tmp == NULL) return NULL;
173
174         tmp->tipo = tipo;
175         tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
176         if (tmp->nombre == NULL) {
177                 free(tmp);
178                 return NULL;
179         }
180         strcpy(tmp->nombre, nombre);
181
182         tmp->max = max;
183         tmp->valor = (char *)malloc(sizeof(char)*(max+1));
184         if (tmp->valor == NULL) {
185                 free(tmp->nombre);
186                 free(tmp);
187                 return NULL;
188         }
189         tmp->valor[0] = '\0';
190         strcpy(tmp->valor, defecto);
191
192         tmp->sig = NULL;
193
194         tmp->ejecutar = form_input;
195         tmp->destruir = widget_free;
196         return tmp;
197 }
198
199 t_Widget *widget_radio_create(t_Campo tipo, const char *nombre, unsigned int max, const char *valores)
200 {
201         int ini, fin, actual;
202         t_Widget *tmp = (t_Widget *)malloc(sizeof(t_Widget));
203         if (tmp == NULL) {
204                 return NULL;
205         }
206
207         tmp->tipo = tipo;
208         tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
209         if (tmp->nombre == NULL) {
210                 free(tmp);
211                 return NULL;
212         }
213         strcpy(tmp->nombre, nombre);
214
215         tmp->max = max;
216         tmp->opciones = (char **)malloc(sizeof(char*)*(max));
217         if (tmp->opciones == NULL) {
218                 free(tmp->nombre);
219                 free(tmp);
220                 return NULL;
221         }
222
223         /* Parseo VALOR separado por comas */
224         actual = ini = 0;
225         fin = ini+1;
226         tmp->sig = NULL;
227         while (valores[fin] != '\0') {
228                 if (valores[fin] == ',') {
229                         tmp->opciones[actual] = (char *)malloc(sizeof(char)*(fin-ini+1));
230                         strncpy(tmp->opciones[actual], valores+ini, fin-ini);
231                         tmp->opciones[actual][fin-ini] = '\0';
232                         ini = fin+1;
233                         fin = ini+1;
234                         actual++;
235                 } else {
236                         fin++;
237                 }
238         }
239         /* Me queda el ultimo elemento */
240         tmp->opciones[actual] = (char *)malloc(sizeof(char)*(fin-ini+1));
241         strncpy(tmp->opciones[actual], valores+ini, fin-ini);
242         tmp->opciones[actual][fin-ini] = '\0';
243
244         tmp->ejecutar = form_radio;
245         tmp->destruir = widget_free;
246         return tmp;
247 }
248
249 void widget_free(t_Widget *w)
250 {
251         int i;
252         if (w == NULL) return ;
253
254         free(w->nombre);
255         switch (w->tipo) {
256                 case INPUT:
257                         free(w->valor);
258                 break;
259                 case RADIO:
260                         for(i=0; i<w->max; i++)
261                                 free(w->opciones[i]);
262                         free(w->opciones);
263         }
264         free(w);
265 }
266
267 int form_input(WINDOW *win, int x, int y, t_Widget *w)
268 {
269         char *tmp = w->valor;
270         int current = 0, c;
271         mvwaddstr(win, y, x, w->valor);
272         curs_set(1);
273         while ((*tmp) != '\0') {
274                 tmp++;
275                 current++;
276         }
277
278         wrefresh(win);
279         c = getch();
280         while ((c != KEY_ENTER) && (c != 13)) {
281                 /* Verifico si se apreto basckspace */
282                 if (c == KEY_BACKSPACE) {
283                         if (current > 0) {
284                                 w->valor[current--] = '\0';
285                         }
286                         wmove(win, y, x+current);
287                         waddch(win, ' ');
288                         /* Este va para dejar el cursor bien, ya que addch mueve el cursor*/
289                         wmove(win, y, x+current);
290                         wrefresh(win);
291                         c = getch();
292                         continue;
293                 }
294                 /* Si no entra mas, ignoro toda entrada */
295                 if (current >= w->max) {
296                         c = getch();
297                         continue;
298                 }
299                 
300                 wmove(win, y, x+current);
301                 waddch(win, c);
302                 w->valor[current++] = c;
303                 wrefresh(win);
304                 c = getch();
305         }
306         /* Cierro el string con el \0 */
307         w->valor[current] = '\0';
308         /* Retorno la tecla con la que se salio. */
309         /* De esa forma, ESC pasa al campo anterios. ENTER al siguiente */
310         return c;
311 }
312
313 int form_radio(WINDOW *win, int x, int y, t_Widget *w)
314 {
315         /* Por ahora solo pongo las cosas y me voy */
316         int i, actual, _x, c;
317         /* Array de posiciones para las Xs */
318         int xs[100]; /* TODO : Dinamizar!! */
319
320         curs_set(0);
321         wmove(win, y, x);
322         _x = x;
323         for(i=0; i<w->max; i++) {
324                 waddch(win, '('); _x++;
325                 waddch(win, ' '); xs[i] = _x; _x++;
326                 waddch(win, ')'); _x++;
327                 waddstr(win, w->opciones[i]); _x += strlen(w->opciones[i]);
328                 waddch(win, ' '); _x++;
329         }
330
331         actual = 0;
332         wmove(win, y, xs[actual]);
333         waddch(win, 'X');
334
335         wrefresh(win);
336         while ((c=getch()) != 13) {
337                 if (c == KEY_LEFT) {
338                         wmove(win, y, xs[actual]);
339                         waddch(win, ' ');       
340                         actual--;
341                         if (actual < 0) actual = 0;
342                         wmove(win, y, xs[actual]);
343                         waddch(win, 'X');       
344                 }
345                 if (c == KEY_RIGHT) {
346                         wmove(win, y, xs[actual]);
347                         waddch(win, ' ');       
348                         actual++;
349                         if (actual >= w->max) actual = w->max-1;
350                         wmove(win, y, xs[actual]);
351                         waddch(win, 'X');       
352                 }
353                 wrefresh(win);
354         }
355
356         w->actual = actual;
357         curs_set(1);
358         return 0;
359 }
360
361 void form_es_modificable(t_Form *f, const char *widget, int b)
362 {
363         /* Busco el widget */
364         t_Widget *tmp = f->primero;
365         while (tmp) {
366                 if (strcmp(widget, tmp->nombre) == 0) {
367                         tmp->modificable = b;
368                         break;
369                 }
370                 tmp = tmp->sig;
371         }
372 }
373