]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - gui/form.c
38d93738ca929589b423a4099a8c41f6fb14609e
[z.facultad/75.06/emufs.git] / 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         tmp->primero = tmp->ultimo = NULL;
42         tmp->win = win;
43
44         /* TODO : El error se debe verificar afuera? */
45         return tmp;
46 }
47
48 int form_destruir(t_Form *f)
49 {
50         t_Widget *tmp = f->primero;
51
52         while (tmp) {
53                 f->primero = f->primero->sig;
54                 tmp->destruir(tmp);
55                 tmp = f->primero;
56         }
57         free(f);
58         return 1;
59 }
60
61 void form_agregar_widget(t_Form *f, t_Campo tipo, const char *nombre, unsigned int max, const char *defecto)
62 {
63         t_Widget *tmp = NULL;
64
65         /* Creo el nuevo widget segun el tipo */
66         switch (tipo) {
67                 case INPUT:
68                         tmp = widget_input_create(tipo, nombre, max, defecto);
69                 break;
70                 case RADIO:
71                         tmp = widget_radio_create(tipo, nombre, max, defecto);
72         }
73
74         /* Si se creo wl widget, lo agrego al formulario al final */
75         if (tmp) {
76                 if (f->primero == NULL) {
77                         f->primero = f->ultimo = tmp;
78                 } else {
79                         f->ultimo->sig = tmp;
80                         f->ultimo = tmp;
81                 }
82         }
83 }
84
85 void form_ejecutar(t_Form *f, int x, int y)
86 {
87         int offset = 0, my_y, salida;
88         t_Widget *tmp = f->primero;
89         my_y = y-1;
90         /* Pongo las etiquetas de los campos, y me fijo el mayor offset */
91         while (tmp) {
92                 my_y++;
93                 mvwaddstr(f->win, my_y, x, tmp->nombre);
94                 waddch(f->win, ':');
95                 waddch(f->win, ' ');
96                 if (strlen(tmp->nombre) > offset)
97                         offset = strlen(tmp->nombre);
98
99                 tmp = tmp->sig;
100         }
101         /* Agrego el ": " al offset*/
102         x += offset + 2;
103         wrefresh(f->win);
104         tmp = f->primero;
105         my_y = y-1;
106         while (tmp) {
107                 ++my_y;
108                 wmove(f->win, my_y, x);
109                 salida = tmp->ejecutar(f->win, x, my_y, tmp);
110                 wrefresh(f->win);
111                 tmp = tmp->sig;
112         }
113 }
114
115 char *form_obtener_valor(t_Form *f, const char *widget)
116 {
117         /* Busco el widget */
118         t_Widget *tmp = f->primero;
119         while (tmp) {
120                 if (strcmp(widget, tmp->nombre) == 0) {
121                         switch (tmp->tipo) {
122                                 case INPUT:
123                                         return tmp->valor;
124                                 case RADIO:
125                                         return tmp->opciones[tmp->actual];
126                         }
127                 }
128                 tmp = tmp->sig;
129         }
130         /* No hay nada. TODO : Retornar NULL? */
131         return "";
132 }
133
134 t_Widget *widget_input_create(t_Campo tipo, const char *nombre, unsigned int max, const char *defecto)
135 {
136         t_Widget *tmp = (t_Widget *)malloc(sizeof(t_Widget));
137
138         tmp->tipo = tipo;
139         tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
140         strcpy(tmp->nombre, nombre);
141
142         tmp->max = max;
143         tmp->valor = (char *)malloc(sizeof(char)*(max+1));
144         tmp->valor[0] = '\0';
145         strncpy(tmp->valor, defecto, max);
146
147         tmp->sig = NULL;
148
149         tmp->ejecutar = form_input;
150         tmp->destruir = widget_free;
151         return tmp;
152 }
153
154 t_Widget *widget_radio_create(t_Campo tipo, const char *nombre, unsigned int max, const char *valores)
155 {
156         int ini, fin, actual;
157         t_Widget *tmp = (t_Widget *)malloc(sizeof(t_Widget));
158
159         tmp->tipo = tipo;
160         tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
161         strcpy(tmp->nombre, nombre);
162
163         tmp->max = max;
164         tmp->opciones = (char **)malloc(sizeof(char*)*(max));
165         /* Parseo VALOR separado por comas */
166         actual = ini = 0;
167         fin = ini+1;
168         tmp->sig = NULL;
169         while (valores[fin] != '\0') {
170                 if (valores[fin] == ',') {
171                         tmp->opciones[actual] = (char *)malloc(sizeof(char)*(fin-ini+1));
172                         strncpy(tmp->opciones[actual], valores+ini, fin-ini);
173                         tmp->opciones[actual][fin-ini] = '\0';
174                         ini = fin+1;
175                         fin = ini+1;
176                         actual++;
177                 } else {
178                         fin++;
179                 }
180         }
181         /* Me queda el ultimo elemento */
182         tmp->opciones[actual] = (char *)malloc(sizeof(char)*(fin-ini+1));
183         strncpy(tmp->opciones[actual], valores+ini, fin-ini);
184         tmp->opciones[actual][fin-ini] = '\0';
185
186         tmp->ejecutar = form_radio;
187         tmp->destruir = widget_free;
188         return tmp;
189 }
190
191 void widget_free(t_Widget *w)
192 {
193         int i;
194         free(w->nombre);
195         switch (w->tipo) {
196                 case INPUT:
197                         free(w->valor);
198                 break;
199                 case RADIO:
200                         for(i=0; i<w->max; i++)
201                                 free(w->opciones[i]);
202                         free(w->opciones);
203         }
204         free(w);
205 }
206
207 int form_input(WINDOW *win, int x, int y, t_Widget *w)
208 {
209         char *tmp = w->valor;
210         int current = 0, c;
211         mvwaddstr(win, y, x, w->valor);
212
213         while ((*tmp) != '\0') {
214                 tmp++;
215                 current++;
216         }
217
218         wrefresh(win);
219         while ((c=getch()) != 13) {
220                 /* Verifico si se apreto basckspace */
221                 if (c == KEY_BACKSPACE) {
222                         if (current > 0) {
223                                 w->valor[current--] = '\0';
224                         }
225                         wmove(win, y, x+current);
226                         waddch(win, ' ');
227                         /* Este va para dejar el cursor bien, ya que addch mueve el cursor*/
228                         wmove(win, y, x+current);
229                         continue;
230                 }
231                 /* Si no entra mas, ignoro toda entrada */
232                 if (current >= w->max) continue;
233
234                 wmove(win, y, x+current);
235                 waddch(win, c);
236                 w->valor[current++] = c;
237                 wrefresh(win);
238         }
239         /* Cierro el string con el \0 */
240         w->valor[current+1] = '\0';
241
242         /* Retorno la tecla con la que se salio. */
243         /* De esa forma, ESC pasa al campo anterios. ENTER al siguiente */
244         return c;
245 }
246
247 int form_radio(WINDOW *win, int x, int y, t_Widget *w)
248 {
249         /* Por ahora solo pongo las cosas y me voy */
250         int i, actual, _x, c;
251         /* Array de posiciones para las Xs */
252         int xs[100]; /* TODO : Dinamizar!! */
253
254         curs_set(0);
255         wmove(win, y, x);
256         _x = x;
257         for(i=0; i<w->max; i++) {
258                 waddch(win, '('); _x++;
259                 waddch(win, ' '); xs[i] = _x; _x++;
260                 waddch(win, ')'); _x++;
261                 waddstr(win, w->opciones[i]); _x += strlen(w->opciones[i]);
262                 waddch(win, ' '); _x++;
263         }
264
265         actual = 0;
266         wmove(win, y, xs[actual]);
267         waddch(win, 'X');
268
269         wrefresh(win);
270         while ((c=getch()) != 13) {
271                 if (c == KEY_LEFT) {
272                         wmove(win, y, xs[actual]);
273                         waddch(win, ' ');       
274                         actual--;
275                         if (actual < 0) actual = 0;
276                         wmove(win, y, xs[actual]);
277                         waddch(win, 'X');       
278                 }
279                 if (c == KEY_RIGHT) {
280                         wmove(win, y, xs[actual]);
281                         waddch(win, ' ');       
282                         actual++;
283                         if (actual >= w->max) actual = w->max-1;
284                         wmove(win, y, xs[actual]);
285                         waddch(win, 'X');       
286                 }
287                 wrefresh(win);
288         }
289
290         w->actual = actual;
291         curs_set(1);
292         return 0;
293 }
294