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 */
83 if (f->primero == NULL) {
84 f->primero = f->ultimo = tmp;
92 void form_ejecutar(t_Form *f, int x, int y)
94 int offset = 0, my_y, salida;
95 t_Widget *tmp = f->primero;
98 /* Calculo cual es la etiqueta más larga de FORM */
101 if (strlen(tmp->nombre) > offset)
102 offset = strlen(tmp->nombre);
106 /* Agrego el ": " al offset*/
111 /* Agrego el etiqueta y el valor actual para cada elemento */
114 mvwaddstr(f->win, my_y, x, tmp->nombre);
117 /* TODO : VER QUE SI ES UNA OPCION ES DISTINTO!! */
118 mvwaddstr(f->win, my_y, x+offset, tmp->valor);
125 /* Ejecuto el formulario */
128 wmove(f->win, my_y, x+offset);
129 salida = tmp->ejecutar(f->win, x+offset, my_y, tmp);
135 int form_obtener_valor_int(t_Form *f, const char *widget)
137 /* TODO : verificar errores */
138 return atoi(form_obtener_valor_char(f, widget));
141 float form_obtener_valor_float(t_Form *f, const char *widget)
143 /* TODO : verificar errores */
144 return atof(form_obtener_valor_char(f, widget));
147 char *form_obtener_valor_char(t_Form *f, const char *widget)
149 /* Busco el widget */
150 t_Widget *tmp = f->primero;
152 if (strcmp(widget, tmp->nombre) == 0) {
157 return tmp->opciones[tmp->actual];
162 /* No hay nada. TODO : Retornar NULL? */
166 t_Widget *widget_input_create(t_Campo tipo, const char *nombre, unsigned int max, const char *defecto)
168 t_Widget *tmp = (t_Widget *)malloc(sizeof(t_Widget));
170 if (tmp == NULL) return NULL;
173 tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
174 if (tmp->nombre == NULL) {
178 strcpy(tmp->nombre, nombre);
181 tmp->valor = (char *)malloc(sizeof(char)*(max+1));
182 if (tmp->valor == NULL) {
187 tmp->valor[0] = '\0';
188 strcpy(tmp->valor, defecto);
192 tmp->ejecutar = form_input;
193 tmp->destruir = widget_free;
197 t_Widget *widget_radio_create(t_Campo tipo, const char *nombre, unsigned int max, const char *valores)
199 int ini, fin, actual;
200 t_Widget *tmp = (t_Widget *)malloc(sizeof(t_Widget));
206 tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
207 if (tmp->nombre == NULL) {
211 strcpy(tmp->nombre, nombre);
214 tmp->opciones = (char **)malloc(sizeof(char*)*(max));
215 if (tmp->opciones == NULL) {
221 /* Parseo VALOR separado por comas */
225 while (valores[fin] != '\0') {
226 if (valores[fin] == ',') {
227 tmp->opciones[actual] = (char *)malloc(sizeof(char)*(fin-ini+1));
228 strncpy(tmp->opciones[actual], valores+ini, fin-ini);
229 tmp->opciones[actual][fin-ini] = '\0';
237 /* Me queda el ultimo elemento */
238 tmp->opciones[actual] = (char *)malloc(sizeof(char)*(fin-ini+1));
239 strncpy(tmp->opciones[actual], valores+ini, fin-ini);
240 tmp->opciones[actual][fin-ini] = '\0';
242 tmp->ejecutar = form_radio;
243 tmp->destruir = widget_free;
247 void widget_free(t_Widget *w)
250 if (w == NULL) return ;
258 for(i=0; i<w->max; i++)
259 free(w->opciones[i]);
265 int form_input(WINDOW *win, int x, int y, t_Widget *w)
267 char *tmp = w->valor;
269 mvwaddstr(win, y, x, w->valor);
271 while ((*tmp) != '\0') {
278 while ((c != KEY_ENTER) && (c != 13)) {
279 /* Verifico si se apreto basckspace */
280 if (c == KEY_BACKSPACE) {
282 w->valor[current--] = '\0';
284 wmove(win, y, x+current);
286 /* Este va para dejar el cursor bien, ya que addch mueve el cursor*/
287 wmove(win, y, x+current);
292 /* Si no entra mas, ignoro toda entrada */
293 if (current >= w->max) {
298 wmove(win, y, x+current);
300 w->valor[current++] = c;
304 /* Cierro el string con el \0 */
305 w->valor[current] = '\0';
306 /* Retorno la tecla con la que se salio. */
307 /* De esa forma, ESC pasa al campo anterios. ENTER al siguiente */
311 int form_radio(WINDOW *win, int x, int y, t_Widget *w)
313 /* Por ahora solo pongo las cosas y me voy */
314 int i, actual, _x, c;
315 /* Array de posiciones para las Xs */
316 int xs[100]; /* TODO : Dinamizar!! */
321 for(i=0; i<w->max; i++) {
322 waddch(win, '('); _x++;
323 waddch(win, ' '); xs[i] = _x; _x++;
324 waddch(win, ')'); _x++;
325 waddstr(win, w->opciones[i]); _x += strlen(w->opciones[i]);
326 waddch(win, ' '); _x++;
330 wmove(win, y, xs[actual]);
334 while ((c=getch()) != 13) {
336 wmove(win, y, xs[actual]);
339 if (actual < 0) actual = 0;
340 wmove(win, y, xs[actual]);
343 if (c == KEY_RIGHT) {
344 wmove(win, y, xs[actual]);
347 if (actual >= w->max) actual = w->max-1;
348 wmove(win, y, xs[actual]);