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));
41 tmp->primero = tmp->ultimo = NULL;
44 /* TODO : El error se debe verificar afuera? */
48 int form_destruir(t_Form *f)
50 t_Widget *tmp = f->primero;
53 f->primero = f->primero->sig;
61 void form_agregar_widget(t_Form *f, t_Campo tipo, const char *nombre, unsigned int max, const char *defecto)
65 /* Creo el nuevo widget segun el tipo */
68 tmp = widget_input_create(tipo, nombre, max, defecto);
71 tmp = widget_radio_create(tipo, nombre, max, defecto);
74 /* Si se creo wl widget, lo agrego al formulario al final */
76 if (f->primero == NULL) {
77 f->primero = f->ultimo = tmp;
85 void form_ejecutar(t_Form *f, int x, int y)
87 int offset = 0, my_y, salida;
88 t_Widget *tmp = f->primero;
90 /* Pongo las etiquetas de los campos, y me fijo el mayor offset */
93 if (strlen(tmp->nombre) > offset)
94 offset = strlen(tmp->nombre);
98 /* Agrego el ": " al offset*/
105 mvwaddstr(f->win, my_y, x, tmp->nombre);
108 mvwaddstr(f->win, my_y, x+offset, tmp->valor);
117 wmove(f->win, my_y, x+offset);
118 salida = tmp->ejecutar(f->win, x+offset, my_y, tmp);
124 char *form_obtener_valor(t_Form *f, const char *widget)
126 /* Busco el widget */
127 t_Widget *tmp = f->primero;
129 if (strcmp(widget, tmp->nombre) == 0) {
134 return tmp->opciones[tmp->actual];
139 /* No hay nada. TODO : Retornar NULL? */
143 t_Widget *widget_input_create(t_Campo tipo, const char *nombre, unsigned int max, const char *defecto)
145 t_Widget *tmp = (t_Widget *)malloc(sizeof(t_Widget));
148 tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
149 strcpy(tmp->nombre, nombre);
152 tmp->valor = (char *)malloc(sizeof(char)*(max+1));
153 tmp->valor[0] = '\0';
154 strncpy(tmp->valor, defecto, max);
158 tmp->ejecutar = form_input;
159 tmp->destruir = widget_free;
163 t_Widget *widget_radio_create(t_Campo tipo, const char *nombre, unsigned int max, const char *valores)
165 int ini, fin, actual;
166 t_Widget *tmp = (t_Widget *)malloc(sizeof(t_Widget));
169 tmp->nombre = (char *)malloc(sizeof(char)*(strlen(nombre)+1));
170 strcpy(tmp->nombre, nombre);
173 tmp->opciones = (char **)malloc(sizeof(char*)*(max));
174 /* Parseo VALOR separado por comas */
178 while (valores[fin] != '\0') {
179 if (valores[fin] == ',') {
180 tmp->opciones[actual] = (char *)malloc(sizeof(char)*(fin-ini+1));
181 strncpy(tmp->opciones[actual], valores+ini, fin-ini);
182 tmp->opciones[actual][fin-ini] = '\0';
190 /* Me queda el ultimo elemento */
191 tmp->opciones[actual] = (char *)malloc(sizeof(char)*(fin-ini+1));
192 strncpy(tmp->opciones[actual], valores+ini, fin-ini);
193 tmp->opciones[actual][fin-ini] = '\0';
195 tmp->ejecutar = form_radio;
196 tmp->destruir = widget_free;
200 void widget_free(t_Widget *w)
209 for(i=0; i<w->max; i++)
210 free(w->opciones[i]);
216 int form_input(WINDOW *win, int x, int y, t_Widget *w)
218 char *tmp = w->valor;
220 mvwaddstr(win, y, x, w->valor);
222 while ((*tmp) != '\0') {
228 while ((c=getch()) != 13) {
229 /* Verifico si se apreto basckspace */
230 if (c == KEY_BACKSPACE) {
232 w->valor[current--] = '\0';
234 wmove(win, y, x+current);
236 /* Este va para dejar el cursor bien, ya que addch mueve el cursor*/
237 wmove(win, y, x+current);
241 /* Si no entra mas, ignoro toda entrada */
242 if (current >= w->max) continue;
244 wmove(win, y, x+current);
246 w->valor[current++] = c;
249 /* Cierro el string con el \0 */
250 w->valor[current+1] = '\0';
252 /* Retorno la tecla con la que se salio. */
253 /* De esa forma, ESC pasa al campo anterios. ENTER al siguiente */
257 int form_radio(WINDOW *win, int x, int y, t_Widget *w)
259 /* Por ahora solo pongo las cosas y me voy */
260 int i, actual, _x, c;
261 /* Array de posiciones para las Xs */
262 int xs[100]; /* TODO : Dinamizar!! */
267 for(i=0; i<w->max; i++) {
268 waddch(win, '('); _x++;
269 waddch(win, ' '); xs[i] = _x; _x++;
270 waddch(win, ')'); _x++;
271 waddstr(win, w->opciones[i]); _x += strlen(w->opciones[i]);
272 waddch(win, ' '); _x++;
276 wmove(win, y, xs[actual]);
280 while ((c=getch()) != 13) {
282 wmove(win, y, xs[actual]);
285 if (actual < 0) actual = 0;
286 wmove(win, y, xs[actual]);
289 if (c == KEY_RIGHT) {
290 wmove(win, y, xs[actual]);
293 if (actual >= w->max) actual = w->max-1;
294 wmove(win, y, xs[actual]);