]> git.street.me.uk Git - andy/viking.git/blob - src/uibuilder.c
Enable i18n on 'Routing' preferences tab name.
[andy/viking.git] / src / uibuilder.c
1 /*
2  * viking -- GPS Data and Topo Analyzer, Explorer, and Manager
3  *
4  * Copyright (C) 2003-2007, Evan Battaglia <gtoevan@gmx.net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
24
25 #include <gtk/gtk.h>
26 #include <glib/gi18n.h>
27 #include "uibuilder.h"
28 #include "vikradiogroup.h"
29 #include "vikfileentry.h"
30 #include "vikfilelist.h"
31
32 VikLayerParamData vik_lpd_true_default ( void ) { return VIK_LPD_BOOLEAN ( TRUE ); }
33 VikLayerParamData vik_lpd_false_default ( void ) { return VIK_LPD_BOOLEAN ( FALSE ); }
34
35 GtkWidget *a_uibuilder_new_widget ( VikLayerParam *param, VikLayerParamData data )
36 {
37   // Perform pre conversion if necessary
38   VikLayerParamData vlpd = data;
39   if ( param->convert_to_display )
40    vlpd = param->convert_to_display ( data );
41
42   GtkWidget *rv = NULL;
43   switch ( param->widget_type )
44   {
45     case VIK_LAYER_WIDGET_COLOR:
46       if ( param->type == VIK_LAYER_PARAM_COLOR )
47         rv = gtk_color_button_new_with_color ( &(vlpd.c) );
48       break;
49     case VIK_LAYER_WIDGET_CHECKBUTTON:
50       if ( param->type == VIK_LAYER_PARAM_BOOLEAN )
51       {
52         //rv = gtk_check_button_new_with_label ( //param->title );
53         rv = gtk_check_button_new ();
54         if ( vlpd.b )
55           gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON(rv), TRUE );
56       }
57       break;
58     case VIK_LAYER_WIDGET_COMBOBOX:
59       if ( param->type == VIK_LAYER_PARAM_UINT && param->widget_data )
60       {
61         /* Build a simple combobox */
62         gchar **pstr = param->widget_data;
63         rv = vik_combo_box_text_new ();
64         while ( *pstr )
65           vik_combo_box_text_append ( rv, *(pstr++) );
66         if ( param->extra_widget_data ) /* map of alternate uint values for options */
67         {
68           /* Set the effective default value */
69           int i;
70           for ( i = 0; ((const char **)param->widget_data)[i]; i++ )
71             if ( ((guint *)param->extra_widget_data)[i] == vlpd.u )
72             {
73               /* Match default value */
74               gtk_combo_box_set_active ( GTK_COMBO_BOX(rv), i );
75               break;
76             }
77         }
78         else
79           gtk_combo_box_set_active ( GTK_COMBO_BOX ( rv ), vlpd.u );
80       }
81       else if ( param->type == VIK_LAYER_PARAM_STRING && param->widget_data && !param->extra_widget_data )
82       {
83         /* Build a combobox with editable text */
84         gchar **pstr = param->widget_data;
85 #if GTK_CHECK_VERSION (2, 24, 0)
86         rv = gtk_combo_box_text_new_with_entry ();
87 #else
88         rv = gtk_combo_box_entry_new_text ();
89 #endif
90         if ( vlpd.s )
91           vik_combo_box_text_append ( rv, vlpd.s );
92         while ( *pstr )
93           vik_combo_box_text_append ( rv, *(pstr++) );
94         if ( vlpd.s )
95           gtk_combo_box_set_active ( GTK_COMBO_BOX ( rv ), 0 );
96       }
97       else if ( param->type == VIK_LAYER_PARAM_STRING && param->widget_data && param->extra_widget_data)
98       {
99         /* Build a combobox with fixed selections without editable text */
100         gchar **pstr = param->widget_data;
101         rv = GTK_WIDGET ( vik_combo_box_text_new () );
102         while ( *pstr )
103           vik_combo_box_text_append ( rv, *(pstr++) );
104         if ( vlpd.s )
105         {
106           /* Set the effective default value */
107           /* In case of value does not exist, set the first value */
108           gtk_combo_box_set_active ( GTK_COMBO_BOX ( rv ), 0 );
109           int i;
110           for ( i = 0; ((const char **)param->widget_data)[i]; i++ )
111             if ( strcmp(((const char **)param->extra_widget_data)[i], vlpd.s) == 0 )
112             {
113               /* Match default value */
114               gtk_combo_box_set_active ( GTK_COMBO_BOX ( rv ), i );
115               break; 
116             }
117         }
118         else
119           gtk_combo_box_set_active ( GTK_COMBO_BOX ( rv ), 0 );
120       }
121       break;
122     case VIK_LAYER_WIDGET_RADIOGROUP:
123       /* widget_data and extra_widget_data are GList */
124       if ( param->type == VIK_LAYER_PARAM_UINT && param->widget_data )
125       {
126         rv = vik_radio_group_new ( param->widget_data );
127         if ( param->extra_widget_data ) /* map of alternate uint values for options */
128         {
129           int i;
130           int nb_elem = g_list_length(param->widget_data);
131           for ( i = 0; i < nb_elem; i++ )
132             if ( GPOINTER_TO_UINT ( g_list_nth_data(param->extra_widget_data, i) ) == vlpd.u )
133             {
134               vik_radio_group_set_selected ( VIK_RADIO_GROUP(rv), i );
135               break;
136             }
137         }
138         else if ( vlpd.u ) /* zero is already default */
139           vik_radio_group_set_selected ( VIK_RADIO_GROUP(rv), vlpd.u );
140       }
141       break;
142     case VIK_LAYER_WIDGET_RADIOGROUP_STATIC:
143       if ( param->type == VIK_LAYER_PARAM_UINT && param->widget_data )
144       {
145         rv = vik_radio_group_new_static ( (const gchar **) param->widget_data );
146         if ( param->extra_widget_data ) /* map of alternate uint values for options */
147         {
148           int i;
149           for ( i = 0; ((const char **)param->widget_data)[i]; i++ )
150             if ( ((guint *)param->extra_widget_data)[i] == vlpd.u )
151             {
152               vik_radio_group_set_selected ( VIK_RADIO_GROUP(rv), i );
153               break;
154             }
155         }
156         else if ( vlpd.u ) /* zero is already default */
157           vik_radio_group_set_selected ( VIK_RADIO_GROUP(rv), vlpd.u );
158       }
159       break;
160     case VIK_LAYER_WIDGET_SPINBUTTON:
161       if ( (param->type == VIK_LAYER_PARAM_DOUBLE || param->type == VIK_LAYER_PARAM_UINT
162            || param->type == VIK_LAYER_PARAM_INT)  && param->widget_data )
163       {
164         gdouble init_val = (param->type == VIK_LAYER_PARAM_DOUBLE) ? vlpd.d : (param->type == VIK_LAYER_PARAM_UINT ? vlpd.u : vlpd.i);
165         VikLayerParamScale *scale = (VikLayerParamScale *) param->widget_data;
166         rv = gtk_spin_button_new ( GTK_ADJUSTMENT(gtk_adjustment_new( init_val, scale->min, scale->max, scale->step, scale->step, 0 )), scale->step, scale->digits );
167       }
168     break;
169     case VIK_LAYER_WIDGET_ENTRY:
170       if ( param->type == VIK_LAYER_PARAM_STRING )
171       {
172         rv = gtk_entry_new ();
173         if ( vlpd.s )
174           gtk_entry_set_text ( GTK_ENTRY(rv), vlpd.s );
175       }
176       break;
177     case VIK_LAYER_WIDGET_PASSWORD:
178       if ( param->type == VIK_LAYER_PARAM_STRING )
179       {
180         rv = gtk_entry_new ();
181         gtk_entry_set_visibility ( GTK_ENTRY(rv), FALSE );
182         if ( vlpd.s )
183           gtk_entry_set_text ( GTK_ENTRY(rv), vlpd.s );
184         gtk_widget_set_tooltip_text ( GTK_WIDGET(rv),
185                                      _("Take care that this password will be stored clearly in a plain file.") );
186       }
187       break;
188     case VIK_LAYER_WIDGET_FILEENTRY:
189       if ( param->type == VIK_LAYER_PARAM_STRING )
190       {
191         rv = vik_file_entry_new (GTK_FILE_CHOOSER_ACTION_OPEN, GPOINTER_TO_INT(param->widget_data));
192         if ( vlpd.s )
193           vik_file_entry_set_filename ( VIK_FILE_ENTRY(rv), vlpd.s );
194       }
195       break;
196     case VIK_LAYER_WIDGET_FOLDERENTRY:
197       if ( param->type == VIK_LAYER_PARAM_STRING )
198       {
199         rv = vik_file_entry_new (GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER, VF_FILTER_NONE);
200         if ( vlpd.s )
201           vik_file_entry_set_filename ( VIK_FILE_ENTRY(rv), vlpd.s );
202       }
203       break;
204
205     case VIK_LAYER_WIDGET_FILELIST:
206       if ( param->type == VIK_LAYER_PARAM_STRING_LIST )
207       {
208         rv = vik_file_list_new ( _(param->title), NULL );
209         vik_file_list_set_files ( VIK_FILE_LIST(rv), vlpd.sl );
210       }
211       break;
212     case VIK_LAYER_WIDGET_HSCALE:
213       if ( (param->type == VIK_LAYER_PARAM_DOUBLE || param->type == VIK_LAYER_PARAM_UINT
214            || param->type == VIK_LAYER_PARAM_INT)  && param->widget_data )
215       {
216         gdouble init_val = (param->type == VIK_LAYER_PARAM_DOUBLE) ? vlpd.d : (param->type == VIK_LAYER_PARAM_UINT ? vlpd.u : vlpd.i);
217         VikLayerParamScale *scale = (VikLayerParamScale *) param->widget_data;
218         rv = gtk_hscale_new_with_range ( scale->min, scale->max, scale->step );
219         gtk_scale_set_digits ( GTK_SCALE(rv), scale->digits );
220         gtk_range_set_value ( GTK_RANGE(rv), init_val );
221       }
222     default: break;
223   }
224   if ( rv && !gtk_widget_get_tooltip_text ( rv ) ) {
225     if ( param->tooltip )
226       gtk_widget_set_tooltip_text ( rv, _(param->tooltip) );
227   }
228   return rv;
229 }
230
231 VikLayerParamData a_uibuilder_widget_get_value ( GtkWidget *widget, VikLayerParam *param )
232 {
233   VikLayerParamData rv;
234   switch ( param->widget_type )
235   {
236     case VIK_LAYER_WIDGET_COLOR:
237       gtk_color_button_get_color ( GTK_COLOR_BUTTON(widget), &(rv.c) );
238       break;
239     case VIK_LAYER_WIDGET_CHECKBUTTON:
240       rv.b = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
241       break;
242     case VIK_LAYER_WIDGET_COMBOBOX:
243       if ( param->type == VIK_LAYER_PARAM_UINT )
244       {
245         rv.i = gtk_combo_box_get_active ( GTK_COMBO_BOX(widget) );
246         if ( rv.i == -1 ) rv.i = 0;
247         rv.u = rv.i;
248         if ( param->extra_widget_data )
249           rv.u = ((guint *)param->extra_widget_data)[rv.u];
250       }
251       if ( param->type == VIK_LAYER_PARAM_STRING)
252       {
253         if ( param->extra_widget_data )
254         {
255           /* Combobox displays labels and we want values from extra */
256           int pos = gtk_combo_box_get_active ( GTK_COMBO_BOX(widget) );
257           rv.s = ((const char **)param->extra_widget_data)[pos];
258         }
259         else
260         {
261           /* Return raw value */
262 #if GTK_CHECK_VERSION (2, 24, 0)
263           rv.s = gtk_entry_get_text (GTK_ENTRY (gtk_bin_get_child (GTK_BIN (widget))));
264 #else
265           rv.s = gtk_combo_box_get_active_text ( GTK_COMBO_BOX(widget) );
266 #endif
267         }
268         g_debug("%s: %s", __FUNCTION__, rv.s);
269       }
270       break;
271     case VIK_LAYER_WIDGET_RADIOGROUP:
272     case VIK_LAYER_WIDGET_RADIOGROUP_STATIC:
273       rv.u = vik_radio_group_get_selected(VIK_RADIO_GROUP(widget));
274       if ( param->extra_widget_data )
275         rv.u = GPOINTER_TO_UINT ( g_list_nth_data(param->extra_widget_data, rv.u) );
276       break;
277     case VIK_LAYER_WIDGET_SPINBUTTON:
278       if ( param->type == VIK_LAYER_PARAM_UINT )
279         rv.u = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON(widget) );
280       else if ( param->type == VIK_LAYER_PARAM_INT )
281         rv.i = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON(widget) );
282       else
283         rv.d = gtk_spin_button_get_value ( GTK_SPIN_BUTTON(widget) );
284       break;
285     case VIK_LAYER_WIDGET_ENTRY:
286     case VIK_LAYER_WIDGET_PASSWORD:
287       rv.s = gtk_entry_get_text ( GTK_ENTRY(widget) );
288       break;
289     case VIK_LAYER_WIDGET_FILEENTRY:
290     case VIK_LAYER_WIDGET_FOLDERENTRY:
291       rv.s = vik_file_entry_get_filename ( VIK_FILE_ENTRY(widget) );
292       break;
293     case VIK_LAYER_WIDGET_FILELIST:
294       rv.sl = vik_file_list_get_files ( VIK_FILE_LIST(widget) );
295       break;
296     case VIK_LAYER_WIDGET_HSCALE:
297       if ( param->type == VIK_LAYER_PARAM_UINT )
298         rv.u = (guint32) gtk_range_get_value ( GTK_RANGE(widget) );
299       else if ( param->type == VIK_LAYER_PARAM_INT )
300         rv.i = (gint32) gtk_range_get_value ( GTK_RANGE(widget) );
301       else
302         rv.d = gtk_range_get_value ( GTK_RANGE(widget) );
303       break;
304     default: break;
305   }
306
307   // Perform conversion if necessary
308   if ( param->convert_to_internal )
309     rv = param->convert_to_internal ( rv );
310
311   return rv;
312 }
313
314 //static void draw_to_image_file_total_area_cb (GtkSpinButton *spinbutton, gpointer *pass_along)
315 gint a_uibuilder_properties_factory ( const gchar *dialog_name,
316                                       GtkWindow *parent,
317                                       VikLayerParam *params,
318                                       guint16 params_count,
319                                       gchar **groups,
320                                       guint8 groups_count,
321                                       gboolean (*setparam) (gpointer,guint16,VikLayerParamData,gpointer,gboolean),
322                                       gpointer pass_along1,
323                                       gpointer pass_along2,
324                                       VikLayerParamData (*getparam) (gpointer,guint16,gboolean),
325                                       gpointer pass_along_getparam,
326                                       void (*changeparam) (GtkWidget*, ui_change_values) )
327                                       /* pass_along1 and pass_along2 are for set_param first and last params */
328 {
329   guint16 i, j, widget_count = 0;
330   gboolean must_redraw = FALSE;
331
332   if ( ! params )
333     return 1; /* no params == no options, so all is good */
334
335   for ( i = 0; i < params_count; i++ )
336     if ( params[i].group != VIK_LAYER_NOT_IN_PROPERTIES )
337       widget_count++;
338
339   if ( widget_count == 0)
340     return 0; /* TODO -- should be one? */
341   else
342   {
343     /* create widgets and titles; place in table */
344     GtkWidget *dialog = gtk_dialog_new_with_buttons ( dialog_name,
345                                                       parent,
346                                                       GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
347                                                       GTK_STOCK_CANCEL, GTK_RESPONSE_REJECT,
348                                                       GTK_STOCK_OK, GTK_RESPONSE_ACCEPT, NULL );
349     gtk_dialog_set_default_response ( GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT );
350     GtkWidget *response_w = NULL;
351 #if GTK_CHECK_VERSION (2, 20, 0)
352     response_w = gtk_dialog_get_widget_for_response ( GTK_DIALOG(dialog), GTK_RESPONSE_ACCEPT );
353 #endif
354     gint resp;
355
356     GtkWidget *table = NULL;
357     GtkWidget **tables = NULL; /* for more than one group */
358
359     GtkWidget *notebook = NULL;
360     GtkWidget **labels = g_malloc ( sizeof(GtkWidget *) * widget_count );
361     GtkWidget **widgets = g_malloc ( sizeof(GtkWidget *) * widget_count );
362     ui_change_values *change_values = g_malloc ( sizeof(ui_change_values) * widget_count );
363
364     if ( groups && groups_count > 1 )
365     {
366       guint8 current_group;
367       guint16 tab_widget_count;
368       notebook = gtk_notebook_new ();
369       // Switch to vertical notebook mode when many groups
370       if ( groups_count > 4 )
371         gtk_notebook_set_tab_pos ( GTK_NOTEBOOK(notebook), GTK_POS_LEFT );
372       gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), notebook, FALSE, FALSE, 0);
373       tables = g_malloc ( sizeof(GtkWidget *) * groups_count );
374       for ( current_group = 0; current_group < groups_count; current_group++ )
375       {
376         tab_widget_count = 0;
377         for ( j = 0; j < params_count; j ++ )
378           if ( params[j].group == current_group )
379             tab_widget_count++;
380
381         if ( tab_widget_count )
382         {
383           tables[current_group] = gtk_table_new ( tab_widget_count, 1, FALSE );
384           gtk_notebook_append_page ( GTK_NOTEBOOK(notebook), tables[current_group], gtk_label_new(groups[current_group]) );
385         }
386       }
387     }
388     else
389     {
390       table = gtk_table_new( widget_count, 1, FALSE );
391       gtk_box_pack_start (GTK_BOX(gtk_dialog_get_content_area(GTK_DIALOG(dialog))), table, FALSE, FALSE, 0);
392     }
393
394     for ( i = 0, j = 0; i < params_count; i++ )
395     {
396       if ( params[i].group != VIK_LAYER_NOT_IN_PROPERTIES )
397       {
398         if ( tables )
399           table = tables[MAX(0, params[i].group)]; /* round up NOT_IN_GROUP, that's not reasonable here */
400
401         widgets[j] = a_uibuilder_new_widget ( &(params[i]), getparam ( pass_along_getparam, i, FALSE ) );
402
403         if ( widgets[j] ) {
404           labels[j] = gtk_label_new(_(params[i].title));
405           gtk_table_attach ( GTK_TABLE(table), labels[j], 0, 1, j, j+1, 0, 0, 0, 0 );
406           gtk_table_attach ( GTK_TABLE(table), widgets[j], 1, 2, j, j+1, GTK_EXPAND | GTK_FILL, 0, 2, 2 );
407
408           if ( changeparam )
409           {
410             change_values[j][UI_CHG_LAYER] = pass_along1;
411             change_values[j][UI_CHG_PARAM] = &params[i];
412             change_values[j][UI_CHG_PARAM_ID] = GINT_TO_POINTER((gint)i);
413             change_values[j][UI_CHG_WIDGETS] = widgets;
414             change_values[j][UI_CHG_LABELS] = labels;
415
416             switch ( params[i].widget_type )
417             {
418               // Change conditions for other widget types can be added when needed
419               case VIK_LAYER_WIDGET_COMBOBOX:
420                 g_signal_connect ( G_OBJECT(widgets[j]), "changed", G_CALLBACK(changeparam), change_values[j] );
421                 break;
422               case VIK_LAYER_WIDGET_CHECKBUTTON:
423                 g_signal_connect ( G_OBJECT(widgets[j]), "toggled", G_CALLBACK(changeparam), change_values[j] );
424                 break;
425               default: break;
426             }
427           }
428         }
429         j++;
430       }
431     }
432
433     // Repeat run through to force changeparam callbacks now that the widgets have been created
434     // This primarily so the widget sensitivities get set up
435     if ( changeparam ) {
436       for ( i = 0, j = 0; i < params_count; i++ ) {
437         if ( params[i].group != VIK_LAYER_NOT_IN_PROPERTIES ) {
438           if ( widgets[j] ) {
439             changeparam ( widgets[j], change_values[j] );
440           }
441           j++;
442         }
443       }
444     }
445
446     if ( response_w )
447       gtk_widget_grab_focus ( response_w );
448
449     gtk_widget_show_all ( dialog );
450
451     resp = gtk_dialog_run (GTK_DIALOG (dialog));
452     if ( resp == GTK_RESPONSE_ACCEPT )
453     {
454       for ( i = 0, j = 0; i < params_count; i++ )
455       {
456         if ( params[i].group != VIK_LAYER_NOT_IN_PROPERTIES )
457         {
458           if ( setparam ( pass_along1,
459                           i,
460                           a_uibuilder_widget_get_value ( widgets[j], &(params[i]) ),
461                           pass_along2,
462                           FALSE ) )
463             must_redraw = TRUE;
464           j++;
465         }
466       }
467
468       gtk_widget_destroy ( dialog ); /* hide before redrawing. */
469       g_free ( widgets );
470       g_free ( labels );
471       g_free ( change_values );
472       if ( tables )
473         g_free ( tables );
474
475       return must_redraw ? 2 : 3; /* user clicked OK */
476     }
477
478     if ( tables )
479       g_free ( tables );
480     gtk_widget_destroy ( dialog );
481     g_free ( widgets );
482     return 0;
483   }
484 }
485
486
487 static void uibuilder_run_setparam ( VikLayerParamData *paramdatas, guint16 i, VikLayerParamData data, VikLayerParam *params )
488 {
489   /* could have to copy it if it's a string! */
490   switch ( params[i].type ) {
491     case VIK_LAYER_PARAM_STRING:
492       paramdatas[i].s = g_strdup ( data.s );
493       break;
494     default:
495      paramdatas[i] = data; /* string list will have to be freed by layer. anything else not freed */
496   }
497 }
498
499 static VikLayerParamData uibuilder_run_getparam ( VikLayerParamData *params_defaults, guint16 i )
500 {
501   return params_defaults[i];
502 }
503
504
505 VikLayerParamData *a_uibuilder_run_dialog (  const gchar *dialog_name, GtkWindow *parent, VikLayerParam *params,
506                         guint16 params_count, gchar **groups, guint8 groups_count,
507                         VikLayerParamData *params_defaults )
508 {
509     VikLayerParamData *paramdatas = g_new(VikLayerParamData, params_count);
510     if ( a_uibuilder_properties_factory ( dialog_name,
511                                           parent,
512                                           params, 
513                                           params_count, 
514                                           groups, 
515                                           groups_count,
516                                           (gpointer) uibuilder_run_setparam, 
517                                           paramdatas, 
518                                           params,
519                                           (gpointer) uibuilder_run_getparam, 
520                                           params_defaults,
521                                           NULL ) > 0 ) {
522
523       return paramdatas;
524     }
525     g_free ( paramdatas );
526     return NULL;
527 }
528
529 /* frees data from last (if ness) */
530 void a_uibuilder_free_paramdatas ( VikLayerParamData *paramdatas, VikLayerParam *params, guint16 params_count )
531 {
532   int i;
533   /* may have to free strings, etc. */
534   for ( i = 0; i < params_count; i++ ) {
535     switch ( params[i].type ) {
536       case VIK_LAYER_PARAM_STRING:
537         g_free ( (gchar *) paramdatas[i].s );
538         break;
539       case VIK_LAYER_PARAM_STRING_LIST: {
540         /* should make a util function out of this */
541         GList *iter = paramdatas[i].sl;
542         while ( iter ) {
543           g_free ( iter->data );
544           iter = iter->next;
545         }
546         g_list_free ( paramdatas[i].sl );
547         break;
548       default:
549         break;
550       }
551     }
552   }
553   g_free ( paramdatas );
554 }