4 /** Libera la memoria ocupada por un widget
6 * \param w Widget a liberar
8 static void widget_free(t_Widget *w);
9 /** Crea un nuevo campo de entrada de texto
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.
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
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
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
27 * Permite ingresar texto en el INPUT hasta que se presiona ENTER
29 static int form_input(WINDOW *win, int x, int y, t_Widget *w);
30 /** Ejecuta una consulta sobre un RADIO
32 * Permite seleccionar una de las múltiples opciones del control.
33 * Para seleccionar se utilizan las feclas <- y -> y ENTER
36 static int form_radio(WINDOW *win, int x, int y, t_Widget *w);
38 t_Form *form_crear(WINDOW *win)
40 t_Form *tmp = (t_Form *)malloc(sizeof(t_Form));
44 tmp->primero = tmp->ultimo = NULL;
50 int form_destruir(t_Form *f)
53 if (f == NULL) return 0;
58 f->primero = f->primero->sig;
66 void form_agregar_widget(t_Form *f, t_Campo tipo, const char *nombre, unsigned int max, const char *defecto)
70 if (f == NULL) return;
72 /* Creo el nuevo widget segun el tipo */
75 tmp = widget_input_create(tipo, nombre, max, defecto);
78 tmp = widget_radio_create(tipo, nombre, max, defecto);
81 /* Si se creo wl widget, lo agrego al formulario al final */
84 if (f->primero == NULL) {
85 f->primero = f->ultimo = tmp;
93 void form_ejecutar(t_Form *f, int x, int y)
95 int offset = 0, my_y, salida;
96 t_Widget *tmp = f->primero;
99 /* Calculo cual es la etiqueta más larga de FORM */
102 if (strlen(tmp->nombre) > offset)
103 offset = strlen(tmp->nombre);
107 /* Agrego el ": " al offset*/
112 /* Agrego el etiqueta y el valor actual para cada elemento */
115 mvwaddstr(f->win, my_y, x, tmp->nombre);
118 /* TODO : VER QUE SI ES UNA OPCION ES DISTINTO!! */
119 mvwaddstr(f->win, my_y, x+offset, tmp->valor);
126 /* Ejecuto el formulario */
129 wmove(f->win, my_y, x+offset);
130 if (tmp->modificable)
131 salida = tmp->ejecutar(f->win, x+offset, my_y, tmp);
137 int form_obtener_valor_int(t_Form *f, const char *widget)
139 /* TODO : verificar errores */
140 return atoi(form_obtener_valor_char(f, widget));
143 float form_obtener_valor_float(t_Form *f, const char *widget)
145 /* TODO : verificar errores */
146 return atof(form_obtener_valor_char(f, widget));
149 char *form_obtener_valor_char(t_Form *f, const char *widget)
151 /* Busco el widget */
152 t_Widget *tmp = f->primero;
154 if (strcmp(widget, tmp->nombre) == 0) {
159 return tmp->opciones[tmp->actual];
164 /* No hay nada. TODO : Retornar NULL? */
168 t_Widget *widget_input_create(t_Campo tipo, const char *nombre, unsigned int max, const char *defecto)
170 t_Widget *tmp = (t_Widget *)malloc(sizeof(t_Widget));
172 if (tmp == NULL) return NULL;
175 tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
176 if (tmp->nombre == NULL) {
180 strcpy(tmp->nombre, nombre);
183 tmp->valor = (char *)malloc(sizeof(char)*(max+1));
184 if (tmp->valor == NULL) {
189 tmp->valor[0] = '\0';
190 strcpy(tmp->valor, defecto);
194 tmp->ejecutar = form_input;
195 tmp->destruir = widget_free;
199 t_Widget *widget_radio_create(t_Campo tipo, const char *nombre, unsigned int max, const char *valores)
201 int ini, fin, actual;
202 t_Widget *tmp = (t_Widget *)malloc(sizeof(t_Widget));
208 tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
209 if (tmp->nombre == NULL) {
213 strcpy(tmp->nombre, nombre);
216 tmp->opciones = (char **)malloc(sizeof(char*)*(max));
217 if (tmp->opciones == NULL) {
223 /* Parseo VALOR separado por comas */
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';
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';
244 tmp->ejecutar = form_radio;
245 tmp->destruir = widget_free;
249 void widget_free(t_Widget *w)
252 if (w == NULL) return ;
260 for(i=0; i<w->max; i++)
261 free(w->opciones[i]);
267 int form_input(WINDOW *win, int x, int y, t_Widget *w)
269 char *tmp = w->valor;
271 mvwaddstr(win, y, x, w->valor);
273 while ((*tmp) != '\0') {
280 while ((c != KEY_ENTER) && (c != 13)) {
281 /* Verifico si se apreto basckspace */
282 if (c == KEY_BACKSPACE) {
284 w->valor[current--] = '\0';
286 wmove(win, y, x+current);
288 /* Este va para dejar el cursor bien, ya que addch mueve el cursor*/
289 wmove(win, y, x+current);
294 /* Si no entra mas, ignoro toda entrada */
295 if (current >= w->max) {
300 wmove(win, y, x+current);
302 w->valor[current++] = c;
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 */
313 int form_radio(WINDOW *win, int x, int y, t_Widget *w)
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!! */
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++;
332 wmove(win, y, xs[actual]);
336 while ((c=getch()) != 13) {
338 wmove(win, y, xs[actual]);
341 if (actual < 0) actual = 0;
342 wmove(win, y, xs[actual]);
345 if (c == KEY_RIGHT) {
346 wmove(win, y, xs[actual]);
349 if (actual >= w->max) actual = w->max-1;
350 wmove(win, y, xs[actual]);
361 void form_es_modificable(t_Form *f, const char *widget, int b)
363 /* Busco el widget */
364 t_Widget *tmp = f->primero;
366 if (strcmp(widget, tmp->nombre) == 0) {
367 tmp->modificable = b;