1 /* demo-Gtk-conf.c --- implements the dynamic configuration dialogs.
2 * xscreensaver, Copyright (c) 2001-2013 Jamie Zawinski <jwz@jwz.org>
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation. No representations are made about the suitability of this
9 * software for any purpose. It is provided "as is" without express or
17 #if defined(HAVE_GTK) && defined(HAVE_XML) /* whole file */
19 #include <xscreensaver-intl.h>
32 * Both of these workarounds can be removed when support for ancient
33 * libxml versions is dropped. versions 1.8.11 and 2.3.4 provide the
38 * Older libxml polluted the global headerspace, while libxml2 fixed
39 * this. To support both old and recent libxmls, we have this
42 #ifdef HAVE_OLD_XML_HEADERS
44 #else /* ! HAVE_OLD_XML_HEADERS */
45 # include <libxml/parser.h>
46 #endif /* HAVE_OLD_XML_HEADERS */
49 * handle non-native spelling mistakes in earlier versions and provide
50 * the source-compat fix for this that may not be in older versions.
52 #ifndef xmlChildrenNode
53 # if LIBXML_VERSION >= 20000
54 # define xmlChildrenNode children
55 # define xmlRootNode children
57 # define xmlChildrenNode childs
58 # define xmlRootNode root
59 # endif /* LIBXML_VERSION */
60 #endif /* xmlChildrenNode */
64 #include "demo-Gtk-conf.h"
66 /* Deal with deprecation of direct access to struct fields on the way to GTK3
67 See http://live.gnome.org/GnomeGoals/UseGseal
69 #if GTK_CHECK_VERSION(2,14,0)
70 # define GET_PARENT(w) gtk_widget_get_parent (w)
71 # define GET_ADJ_VALUE(a) gtk_adjustment_get_value (a)
72 # define GET_ADJ_UPPER(a) gtk_adjustment_get_upper (a)
73 # define GET_ADJ_LOWER(a) gtk_adjustment_get_lower (a)
75 # define GET_PARENT(w) ((w)->parent)
76 # define GET_ADJ_VALUE(a) ((a)->value)
77 # define GET_ADJ_UPPER(a) ((a)->upper)
78 # define GET_ADJ_LOWER(a) ((a)->lower)
82 extern const char *blurb (void);
85 const char *hack_configuration_path = HACK_CONFIGURATION_PATH;
87 static gboolean debug_p = FALSE;
90 #define MIN_SLIDER_WIDTH 150
91 #define MIN_SPINBUTTON_WIDTH 48
92 #define MIN_LABEL_WIDTH 70
114 xmlChar *id; /* widget name */
115 xmlChar *label; /* heading label, or null */
117 /* command, fake, description, fakepreview, string, file
119 xmlChar *string; /* file name, description, whatever. */
121 /* slider, spinbutton
123 xmlChar *low_label; /* label for the left side */
124 xmlChar *high_label; /* label for the right side */
125 float low; /* minimum value */
126 float high; /* maximum value */
127 float value; /* default value */
128 gboolean integer_p; /* whether the range is integral, or real */
129 xmlChar *arg; /* command-line option to set (substitute "%") */
130 gboolean invert_p; /* whether to flip the value and pretend the
131 range goes from hi-low instead of low-hi. */
133 /* boolean, select-option
135 xmlChar *arg_set; /* command-line option to set for "yes", or null */
136 xmlChar *arg_unset; /* command-line option to set for "no", or null */
149 static parameter *make_select_option (const char *file, xmlNodePtr);
150 static void make_parameter_widget (const char *filename,
151 parameter *, GtkWidget *);
152 static void browse_button_cb (GtkButton *button, gpointer user_data);
155 /* Frees the parameter object and all strings and sub-parameters.
156 Does not destroy the widget, if any.
159 free_parameter (parameter *p)
162 if (p->id) free (p->id);
163 if (p->label) free (p->label);
164 if (p->string) free (p->string);
165 if (p->low_label) free (p->low_label);
166 if (p->high_label) free (p->high_label);
167 if (p->arg) free (p->arg);
168 if (p->arg_set) free (p->arg_set);
169 if (p->arg_unset) free (p->arg_unset);
171 for (rest = p->options; rest; rest = rest->next)
173 free_parameter ((parameter *) rest->data);
175 memset (p, ~0, sizeof(*p));
180 /* Debugging: dumps out a `parameter' structure.
184 describe_parameter (FILE *out, parameter *p)
189 case COMMAND: fprintf (out, "command"); break;
190 case FAKE: fprintf (out, "fake"); break;
191 case DESCRIPTION: fprintf (out, "_description"); break;
192 case FAKEPREVIEW: fprintf (out, "fakepreview"); break;
193 case STRING: fprintf (out, "string"); break;
194 case FILENAME: fprintf (out, "filename"); break;
195 case SLIDER: fprintf (out, "number type=\"slider\""); break;
196 case SPINBUTTON: fprintf (out, "number type=\"spinbutton\""); break;
197 case BOOLEAN: fprintf (out, "boolean"); break;
198 case SELECT: fprintf (out, "select"); break;
199 default: abort(); break;
201 if (p->id) fprintf (out, " id=\"%s\"", p->id);
202 if (p->label) fprintf (out, " _label=\"%s\"", p->label);
203 if (p->string && p->type != DESCRIPTION)
204 fprintf (out, " string=\"%s\"", p->string);
205 if (p->low_label) fprintf (out, " _low-label=\"%s\"", p->low_label);
206 if (p->high_label) fprintf (out, " _high-label=\"%s\"", p->high_label);
207 if (p->low) fprintf (out, " low=\"%.2f\"", p->low);
208 if (p->high) fprintf (out, " high=\"%.2f\"", p->high);
209 if (p->value) fprintf (out, " default=\"%.2f\"", p->value);
210 if (p->arg) fprintf (out, " arg=\"%s\"", p->arg);
211 if (p->invert_p) fprintf (out, " convert=\"invert\"");
212 if (p->arg_set) fprintf (out, " arg-set=\"%s\"", p->arg_set);
213 if (p->arg_unset) fprintf (out, " arg-unset=\"%s\"", p->arg_unset);
214 fprintf (out, ">\n");
216 if (p->type == SELECT)
219 for (opt = p->options; opt; opt = opt->next)
221 parameter *o = (parameter *) opt->data;
222 if (o->type != SELECT_OPTION) abort();
223 fprintf (out, " <option");
224 if (o->id) fprintf (out, " id=\"%s\"", o->id);
225 if (o->label) fprintf (out, " _label=\"%s\"", o->label);
226 if (o->arg_set) fprintf (out, " arg-set=\"%s\"", o->arg_set);
227 if (o->arg_unset) fprintf (out, " arg-unset=\"%s\"", o->arg_unset);
228 fprintf (out, ">\n");
230 fprintf (out, "</select>\n");
232 else if (p->type == DESCRIPTION)
235 fprintf (out, " %s\n", p->string);
236 fprintf (out, "</_description>\n");
242 /* Like xmlGetProp() but parses a float out of the string.
243 If the number was expressed as a float and not an integer
244 (that is, the string contained a decimal point) then
245 `floatp' is set to TRUE. Otherwise, it is unchanged.
248 xml_get_float (xmlNodePtr node, const xmlChar *name, gboolean *floatpP)
250 const char *s = (char *) xmlGetProp (node, name);
253 if (!s || 1 != sscanf (s, "%f %c", &f, &c))
257 if (strchr (s, '.')) *floatpP = TRUE;
263 static void sanity_check_parameter (const char *filename,
264 const xmlChar *node_name,
266 static void sanity_check_text_node (const char *filename,
267 const xmlNodePtr node);
268 static void sanity_check_menu_options (const char *filename,
269 const xmlChar *node_name,
272 /* Allocates and returns a new `parameter' object based on the
273 properties in the given XML node. Returns 0 if there's nothing
274 to create (comment, or unknown tag.)
277 make_parameter (const char *filename, xmlNodePtr node)
280 const char *name = (char *) node->name;
282 gboolean floatp = FALSE;
284 if (node->type == XML_COMMENT_NODE)
287 p = calloc (1, sizeof(*p));
290 else if (!strcmp (name, "command")) p->type = COMMAND;
291 else if (!strcmp (name, "fullcommand")) p->type = COMMAND;
292 else if (!strcmp (name, "_description")) p->type = DESCRIPTION;
293 else if (!strcmp (name, "fakepreview")) p->type = FAKEPREVIEW;
294 else if (!strcmp (name, "fake")) p->type = FAKE;
295 else if (!strcmp (name, "boolean")) p->type = BOOLEAN;
296 else if (!strcmp (name, "string")) p->type = STRING;
297 else if (!strcmp (name, "file")) p->type = FILENAME;
298 else if (!strcmp (name, "number")) p->type = SPINBUTTON;
299 else if (!strcmp (name, "select")) p->type = SELECT;
301 else if (!strcmp (name, "xscreensaver-text") || /* ignored in X11; */
302 !strcmp (name, "xscreensaver-image") || /* used in Cocoa. */
303 !strcmp (name, "xscreensaver-updater"))
308 else if (node->type == XML_TEXT_NODE)
310 sanity_check_text_node (filename, node);
317 fprintf (stderr, "%s: WARNING: %s: unknown tag: \"%s\"\n",
318 blurb(), filename, name);
323 if (p->type == SPINBUTTON)
325 const char *type = (char *) xmlGetProp (node, (xmlChar *) "type");
326 if (!type || !strcmp (type, "spinbutton")) p->type = SPINBUTTON;
327 else if (!strcmp (type, "slider")) p->type = SLIDER;
331 fprintf (stderr, "%s: WARNING: %s: unknown %s type: \"%s\"\n",
332 blurb(), filename, name, type);
337 else if (p->type == DESCRIPTION)
339 if (node->xmlChildrenNode &&
340 node->xmlChildrenNode->type == XML_TEXT_NODE &&
341 !node->xmlChildrenNode->next)
342 p->string = (xmlChar *)
343 strdup ((char *) node->xmlChildrenNode->content);
346 p->id = xmlGetProp (node, (xmlChar *) "id");
347 p->label = xmlGetProp (node, (xmlChar *) "_label");
348 p->low_label = xmlGetProp (node, (xmlChar *) "_low-label");
349 p->high_label = xmlGetProp (node, (xmlChar *) "_high-label");
350 p->low = xml_get_float (node, (xmlChar *) "low", &floatp);
351 p->high = xml_get_float (node, (xmlChar *) "high", &floatp);
352 p->value = xml_get_float (node, (xmlChar *) "default", &floatp);
353 p->integer_p = !floatp;
354 convert = (char *) xmlGetProp (node, (xmlChar *) "convert");
355 p->invert_p = (convert && !strcmp (convert, "invert"));
356 p->arg = xmlGetProp (node, (xmlChar *) "arg");
357 p->arg_set = xmlGetProp (node, (xmlChar *) "arg-set");
358 p->arg_unset = xmlGetProp (node, (xmlChar *) "arg-unset");
360 /* Check for missing decimal point */
363 (p->high != p->low) &&
364 (p->high - p->low) <= 1)
366 "%s: WARNING: %s: %s: range [%.1f, %.1f] shouldn't be integral!\n",
367 blurb(), filename, p->id,
370 if (p->type == SELECT)
373 for (kids = node->xmlChildrenNode; kids; kids = kids->next)
375 parameter *s = make_select_option (filename, kids);
377 p->options = g_list_append (p->options, s);
381 sanity_check_parameter (filename, (const xmlChar *) name, p);
387 /* Allocates and returns a new SELECT_OPTION `parameter' object based
388 on the properties in the given XML node. Returns 0 if there's nothing
389 to create (comment, or unknown tag.)
392 make_select_option (const char *filename, xmlNodePtr node)
394 if (node->type == XML_COMMENT_NODE)
396 else if (node->type == XML_TEXT_NODE)
398 sanity_check_text_node (filename, node);
401 else if (node->type != XML_ELEMENT_NODE)
405 "%s: WARNING: %s: %s: unexpected child tag type %d\n",
406 blurb(), filename, node->name, (int)node->type);
409 else if (strcmp ((char *) node->name, "option"))
413 "%s: WARNING: %s: %s: child not an option tag: \"%s\"\n",
414 blurb(), filename, node->name, node->name);
419 parameter *s = calloc (1, sizeof(*s));
421 s->type = SELECT_OPTION;
422 s->id = xmlGetProp (node, (xmlChar *) "id");
423 s->label = xmlGetProp (node, (xmlChar *) "_label");
424 s->arg_set = xmlGetProp (node, (xmlChar *) "arg-set");
425 s->arg_unset = xmlGetProp (node, (xmlChar *) "arg-unset");
427 sanity_check_parameter (filename, node->name, s);
433 /* Rudimentary check to make sure someone hasn't typed "arg-set="
434 when they should have typed "arg=", etc.
437 sanity_check_parameter (const char *filename, const xmlChar *node_name,
455 memset (&allowed, 0, sizeof (allowed));
456 memset (&require, 0, sizeof (require));
467 allowed.string = TRUE;
474 allowed.label = TRUE;
475 require.label = TRUE;
482 allowed.label = TRUE;
489 allowed.label = TRUE;
490 allowed.low_label = TRUE;
491 allowed.high_label = TRUE;
495 /* require.low = TRUE; -- may be 0 */
497 /* require.high = TRUE; -- may be 0 */
498 allowed.value = TRUE;
499 /* require.value = TRUE; -- may be 0 */
500 allowed.invert_p = TRUE;
505 allowed.label = TRUE;
509 /* require.low = TRUE; -- may be 0 */
511 /* require.high = TRUE; -- may be 0 */
512 allowed.value = TRUE;
513 /* require.value = TRUE; -- may be 0 */
514 allowed.invert_p = TRUE;
519 allowed.label = TRUE;
520 allowed.arg_set = TRUE;
521 allowed.arg_unset = TRUE;
529 allowed.label = TRUE;
530 require.label = TRUE;
531 allowed.arg_set = TRUE;
539 fprintf (stderr, "%s: %s: " STR " in <%s%s id=\"%s\">\n", \
540 blurb(), filename, node_name, \
541 (!strcmp((char *) node_name, "number") \
542 ? (p->type == SPINBUTTON ? " type=spinbutton" : " type=slider")\
544 (p->id ? (char *) p->id : ""))
545 # define CHECK(SLOT,NAME) \
546 if (p->SLOT && !allowed.SLOT) \
547 WARN ("\"" NAME "\" is not a valid option"); \
548 if (!p->SLOT && require.SLOT) \
549 WARN ("\"" NAME "\" is required")
552 CHECK (label, "_label");
553 CHECK (string, "(body text)");
554 CHECK (low_label, "_low-label");
555 CHECK (high_label, "_high-label");
557 CHECK (high, "high");
558 CHECK (value, "default");
560 CHECK (invert_p, "convert");
561 CHECK (arg_set, "arg-set");
562 CHECK (arg_unset, "arg-unset");
566 if (p->type == SELECT)
567 sanity_check_menu_options (filename, node_name, p);
572 sanity_check_menu_options (const char *filename, const xmlChar *node_name,
580 /* fprintf (stderr, "\n## %s\n", p->id);*/
581 for (opts = p->options; opts; opts = opts->next)
583 parameter *s = (parameter *) opts->data;
584 if (!s->arg_set) nulls++;
589 char *a = strdup ((char *) s->arg_set);
590 char *spc = strchr (a, ' ');
594 if (strcmp (a, prefix))
596 "%s: %s: both \"%s\" and \"%s\" used in <select id=\"%s\">\n",
597 blurb(), filename, prefix, a, p->id);
603 /* fprintf (stderr, "\n %s\n", s->arg_set);*/
606 if (prefix) free (prefix);
610 "%s: %s: more than one menu with no arg-set in <select id=\"%s\">\n",
611 blurb(), filename, p->id);
615 /* "text" nodes show up for all the non-tag text in the file, including
616 all the newlines between tags. Warn if there is text there that
620 sanity_check_text_node (const char *filename, const xmlNodePtr node)
622 const char *body = (const char *) node->content;
623 if (node->type != XML_TEXT_NODE) abort();
624 while (isspace (*body)) body++;
626 fprintf (stderr, "%s: WARNING: %s: random text present: \"%s\"\n",
627 blurb(), filename, body);
631 /* Returns a list of strings, every switch mentioned in the parameters.
632 The strings must be freed.
635 get_all_switches (const char *filename, GList *parms)
639 for (p = parms; p; p = p->next)
641 parameter *pp = (parameter *) p->data;
643 if (pp->type == SELECT)
645 GList *list2 = get_all_switches (filename, pp->options);
646 switches = g_list_concat (switches, list2);
648 if (pp->arg && *pp->arg)
649 switches = g_list_append (switches, strdup ((char *) pp->arg));
650 if (pp->arg_set && *pp->arg_set)
651 switches = g_list_append (switches, strdup ((char *) pp->arg_set));
652 if (pp->arg_unset && *pp->arg_unset)
653 switches = g_list_append (switches, strdup ((char *) pp->arg_unset));
659 /* Ensures that no switch is mentioned more than once.
662 sanity_check_parameters (const char *filename, GList *parms)
664 GList *list = get_all_switches (filename, parms);
666 for (p = list; p; p = p->next)
668 char *sw = (char *) p->data;
671 if (*sw != '-' && *sw != '+')
672 fprintf (stderr, "%s: %s: switch does not begin with hyphen \"%s\"\n",
673 blurb(), filename, sw);
675 for (p2 = p->next; p2; p2 = p2->next)
677 const char *sw2 = (const char *) p2->data;
678 if (!strcmp (sw, sw2))
679 fprintf (stderr, "%s: %s: duplicate switch \"%s\"\n",
680 blurb(), filename, sw);
689 /* Helper for make_parameters()
692 make_parameters_1 (const char *filename, xmlNodePtr node, GtkWidget *parent)
696 for (; node; node = node->next)
698 const char *name = (char *) node->name;
699 if (!strcmp (name, "hgroup") ||
700 !strcmp (name, "vgroup"))
702 GtkWidget *box = (*name == 'h'
703 ? gtk_hbox_new (FALSE, 0)
704 : gtk_vbox_new (FALSE, 0));
706 gtk_widget_show (box);
707 gtk_box_pack_start (GTK_BOX (parent), box, FALSE, FALSE, 0);
709 list2 = make_parameters_1 (filename, node->xmlChildrenNode, box);
711 list = g_list_concat (list, list2);
715 parameter *p = make_parameter (filename, node);
718 list = g_list_append (list, p);
719 make_parameter_widget (filename, p, parent);
727 /* Calls make_parameter() and make_parameter_widget() on each relevant
728 tag in the XML tree. Also handles the "hgroup" and "vgroup" flags.
729 Returns a GList of `parameter' objects.
732 make_parameters (const char *filename, xmlNodePtr node, GtkWidget *parent)
734 for (; node; node = node->next)
736 if (node->type == XML_ELEMENT_NODE &&
737 !strcmp ((char *) node->name, "screensaver"))
738 return make_parameters_1 (filename, node->xmlChildrenNode, parent);
745 invert_range (gfloat low, gfloat high, gfloat value)
747 gfloat range = high-low;
748 gfloat off = value-low;
749 return (low + (range - off));
753 static GtkAdjustment *
754 make_adjustment (const char *filename, parameter *p)
756 float range = (p->high - p->low);
757 float value = (p->invert_p
758 ? invert_range (p->low, p->high, p->value)
760 gfloat si = (p->high - p->low) / 100;
761 gfloat pi = (p->high - p->low) / 10;
762 gfloat page_size = ((p->type == SLIDER) ? 1 : 0);
764 if (p->value < p->low || p->value > p->high)
766 if (debug_p && p->integer_p)
767 fprintf (stderr, "%s: WARNING: %s: %d is not in range [%d, %d]\n",
769 (int) p->value, (int) p->low, (int) p->high);
772 "%s: WARNING: %s: %.2f is not in range [%.2f, %.2f]\n",
773 blurb(), filename, p->value, p->low, p->high);
774 value = (value < p->low ? p->low : p->high);
777 else if (debug_p && p->value < 1000 && p->high >= 10000)
781 "%s: WARNING: %s: %d is suspicious for range [%d, %d]\n",
783 (int) p->value, (int) p->low, (int) p->high);
786 "%s: WARNING: %s: %.2f is suspicious for range [%.2f, %.2f]\n",
787 blurb(), filename, p->value, p->low, p->high);
791 si = (int) (si + 0.5);
792 pi = (int) (pi + 0.5);
796 if (range <= 500) si = 1;
798 return GTK_ADJUSTMENT (gtk_adjustment_new (value,
807 set_widget_min_width (GtkWidget *w, int width)
810 gtk_widget_size_request (GTK_WIDGET (w), &req);
811 if (req.width < width)
812 gtk_widget_set_size_request (GTK_WIDGET (w), width, -1);
816 /* If we're inside a vbox, we need to put an hbox in it, or labels appear
817 on top instead of to the left, and things stretch to the full width of
821 insert_fake_hbox (GtkWidget *parent)
823 if (GTK_IS_VBOX (parent))
825 GtkWidget *hbox = gtk_hbox_new (FALSE, 0);
826 gtk_box_pack_start (GTK_BOX (parent), hbox, FALSE, FALSE, 4);
827 gtk_widget_show (hbox);
835 link_atk_label_to_widget(GtkWidget *label, GtkWidget *widget)
837 AtkObject *atk_label = gtk_widget_get_accessible (label);
838 AtkObject *atk_widget = gtk_widget_get_accessible (widget);
840 atk_object_add_relationship (atk_label, ATK_RELATION_LABEL_FOR,
842 atk_object_add_relationship (atk_widget, ATK_RELATION_LABELLED_BY,
846 /* Given a `parameter' struct, allocates an appropriate GtkWidget for it,
847 and stores it in `p->widget'.
848 `parent' must be a GtkBox.
851 make_parameter_widget (const char *filename, parameter *p, GtkWidget *parent)
853 const char *label = (char *) p->label;
854 if (p->widget) return;
860 GtkWidget *entry = gtk_entry_new ();
861 parent = insert_fake_hbox (parent);
864 GtkWidget *w = gtk_label_new (_(label));
865 link_atk_label_to_widget (w, entry);
866 gtk_label_set_justify (GTK_LABEL (w), GTK_JUSTIFY_RIGHT);
867 gtk_misc_set_alignment (GTK_MISC (w), 1.0, 0.5);
868 set_widget_min_width (GTK_WIDGET (w), MIN_LABEL_WIDTH);
870 gtk_box_pack_start (GTK_BOX (parent), w, FALSE, FALSE, 4);
875 gtk_entry_set_text (GTK_ENTRY (p->widget), (char *) p->string);
876 gtk_box_pack_start (GTK_BOX (parent), p->widget, FALSE, FALSE, 4);
881 GtkWidget *L = gtk_label_new (label ? _(label) : "");
882 GtkWidget *entry = gtk_entry_new ();
883 GtkWidget *button = gtk_button_new_with_label (_("Browse..."));
884 link_atk_label_to_widget (L, entry);
885 gtk_widget_show (entry);
886 gtk_widget_show (button);
889 gtk_signal_connect (GTK_OBJECT (button),
890 "clicked", GTK_SIGNAL_FUNC (browse_button_cb),
893 gtk_label_set_justify (GTK_LABEL (L), GTK_JUSTIFY_RIGHT);
894 gtk_misc_set_alignment (GTK_MISC (L), 1.0, 0.5);
895 set_widget_min_width (GTK_WIDGET (L), MIN_LABEL_WIDTH);
899 gtk_entry_set_text (GTK_ENTRY (entry), (char *) p->string);
901 parent = insert_fake_hbox (parent);
902 gtk_box_pack_start (GTK_BOX (parent), L, FALSE, FALSE, 4);
903 gtk_box_pack_start (GTK_BOX (parent), entry, TRUE, TRUE, 4);
904 gtk_box_pack_start (GTK_BOX (parent), button, FALSE, FALSE, 4);
909 GtkAdjustment *adj = make_adjustment (filename, p);
910 GtkWidget *scale = gtk_hscale_new (adj);
911 GtkWidget *labelw = 0;
915 labelw = gtk_label_new (_(label));
916 link_atk_label_to_widget (labelw, scale);
917 gtk_label_set_justify (GTK_LABEL (labelw), GTK_JUSTIFY_LEFT);
918 gtk_misc_set_alignment (GTK_MISC (labelw), 0.0, 0.5);
919 set_widget_min_width (GTK_WIDGET (labelw), MIN_LABEL_WIDTH);
920 gtk_widget_show (labelw);
921 gtk_box_pack_start (GTK_BOX (parent), labelw, FALSE, FALSE, 2);
924 /* Do this after 'labelw' so that it appears above, not to left. */
925 parent = insert_fake_hbox (parent);
929 GtkWidget *w = gtk_label_new (_((char *) p->low_label));
930 link_atk_label_to_widget (w, scale);
931 gtk_label_set_justify (GTK_LABEL (w), GTK_JUSTIFY_RIGHT);
932 gtk_misc_set_alignment (GTK_MISC (w), 1.0, 0.5);
933 set_widget_min_width (GTK_WIDGET (w), MIN_LABEL_WIDTH);
935 gtk_box_pack_start (GTK_BOX (parent), w, FALSE, FALSE, 4);
938 gtk_scale_set_value_pos (GTK_SCALE (scale), GTK_POS_BOTTOM);
939 gtk_scale_set_draw_value (GTK_SCALE (scale), debug_p);
940 gtk_scale_set_digits (GTK_SCALE (scale), (p->integer_p ? 0 : 2));
941 set_widget_min_width (GTK_WIDGET (scale), MIN_SLIDER_WIDTH);
943 gtk_box_pack_start (GTK_BOX (parent), scale, FALSE, FALSE, 4);
945 gtk_widget_show (scale);
949 GtkWidget *w = gtk_label_new (_((char *) p->high_label));
950 link_atk_label_to_widget (w, scale);
951 gtk_label_set_justify (GTK_LABEL (w), GTK_JUSTIFY_LEFT);
952 gtk_misc_set_alignment (GTK_MISC (w), 0.0, 0.5);
953 set_widget_min_width (GTK_WIDGET (w), MIN_LABEL_WIDTH);
955 gtk_box_pack_start (GTK_BOX (parent), w, FALSE, FALSE, 4);
963 GtkAdjustment *adj = make_adjustment (filename, p);
964 GtkWidget *spin = gtk_spin_button_new (adj, 15, 0);
965 gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spin), TRUE);
966 gtk_spin_button_set_snap_to_ticks (GTK_SPIN_BUTTON (spin), TRUE);
967 gtk_spin_button_set_value (GTK_SPIN_BUTTON (spin), GET_ADJ_VALUE(adj));
968 set_widget_min_width (GTK_WIDGET (spin), MIN_SPINBUTTON_WIDTH);
972 GtkWidget *w = gtk_label_new (_(label));
973 link_atk_label_to_widget (w, spin);
974 gtk_label_set_justify (GTK_LABEL (w), GTK_JUSTIFY_RIGHT);
975 gtk_misc_set_alignment (GTK_MISC (w), 1.0, 0.5);
976 set_widget_min_width (GTK_WIDGET (w), MIN_LABEL_WIDTH);
978 parent = insert_fake_hbox (parent);
979 gtk_box_pack_start (GTK_BOX (parent), w, FALSE, FALSE, 4);
982 gtk_widget_show (spin);
983 gtk_box_pack_start (GTK_BOX (parent), spin, FALSE, FALSE, 4);
990 p->widget = gtk_check_button_new_with_label (_(label));
991 /* Let these stretch -- doesn't hurt.
992 parent = insert_fake_hbox (parent);
994 gtk_box_pack_start (GTK_BOX (parent), p->widget, FALSE, FALSE, 4);
999 GtkWidget *opt = gtk_option_menu_new ();
1000 GtkWidget *menu = gtk_menu_new ();
1003 for (opts = p->options; opts; opts = opts->next)
1005 parameter *s = (parameter *) opts->data;
1006 GtkWidget *i = gtk_menu_item_new_with_label (_((char *) s->label));
1007 gtk_widget_show (i);
1008 gtk_menu_append (GTK_MENU (menu), i);
1011 gtk_option_menu_set_menu (GTK_OPTION_MENU (opt), menu);
1013 parent = insert_fake_hbox (parent);
1014 gtk_box_pack_start (GTK_BOX (parent), p->widget, FALSE, FALSE, 4);
1029 gtk_widget_set_name (p->widget, (char *) p->id);
1030 gtk_widget_show (p->widget);
1036 Absurdly, there is no GTK file entry widget, only a GNOME one,
1037 so in order to avoid depending on GNOME in this code, we have
1041 /* cancel button on GtkFileSelection: user_data unused */
1043 file_sel_cancel (GtkWidget *button, gpointer user_data)
1045 GtkWidget *dialog = button;
1046 while (GET_PARENT (dialog))
1047 dialog = GET_PARENT (dialog);
1048 gtk_widget_destroy (dialog);
1051 /* ok button on GtkFileSelection: user_data is the corresponding GtkEntry */
1053 file_sel_ok (GtkWidget *button, gpointer user_data)
1055 GtkWidget *entry = GTK_WIDGET (user_data);
1056 GtkWidget *dialog = button;
1059 while (GET_PARENT (dialog))
1060 dialog = GET_PARENT (dialog);
1061 gtk_widget_hide (dialog);
1063 path = gtk_file_selection_get_filename (GTK_FILE_SELECTION (dialog));
1064 /* apparently one doesn't free `path' */
1066 gtk_entry_set_text (GTK_ENTRY (entry), path);
1067 gtk_entry_set_position (GTK_ENTRY (entry), strlen (path));
1069 gtk_widget_destroy (dialog);
1072 /* WM close on GtkFileSelection: user_data unused */
1074 file_sel_close (GtkWidget *widget, GdkEvent *event, gpointer user_data)
1076 file_sel_cancel (widget, user_data);
1079 /* "Browse" button: user_data is the corresponding GtkEntry */
1081 browse_button_cb (GtkButton *button, gpointer user_data)
1083 GtkWidget *entry = GTK_WIDGET (user_data);
1084 const char *text = gtk_entry_get_text (GTK_ENTRY (entry));
1085 GtkFileSelection *selector =
1086 GTK_FILE_SELECTION (gtk_file_selection_new (_("Select file.")));
1088 gtk_file_selection_set_filename (selector, text);
1089 gtk_signal_connect (GTK_OBJECT (selector->ok_button),
1090 "clicked", GTK_SIGNAL_FUNC (file_sel_ok),
1092 gtk_signal_connect (GTK_OBJECT (selector->cancel_button),
1093 "clicked", GTK_SIGNAL_FUNC (file_sel_cancel),
1095 gtk_signal_connect (GTK_OBJECT (selector), "delete_event",
1096 GTK_SIGNAL_FUNC (file_sel_close),
1099 gtk_window_set_modal (GTK_WINDOW (selector), TRUE);
1100 gtk_widget_show (GTK_WIDGET (selector));
1104 /* Converting to and from command-lines
1108 /* Returns a copy of string that has been quoted according to shell rules:
1109 it may have been wrapped in "" and had some characters backslashed; or
1110 it may be unchanged.
1113 shell_quotify (const char *string)
1115 char *string2 = (char *) malloc ((strlen (string) * 2) + 10);
1118 int need_quotes = 0;
1123 for (in = string; *in; in++)
1134 else if (*in <= ' ' ||
1160 return strdup (string);
1163 /* Modify the string in place to remove wrapping double-quotes
1164 and interior backslashes.
1167 de_stringify (char *s)
1170 if (q != '\'' && q != '\"' && q != '`')
1172 memmove (s, s+1, strlen (s)+1);
1173 while (*s && *s != q)
1176 memmove (s, s+1, strlen (s)+1);
1179 if (*s != q) abort();
1184 /* Substitutes a shell-quotified version of `value' into `p->arg' at
1185 the place where the `%' character appeared.
1188 format_switch (parameter *p, const char *value)
1190 char *fmt = (char *) p->arg;
1193 if (!fmt || !value) return 0;
1194 v2 = shell_quotify (value);
1195 result = (char *) malloc (strlen (fmt) + strlen (v2) + 10);
1212 /* Maps a `parameter' to a command-line switch.
1213 Returns 0 if it can't, or if the parameter has the default value.
1216 parameter_to_switch (parameter *p)
1222 return strdup ((char *) p->arg);
1228 if (!p->widget) return 0;
1230 const char *s = gtk_entry_get_text (GTK_ENTRY (p->widget));
1232 if (!strcmp ((s ? s : ""),
1233 (p->string ? (char *) p->string : "")))
1234 v = 0; /* same as default */
1236 v = format_switch (p, s);
1238 /* don't free `s' */
1243 if (!p->widget) return 0;
1245 GtkAdjustment *adj =
1247 ? gtk_range_get_adjustment (GTK_RANGE (p->widget))
1248 : gtk_spin_button_get_adjustment (GTK_SPIN_BUTTON (p->widget)));
1251 float value = (p->invert_p
1252 ? invert_range (GET_ADJ_LOWER(adj), GET_ADJ_UPPER(adj),
1253 GET_ADJ_VALUE(adj)) - 1
1254 : GET_ADJ_VALUE(adj));
1256 if (value == p->value) /* same as default */
1260 sprintf (buf, "%d", (int) (value + (value > 0 ? 0.5 : -0.5)));
1262 sprintf (buf, "%.4f", value);
1264 s1 = strchr (buf, '.');
1267 char *s2 = s1 + strlen(s1) - 1;
1268 while (s2 > s1 && *s2 == '0') /* lose trailing zeroes */
1270 if (s2 >= s1 && *s2 == '.') /* lose trailing decimal */
1273 return format_switch (p, buf);
1276 if (!p->widget) return 0;
1278 GtkToggleButton *b = GTK_TOGGLE_BUTTON (p->widget);
1279 const char *s = (gtk_toggle_button_get_active (b)
1280 ? (char *) p->arg_set
1281 : (char *) p->arg_unset);
1288 if (!p->widget) return 0;
1290 GtkOptionMenu *opt = GTK_OPTION_MENU (p->widget);
1291 GtkMenu *menu = GTK_MENU (gtk_option_menu_get_menu (opt));
1292 GtkWidget *selected = gtk_menu_get_active (menu);
1293 GList *kids = gtk_container_children (GTK_CONTAINER (menu));
1294 int menu_elt = g_list_index (kids, (gpointer) selected);
1295 GList *ol = g_list_nth (p->options, menu_elt);
1296 parameter *o = (ol ? (parameter *) ol->data : 0);
1299 if (o->type != SELECT_OPTION) abort();
1300 s = (char *) o->arg_set;
1314 /* Maps a GList of `parameter' objects to a complete command-line string.
1315 All arguments will be properly quoted.
1318 parameters_to_cmd_line (GList *parms, gboolean default_p)
1320 int L = g_list_length (parms);
1322 char **strs = (char **) calloc (sizeof (*parms), L);
1327 for (i = 0, j = 0; parms; parms = parms->next, i++)
1329 parameter *p = (parameter *) parms->data;
1330 if (!default_p || p->type == COMMAND)
1332 char *s = parameter_to_switch (p);
1334 LL += (s ? strlen(s) : 0) + 1;
1338 result = (char *) malloc (LL + 10);
1340 for (i = 0; i < j; i++)
1343 strcpy (out, strs[i]);
1344 out += strlen (out);
1349 while (out > result && out[-1] == ' ') /* strip trailing spaces */
1357 /* Returns a GList of the tokens the string, using shell syntax;
1358 Quoted strings are handled as a single token.
1361 tokenize_command_line (const char *cmd)
1364 const char *s = cmd;
1369 for (; isspace(*s); s++); /* skip whitespace */
1372 if (*s == '\'' || *s == '\"' || *s == '`')
1376 while (*s && *s != q) /* skip to matching quote */
1378 if (*s == '\\' && s[1]) /* allowing backslash quoting */
1396 ss = (char *) malloc ((s - start) + 1);
1397 strncpy (ss, start, s-start);
1399 if (*ss == '\'' || *ss == '\"' || *ss == '`')
1401 result = g_list_append (result, ss);
1408 static void parameter_set_switch (parameter *, gpointer value);
1409 static gboolean parse_command_line_into_parameters_1 (const char *filename,
1416 /* Parses the command line, and flushes those options down into
1417 the `parameter' structs in the list.
1420 parse_command_line_into_parameters (const char *filename,
1421 const char *cmd, GList *parms)
1423 GList *tokens = tokenize_command_line (cmd);
1425 for (rest = tokens; rest; rest = rest->next)
1427 char *option = rest->data;
1430 if (option[0] != '-' && option[0] != '+')
1433 fprintf (stderr, "%s: WARNING: %s: not a switch: \"%s\"\n",
1434 blurb(), filename, option);
1440 if (rest->next) /* pop off the arg to this option */
1442 char *s = (char *) rest->next->data;
1443 /* the next token is the next switch iff it matches "-[a-z]".
1444 (To avoid losing on "-x -3.1".)
1446 if (s && (s[0] != '-' || !isalpha(s[1])))
1449 rest->next->data = 0;
1454 parse_command_line_into_parameters_1 (filename, parms,
1456 if (value) free (value);
1460 g_list_free (tokens);
1465 compare_opts (const char *option, const char *value,
1466 const char *template)
1468 int ol = strlen (option);
1471 if (strncmp (option, template, ol))
1474 if (template[ol] != (value ? ' ' : 0))
1477 /* At this point, we have a match against "option".
1478 If template contains a %, we're done.
1479 Else, compare against "value" too.
1481 c = strchr (template, '%');
1486 return (template[ol] == 0);
1487 if (strcmp (template + ol + 1, value))
1495 parse_command_line_into_parameters_1 (const char *filename,
1502 parameter *match = 0;
1506 for (p = parms; p; p = p->next)
1508 parameter *pp = (parameter *) p->data;
1511 if (pp->type == SELECT)
1513 if (parse_command_line_into_parameters_1 (filename,
1524 if (compare_opts (option, value, (char *) pp->arg))
1530 else if (pp->arg_set)
1532 if (compare_opts (option, value, (char *) pp->arg_set))
1538 else if (pp->arg_unset)
1540 if (compare_opts (option, value, (char *) pp->arg_unset))
1555 if (debug_p && !parent)
1556 fprintf (stderr, "%s: WARNING: %s: no match for %s %s\n",
1557 blurb(), filename, option, (value ? value : ""));
1561 switch (match->type)
1567 if (which != -1) abort();
1568 parameter_set_switch (match, (gpointer) value);
1571 if (which != 0 && which != 1) abort();
1572 parameter_set_switch (match, GINT_TO_POINTER(which));
1575 if (which != 1) abort();
1576 parameter_set_switch (parent, GINT_TO_POINTER(index));
1585 /* Set the parameter's value.
1586 For STRING, FILENAME, SLIDER, and SPINBUTTON, `value' is a char*.
1587 For BOOLEAN and SELECT, `value' is an int.
1590 parameter_set_switch (parameter *p, gpointer value)
1592 if (p->type == SELECT_OPTION) abort();
1593 if (!p->widget) return;
1599 gtk_entry_set_text (GTK_ENTRY (p->widget), (char *) value);
1605 GtkAdjustment *adj =
1607 ? gtk_range_get_adjustment (GTK_RANGE (p->widget))
1608 : gtk_spin_button_get_adjustment (GTK_SPIN_BUTTON (p->widget)));
1612 if (1 == sscanf ((char *) value, "%f %c", &f, &c))
1615 f = invert_range (GET_ADJ_LOWER(adj), GET_ADJ_UPPER(adj), f) - 1;
1616 gtk_adjustment_set_value (adj, f);
1622 GtkToggleButton *b = GTK_TOGGLE_BUTTON (p->widget);
1623 gtk_toggle_button_set_active (b, GPOINTER_TO_INT(value));
1628 gtk_option_menu_set_history (GTK_OPTION_MENU (p->widget),
1629 GPOINTER_TO_INT(value));
1639 restore_defaults (const char *progname, GList *parms)
1641 for (; parms; parms = parms->next)
1643 parameter *p = (parameter *) parms->data;
1644 if (!p->widget) continue;
1650 gtk_entry_set_text (GTK_ENTRY (p->widget),
1651 (p->string ? (char *) p->string : ""));
1657 GtkAdjustment *adj =
1659 ? gtk_range_get_adjustment (GTK_RANGE (p->widget))
1660 : gtk_spin_button_get_adjustment (GTK_SPIN_BUTTON (p->widget)));
1661 float value = (p->invert_p
1662 ? invert_range (p->low, p->high, p->value)
1664 gtk_adjustment_set_value (adj, value);
1669 /* A toggle button should be on by default if it inserts
1670 nothing into the command line when on. E.g., it should
1671 be on if `arg_set' is null.
1673 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (p->widget),
1674 (!p->arg_set || !*p->arg_set));
1679 GtkOptionMenu *opt = GTK_OPTION_MENU (p->widget);
1684 for (opts = p->options, index = 0; opts;
1685 opts = opts->next, index++)
1687 parameter *s = (parameter *) opts->data;
1688 /* The default menu item is the first one with
1689 no `arg_set' field. */
1697 gtk_option_menu_set_history (GTK_OPTION_MENU (opt), selected);
1708 /* Documentation strings
1712 get_description (GList *parms, gboolean verbose_p)
1715 for (; parms; parms = parms->next)
1717 parameter *p = (parameter *) parms->data;
1718 if (p->type == DESCRIPTION)
1725 if (!doc || !doc->string)
1729 char *d = strdup ((char *) doc->string);
1732 for (s = d; *s; s++)
1735 if (s[1] == '\n') /* blank line: leave it */
1737 else if (s[1] == ' ' || s[1] == '\t')
1738 s++; /* next line is indented: leave newline */
1739 else if (!strncmp(s+1, "http:", 5))
1740 s++; /* next line begins a URL: leave newline */
1742 s[0] = ' '; /* delete newline to un-fold this line */
1745 /* strip off leading whitespace on first line only */
1746 for (s = d; *s && (*s == ' ' || *s == '\t'); s++)
1748 while (*s == '\n') /* strip leading newlines */
1751 memmove (d, s, strlen(s)+1);
1753 /* strip off trailing whitespace and newlines */
1756 while (L && isspace(d[L-1]))
1760 /* strip off duplicated whitespaces */
1761 for (s = d; *s; s++)
1768 memmove (p, s, strlen(s)+1);
1774 fprintf (stderr, "%s: text read is \"%s\"\n", blurb(),doc->string);
1775 fprintf (stderr, "%s: description is \"%s\"\n", blurb(), d);
1776 fprintf (stderr, "%s: translation is \"%s\"\n", blurb(), _(d));
1785 /* External interface.
1789 load_configurator_1 (const char *program, const char *arguments,
1792 const char *dir = hack_configuration_path;
1794 int L = strlen (dir);
1800 if (L == 0) return 0;
1802 base_program = strrchr(program, '/');
1803 if (base_program) base_program++;
1804 if (!base_program) base_program = (char *) program;
1806 file = (char *) malloc (L + strlen (base_program) + 10);
1807 data = (conf_data *) calloc (1, sizeof(*data));
1810 if (file[L-1] != '/')
1812 strcpy (file+L, base_program);
1814 for (s = file+L; *s; s++)
1815 if (*s == '/' || *s == ' ')
1817 else if (isupper (*s))
1820 strcat (file+L, ".xml");
1822 f = fopen (file, "r");
1825 int res, size = 1024;
1827 xmlParserCtxtPtr ctxt;
1833 fprintf (stderr, "%s: reading %s...\n", blurb(), file);
1835 res = fread (chars, 1, 4, f);
1843 ctxt = xmlCreatePushParserCtxt(NULL, NULL, chars, res, file);
1844 while ((res = fread(chars, 1, size, f)) > 0)
1845 xmlParseChunk (ctxt, chars, res, 0);
1846 xmlParseChunk (ctxt, chars, 0, 1);
1848 xmlFreeParserCtxt (ctxt);
1851 /* Parsed the XML file. Now make some widgets. */
1853 vbox0 = gtk_vbox_new (FALSE, 0);
1854 gtk_widget_show (vbox0);
1856 parms = make_parameters (file, doc->xmlRootNode, vbox0);
1857 sanity_check_parameters (file, parms);
1861 restore_defaults (program, parms);
1862 if (arguments && *arguments)
1863 parse_command_line_into_parameters (program, arguments, parms);
1865 data->widget = vbox0;
1866 data->parameters = parms;
1867 data->description = get_description (parms, verbose_p);
1874 fprintf (stderr, "%s: %s does not exist.\n", blurb(), file);
1876 p = calloc (1, sizeof(*p));
1878 p->arg = (xmlChar *) strdup (arguments);
1880 data->parameters = g_list_append (0, (gpointer) p);
1883 data->progname = strdup (program);
1891 split_command_line (const char *full_command_line,
1892 char **prog_ret, char **args_ret)
1894 char *line = strdup (full_command_line);
1907 while (isspace (*s)) s++;
1910 else if (*s == '=') /* if the leading word contains an "=", skip it. */
1912 while (*s && !isspace (*s)) s++;
1913 while (isspace (*s)) s++;
1920 *prog_ret = strdup (prog);
1921 *args_ret = strdup (args);
1927 load_configurator (const char *full_command_line, gboolean verbose_p)
1932 debug_p = verbose_p;
1933 split_command_line (full_command_line, &prog, &args);
1934 cd = load_configurator_1 (prog, args, verbose_p);
1943 get_configurator_command_line (conf_data *data, gboolean default_p)
1945 char *args = parameters_to_cmd_line (data->parameters, default_p);
1946 char *result = (char *) malloc (strlen (data->progname) +
1948 strcpy (result, data->progname);
1949 strcat (result, " ");
1950 strcat (result, args);
1957 set_configurator_command_line (conf_data *data, const char *full_command_line)
1961 split_command_line (full_command_line, &prog, &args);
1962 if (data->progname) free (data->progname);
1963 data->progname = prog;
1964 restore_defaults (prog, data->parameters);
1965 parse_command_line_into_parameters (prog, args, data->parameters);
1970 free_conf_data (conf_data *data)
1972 if (data->parameters)
1975 for (rest = data->parameters; rest; rest = rest->next)
1977 free_parameter ((parameter *) rest->data);
1980 g_list_free (data->parameters);
1981 data->parameters = 0;
1985 gtk_widget_destroy (data->widget);
1988 free (data->progname);
1989 if (data->description)
1990 free (data->description);
1992 memset (data, ~0, sizeof(*data));
1997 #endif /* HAVE_GTK && HAVE_XML -- whole file */