1 /* demo-Gtk-conf.c --- implements the dynamic configuration dialogs.
2 * xscreensaver, Copyright (c) 2001-2008 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") || /* these are ignored in X11 */
302 !strcmp (name, "xscreensaver-image")) /* (they are used in Cocoa) */
307 else if (node->type == XML_TEXT_NODE)
309 sanity_check_text_node (filename, node);
316 fprintf (stderr, "%s: WARNING: %s: unknown tag: \"%s\"\n",
317 blurb(), filename, name);
322 if (p->type == SPINBUTTON)
324 const char *type = (char *) xmlGetProp (node, (xmlChar *) "type");
325 if (!type || !strcmp (type, "spinbutton")) p->type = SPINBUTTON;
326 else if (!strcmp (type, "slider")) p->type = SLIDER;
330 fprintf (stderr, "%s: WARNING: %s: unknown %s type: \"%s\"\n",
331 blurb(), filename, name, type);
336 else if (p->type == DESCRIPTION)
338 if (node->xmlChildrenNode &&
339 node->xmlChildrenNode->type == XML_TEXT_NODE &&
340 !node->xmlChildrenNode->next)
341 p->string = (xmlChar *)
342 strdup ((char *) node->xmlChildrenNode->content);
345 p->id = xmlGetProp (node, (xmlChar *) "id");
346 p->label = xmlGetProp (node, (xmlChar *) "_label");
347 p->low_label = xmlGetProp (node, (xmlChar *) "_low-label");
348 p->high_label = xmlGetProp (node, (xmlChar *) "_high-label");
349 p->low = xml_get_float (node, (xmlChar *) "low", &floatp);
350 p->high = xml_get_float (node, (xmlChar *) "high", &floatp);
351 p->value = xml_get_float (node, (xmlChar *) "default", &floatp);
352 p->integer_p = !floatp;
353 convert = (char *) xmlGetProp (node, (xmlChar *) "convert");
354 p->invert_p = (convert && !strcmp (convert, "invert"));
355 p->arg = xmlGetProp (node, (xmlChar *) "arg");
356 p->arg_set = xmlGetProp (node, (xmlChar *) "arg-set");
357 p->arg_unset = xmlGetProp (node, (xmlChar *) "arg-unset");
359 /* Check for missing decimal point */
362 (p->high != p->low) &&
363 (p->high - p->low) <= 1)
365 "%s: WARNING: %s: %s: range [%.1f, %.1f] shouldn't be integral!\n",
366 blurb(), filename, p->id,
369 if (p->type == SELECT)
372 for (kids = node->xmlChildrenNode; kids; kids = kids->next)
374 parameter *s = make_select_option (filename, kids);
376 p->options = g_list_append (p->options, s);
380 sanity_check_parameter (filename, (const xmlChar *) name, p);
386 /* Allocates and returns a new SELECT_OPTION `parameter' object based
387 on the properties in the given XML node. Returns 0 if there's nothing
388 to create (comment, or unknown tag.)
391 make_select_option (const char *filename, xmlNodePtr node)
393 if (node->type == XML_COMMENT_NODE)
395 else if (node->type == XML_TEXT_NODE)
397 sanity_check_text_node (filename, node);
400 else if (node->type != XML_ELEMENT_NODE)
404 "%s: WARNING: %s: %s: unexpected child tag type %d\n",
405 blurb(), filename, node->name, (int)node->type);
408 else if (strcmp ((char *) node->name, "option"))
412 "%s: WARNING: %s: %s: child not an option tag: \"%s\"\n",
413 blurb(), filename, node->name, node->name);
418 parameter *s = calloc (1, sizeof(*s));
420 s->type = SELECT_OPTION;
421 s->id = xmlGetProp (node, (xmlChar *) "id");
422 s->label = xmlGetProp (node, (xmlChar *) "_label");
423 s->arg_set = xmlGetProp (node, (xmlChar *) "arg-set");
424 s->arg_unset = xmlGetProp (node, (xmlChar *) "arg-unset");
426 sanity_check_parameter (filename, node->name, s);
432 /* Rudimentary check to make sure someone hasn't typed "arg-set="
433 when they should have typed "arg=", etc.
436 sanity_check_parameter (const char *filename, const xmlChar *node_name,
454 memset (&allowed, 0, sizeof (allowed));
455 memset (&require, 0, sizeof (require));
466 allowed.string = TRUE;
473 allowed.label = TRUE;
474 require.label = TRUE;
481 allowed.label = TRUE;
488 allowed.label = TRUE;
489 allowed.low_label = TRUE;
490 allowed.high_label = TRUE;
494 /* require.low = TRUE; -- may be 0 */
496 /* require.high = TRUE; -- may be 0 */
497 allowed.value = TRUE;
498 /* require.value = TRUE; -- may be 0 */
499 allowed.invert_p = TRUE;
504 allowed.label = TRUE;
508 /* require.low = TRUE; -- may be 0 */
510 /* require.high = TRUE; -- may be 0 */
511 allowed.value = TRUE;
512 /* require.value = TRUE; -- may be 0 */
513 allowed.invert_p = TRUE;
518 allowed.label = TRUE;
519 allowed.arg_set = TRUE;
520 allowed.arg_unset = TRUE;
528 allowed.label = TRUE;
529 require.label = TRUE;
530 allowed.arg_set = TRUE;
538 fprintf (stderr, "%s: %s: " STR " in <%s%s id=\"%s\">\n", \
539 blurb(), filename, node_name, \
540 (!strcmp((char *) node_name, "number") \
541 ? (p->type == SPINBUTTON ? " type=spinbutton" : " type=slider")\
543 (p->id ? (char *) p->id : ""))
544 # define CHECK(SLOT,NAME) \
545 if (p->SLOT && !allowed.SLOT) \
546 WARN ("\"" NAME "\" is not a valid option"); \
547 if (!p->SLOT && require.SLOT) \
548 WARN ("\"" NAME "\" is required")
551 CHECK (label, "_label");
552 CHECK (string, "(body text)");
553 CHECK (low_label, "_low-label");
554 CHECK (high_label, "_high-label");
556 CHECK (high, "high");
557 CHECK (value, "default");
559 CHECK (invert_p, "convert");
560 CHECK (arg_set, "arg-set");
561 CHECK (arg_unset, "arg-unset");
565 if (p->type == SELECT)
566 sanity_check_menu_options (filename, node_name, p);
571 sanity_check_menu_options (const char *filename, const xmlChar *node_name,
579 /* fprintf (stderr, "\n## %s\n", p->id);*/
580 for (opts = p->options; opts; opts = opts->next)
582 parameter *s = (parameter *) opts->data;
583 if (!s->arg_set) nulls++;
588 char *a = strdup ((char *) s->arg_set);
589 char *spc = strchr (a, ' ');
593 if (strcmp (a, prefix))
595 "%s: %s: both \"%s\" and \"%s\" used in <select id=\"%s\">\n",
596 blurb(), filename, prefix, a, p->id);
602 /* fprintf (stderr, "\n %s\n", s->arg_set);*/
605 if (prefix) free (prefix);
609 "%s: %s: more than one menu with no arg-set in <select id=\"%s\">\n",
610 blurb(), filename, p->id);
614 /* "text" nodes show up for all the non-tag text in the file, including
615 all the newlines between tags. Warn if there is text there that
619 sanity_check_text_node (const char *filename, const xmlNodePtr node)
621 const char *body = (const char *) node->content;
622 if (node->type != XML_TEXT_NODE) abort();
623 while (isspace (*body)) body++;
625 fprintf (stderr, "%s: WARNING: %s: random text present: \"%s\"\n",
626 blurb(), filename, body);
630 /* Returns a list of strings, every switch mentioned in the parameters.
631 The strings must be freed.
634 get_all_switches (const char *filename, GList *parms)
638 for (p = parms; p; p = p->next)
640 parameter *pp = (parameter *) p->data;
642 if (pp->type == SELECT)
644 GList *list2 = get_all_switches (filename, pp->options);
645 switches = g_list_concat (switches, list2);
647 if (pp->arg && *pp->arg)
648 switches = g_list_append (switches, strdup ((char *) pp->arg));
649 if (pp->arg_set && *pp->arg_set)
650 switches = g_list_append (switches, strdup ((char *) pp->arg_set));
651 if (pp->arg_unset && *pp->arg_unset)
652 switches = g_list_append (switches, strdup ((char *) pp->arg_unset));
658 /* Ensures that no switch is mentioned more than once.
661 sanity_check_parameters (const char *filename, GList *parms)
663 GList *list = get_all_switches (filename, parms);
665 for (p = list; p; p = p->next)
667 char *sw = (char *) p->data;
670 if (*sw != '-' && *sw != '+')
671 fprintf (stderr, "%s: %s: switch does not begin with hyphen \"%s\"\n",
672 blurb(), filename, sw);
674 for (p2 = p->next; p2; p2 = p2->next)
676 const char *sw2 = (const char *) p2->data;
677 if (!strcmp (sw, sw2))
678 fprintf (stderr, "%s: %s: duplicate switch \"%s\"\n",
679 blurb(), filename, sw);
688 /* Helper for make_parameters()
691 make_parameters_1 (const char *filename, xmlNodePtr node, GtkWidget *parent)
695 for (; node; node = node->next)
697 const char *name = (char *) node->name;
698 if (!strcmp (name, "hgroup") ||
699 !strcmp (name, "vgroup"))
701 GtkWidget *box = (*name == 'h'
702 ? gtk_hbox_new (FALSE, 0)
703 : gtk_vbox_new (FALSE, 0));
705 gtk_widget_show (box);
706 gtk_box_pack_start (GTK_BOX (parent), box, FALSE, FALSE, 0);
708 list2 = make_parameters_1 (filename, node->xmlChildrenNode, box);
710 list = g_list_concat (list, list2);
714 parameter *p = make_parameter (filename, node);
717 list = g_list_append (list, p);
718 make_parameter_widget (filename, p, parent);
726 /* Calls make_parameter() and make_parameter_widget() on each relevant
727 tag in the XML tree. Also handles the "hgroup" and "vgroup" flags.
728 Returns a GList of `parameter' objects.
731 make_parameters (const char *filename, xmlNodePtr node, GtkWidget *parent)
733 for (; node; node = node->next)
735 if (node->type == XML_ELEMENT_NODE &&
736 !strcmp ((char *) node->name, "screensaver"))
737 return make_parameters_1 (filename, node->xmlChildrenNode, parent);
744 invert_range (gfloat low, gfloat high, gfloat value)
746 gfloat range = high-low;
747 gfloat off = value-low;
748 return (low + (range - off));
752 static GtkAdjustment *
753 make_adjustment (const char *filename, parameter *p)
755 float range = (p->high - p->low);
756 float value = (p->invert_p
757 ? invert_range (p->low, p->high, p->value)
759 gfloat si = (p->high - p->low) / 100;
760 gfloat pi = (p->high - p->low) / 10;
761 gfloat page_size = ((p->type == SLIDER) ? 1 : 0);
763 if (p->value < p->low || p->value > p->high)
765 if (debug_p && p->integer_p)
766 fprintf (stderr, "%s: WARNING: %s: %d is not in range [%d, %d]\n",
768 (int) p->value, (int) p->low, (int) p->high);
771 "%s: WARNING: %s: %.2f is not in range [%.2f, %.2f]\n",
772 blurb(), filename, p->value, p->low, p->high);
773 value = (value < p->low ? p->low : p->high);
776 else if (debug_p && p->value < 1000 && p->high >= 10000)
780 "%s: WARNING: %s: %d is suspicious for range [%d, %d]\n",
782 (int) p->value, (int) p->low, (int) p->high);
785 "%s: WARNING: %s: %.2f is suspicious for range [%.2f, %.2f]\n",
786 blurb(), filename, p->value, p->low, p->high);
790 si = (int) (si + 0.5);
791 pi = (int) (pi + 0.5);
795 if (range <= 500) si = 1;
797 return GTK_ADJUSTMENT (gtk_adjustment_new (value,
806 set_widget_min_width (GtkWidget *w, int width)
809 gtk_widget_size_request (GTK_WIDGET (w), &req);
810 if (req.width < width)
811 gtk_widget_set_size_request (GTK_WIDGET (w), width, -1);
815 /* If we're inside a vbox, we need to put an hbox in it, or labels appear
816 on top instead of to the left, and things stretch to the full width of
820 insert_fake_hbox (GtkWidget *parent)
822 if (GTK_IS_VBOX (parent))
824 GtkWidget *hbox = gtk_hbox_new (FALSE, 0);
825 gtk_box_pack_start (GTK_BOX (parent), hbox, FALSE, FALSE, 4);
826 gtk_widget_show (hbox);
834 link_atk_label_to_widget(GtkWidget *label, GtkWidget *widget)
836 AtkObject *atk_label = gtk_widget_get_accessible (label);
837 AtkObject *atk_widget = gtk_widget_get_accessible (widget);
839 atk_object_add_relationship (atk_label, ATK_RELATION_LABEL_FOR,
841 atk_object_add_relationship (atk_widget, ATK_RELATION_LABELLED_BY,
845 /* Given a `parameter' struct, allocates an appropriate GtkWidget for it,
846 and stores it in `p->widget'.
847 `parent' must be a GtkBox.
850 make_parameter_widget (const char *filename, parameter *p, GtkWidget *parent)
852 const char *label = (char *) p->label;
853 if (p->widget) return;
859 GtkWidget *entry = gtk_entry_new ();
860 parent = insert_fake_hbox (parent);
863 GtkWidget *w = gtk_label_new (_(label));
864 link_atk_label_to_widget (w, entry);
865 gtk_label_set_justify (GTK_LABEL (w), GTK_JUSTIFY_RIGHT);
866 gtk_misc_set_alignment (GTK_MISC (w), 1.0, 0.5);
867 set_widget_min_width (GTK_WIDGET (w), MIN_LABEL_WIDTH);
869 gtk_box_pack_start (GTK_BOX (parent), w, FALSE, FALSE, 4);
874 gtk_entry_set_text (GTK_ENTRY (p->widget), (char *) p->string);
875 gtk_box_pack_start (GTK_BOX (parent), p->widget, FALSE, FALSE, 4);
880 GtkWidget *L = gtk_label_new (label ? _(label) : "");
881 GtkWidget *entry = gtk_entry_new ();
882 GtkWidget *button = gtk_button_new_with_label (_("Browse..."));
883 link_atk_label_to_widget (L, entry);
884 gtk_widget_show (entry);
885 gtk_widget_show (button);
888 gtk_signal_connect (GTK_OBJECT (button),
889 "clicked", GTK_SIGNAL_FUNC (browse_button_cb),
892 gtk_label_set_justify (GTK_LABEL (L), GTK_JUSTIFY_RIGHT);
893 gtk_misc_set_alignment (GTK_MISC (L), 1.0, 0.5);
894 set_widget_min_width (GTK_WIDGET (L), MIN_LABEL_WIDTH);
898 gtk_entry_set_text (GTK_ENTRY (entry), (char *) p->string);
900 parent = insert_fake_hbox (parent);
901 gtk_box_pack_start (GTK_BOX (parent), L, FALSE, FALSE, 4);
902 gtk_box_pack_start (GTK_BOX (parent), entry, TRUE, TRUE, 4);
903 gtk_box_pack_start (GTK_BOX (parent), button, FALSE, FALSE, 4);
908 GtkAdjustment *adj = make_adjustment (filename, p);
909 GtkWidget *scale = gtk_hscale_new (adj);
910 GtkWidget *labelw = 0;
914 labelw = gtk_label_new (_(label));
915 link_atk_label_to_widget (labelw, scale);
916 gtk_label_set_justify (GTK_LABEL (labelw), GTK_JUSTIFY_LEFT);
917 gtk_misc_set_alignment (GTK_MISC (labelw), 0.0, 0.5);
918 set_widget_min_width (GTK_WIDGET (labelw), MIN_LABEL_WIDTH);
919 gtk_widget_show (labelw);
920 gtk_box_pack_start (GTK_BOX (parent), labelw, FALSE, FALSE, 2);
923 /* Do this after 'labelw' so that it appears above, not to left. */
924 parent = insert_fake_hbox (parent);
928 GtkWidget *w = gtk_label_new (_((char *) p->low_label));
929 link_atk_label_to_widget (w, scale);
930 gtk_label_set_justify (GTK_LABEL (w), GTK_JUSTIFY_RIGHT);
931 gtk_misc_set_alignment (GTK_MISC (w), 1.0, 0.5);
932 set_widget_min_width (GTK_WIDGET (w), MIN_LABEL_WIDTH);
934 gtk_box_pack_start (GTK_BOX (parent), w, FALSE, FALSE, 4);
937 gtk_scale_set_value_pos (GTK_SCALE (scale), GTK_POS_BOTTOM);
938 gtk_scale_set_draw_value (GTK_SCALE (scale), debug_p);
939 gtk_scale_set_digits (GTK_SCALE (scale), (p->integer_p ? 0 : 2));
940 set_widget_min_width (GTK_WIDGET (scale), MIN_SLIDER_WIDTH);
942 gtk_box_pack_start (GTK_BOX (parent), scale, FALSE, FALSE, 4);
944 gtk_widget_show (scale);
948 GtkWidget *w = gtk_label_new (_((char *) p->high_label));
949 link_atk_label_to_widget (w, scale);
950 gtk_label_set_justify (GTK_LABEL (w), GTK_JUSTIFY_LEFT);
951 gtk_misc_set_alignment (GTK_MISC (w), 0.0, 0.5);
952 set_widget_min_width (GTK_WIDGET (w), MIN_LABEL_WIDTH);
954 gtk_box_pack_start (GTK_BOX (parent), w, FALSE, FALSE, 4);
962 GtkAdjustment *adj = make_adjustment (filename, p);
963 GtkWidget *spin = gtk_spin_button_new (adj, 15, 0);
964 gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spin), TRUE);
965 gtk_spin_button_set_snap_to_ticks (GTK_SPIN_BUTTON (spin), TRUE);
966 gtk_spin_button_set_value (GTK_SPIN_BUTTON (spin), GET_ADJ_VALUE(adj));
967 set_widget_min_width (GTK_WIDGET (spin), MIN_SPINBUTTON_WIDTH);
971 GtkWidget *w = gtk_label_new (_(label));
972 link_atk_label_to_widget (w, spin);
973 gtk_label_set_justify (GTK_LABEL (w), GTK_JUSTIFY_RIGHT);
974 gtk_misc_set_alignment (GTK_MISC (w), 1.0, 0.5);
975 set_widget_min_width (GTK_WIDGET (w), MIN_LABEL_WIDTH);
977 parent = insert_fake_hbox (parent);
978 gtk_box_pack_start (GTK_BOX (parent), w, FALSE, FALSE, 4);
981 gtk_widget_show (spin);
982 gtk_box_pack_start (GTK_BOX (parent), spin, FALSE, FALSE, 4);
989 p->widget = gtk_check_button_new_with_label (_(label));
990 /* Let these stretch -- doesn't hurt.
991 parent = insert_fake_hbox (parent);
993 gtk_box_pack_start (GTK_BOX (parent), p->widget, FALSE, FALSE, 4);
998 GtkWidget *opt = gtk_option_menu_new ();
999 GtkWidget *menu = gtk_menu_new ();
1002 for (opts = p->options; opts; opts = opts->next)
1004 parameter *s = (parameter *) opts->data;
1005 GtkWidget *i = gtk_menu_item_new_with_label (_((char *) s->label));
1006 gtk_widget_show (i);
1007 gtk_menu_append (GTK_MENU (menu), i);
1010 gtk_option_menu_set_menu (GTK_OPTION_MENU (opt), menu);
1012 parent = insert_fake_hbox (parent);
1013 gtk_box_pack_start (GTK_BOX (parent), p->widget, FALSE, FALSE, 4);
1028 gtk_widget_set_name (p->widget, (char *) p->id);
1029 gtk_widget_show (p->widget);
1035 Absurdly, there is no GTK file entry widget, only a GNOME one,
1036 so in order to avoid depending on GNOME in this code, we have
1040 /* cancel button on GtkFileSelection: user_data unused */
1042 file_sel_cancel (GtkWidget *button, gpointer user_data)
1044 GtkWidget *dialog = button;
1045 while (GET_PARENT (dialog))
1046 dialog = GET_PARENT (dialog);
1047 gtk_widget_destroy (dialog);
1050 /* ok button on GtkFileSelection: user_data is the corresponding GtkEntry */
1052 file_sel_ok (GtkWidget *button, gpointer user_data)
1054 GtkWidget *entry = GTK_WIDGET (user_data);
1055 GtkWidget *dialog = button;
1058 while (GET_PARENT (dialog))
1059 dialog = GET_PARENT (dialog);
1060 gtk_widget_hide (dialog);
1062 path = gtk_file_selection_get_filename (GTK_FILE_SELECTION (dialog));
1063 /* apparently one doesn't free `path' */
1065 gtk_entry_set_text (GTK_ENTRY (entry), path);
1066 gtk_entry_set_position (GTK_ENTRY (entry), strlen (path));
1068 gtk_widget_destroy (dialog);
1071 /* WM close on GtkFileSelection: user_data unused */
1073 file_sel_close (GtkWidget *widget, GdkEvent *event, gpointer user_data)
1075 file_sel_cancel (widget, user_data);
1078 /* "Browse" button: user_data is the corresponding GtkEntry */
1080 browse_button_cb (GtkButton *button, gpointer user_data)
1082 GtkWidget *entry = GTK_WIDGET (user_data);
1083 const char *text = gtk_entry_get_text (GTK_ENTRY (entry));
1084 GtkFileSelection *selector =
1085 GTK_FILE_SELECTION (gtk_file_selection_new (_("Select file.")));
1087 gtk_file_selection_set_filename (selector, text);
1088 gtk_signal_connect (GTK_OBJECT (selector->ok_button),
1089 "clicked", GTK_SIGNAL_FUNC (file_sel_ok),
1091 gtk_signal_connect (GTK_OBJECT (selector->cancel_button),
1092 "clicked", GTK_SIGNAL_FUNC (file_sel_cancel),
1094 gtk_signal_connect (GTK_OBJECT (selector), "delete_event",
1095 GTK_SIGNAL_FUNC (file_sel_close),
1098 gtk_window_set_modal (GTK_WINDOW (selector), TRUE);
1099 gtk_widget_show (GTK_WIDGET (selector));
1103 /* Converting to and from command-lines
1107 /* Returns a copy of string that has been quoted according to shell rules:
1108 it may have been wrapped in "" and had some characters backslashed; or
1109 it may be unchanged.
1112 shell_quotify (const char *string)
1114 char *string2 = (char *) malloc ((strlen (string) * 2) + 10);
1117 int need_quotes = 0;
1122 for (in = string; *in; in++)
1133 else if (*in <= ' ' ||
1159 return strdup (string);
1162 /* Modify the string in place to remove wrapping double-quotes
1163 and interior backslashes.
1166 de_stringify (char *s)
1169 if (q != '\'' && q != '\"' && q != '`')
1171 memmove (s, s+1, strlen (s)+1);
1172 while (*s && *s != q)
1175 memmove (s, s+1, strlen (s)+1);
1178 if (*s != q) abort();
1183 /* Substitutes a shell-quotified version of `value' into `p->arg' at
1184 the place where the `%' character appeared.
1187 format_switch (parameter *p, const char *value)
1189 char *fmt = (char *) p->arg;
1192 if (!fmt || !value) return 0;
1193 v2 = shell_quotify (value);
1194 result = (char *) malloc (strlen (fmt) + strlen (v2) + 10);
1211 /* Maps a `parameter' to a command-line switch.
1212 Returns 0 if it can't, or if the parameter has the default value.
1215 parameter_to_switch (parameter *p)
1221 return strdup ((char *) p->arg);
1227 if (!p->widget) return 0;
1229 const char *s = gtk_entry_get_text (GTK_ENTRY (p->widget));
1231 if (!strcmp ((s ? s : ""),
1232 (p->string ? (char *) p->string : "")))
1233 v = 0; /* same as default */
1235 v = format_switch (p, s);
1237 /* don't free `s' */
1242 if (!p->widget) return 0;
1244 GtkAdjustment *adj =
1246 ? gtk_range_get_adjustment (GTK_RANGE (p->widget))
1247 : gtk_spin_button_get_adjustment (GTK_SPIN_BUTTON (p->widget)));
1250 float value = (p->invert_p
1251 ? invert_range (GET_ADJ_LOWER(adj), GET_ADJ_UPPER(adj),
1252 GET_ADJ_VALUE(adj)) - 1
1253 : GET_ADJ_VALUE(adj));
1255 if (value == p->value) /* same as default */
1259 sprintf (buf, "%d", (int) (value + (value > 0 ? 0.5 : -0.5)));
1261 sprintf (buf, "%.4f", value);
1263 s1 = strchr (buf, '.');
1266 char *s2 = s1 + strlen(s1) - 1;
1267 while (s2 > s1 && *s2 == '0') /* lose trailing zeroes */
1269 if (s2 >= s1 && *s2 == '.') /* lose trailing decimal */
1272 return format_switch (p, buf);
1275 if (!p->widget) return 0;
1277 GtkToggleButton *b = GTK_TOGGLE_BUTTON (p->widget);
1278 const char *s = (gtk_toggle_button_get_active (b)
1279 ? (char *) p->arg_set
1280 : (char *) p->arg_unset);
1287 if (!p->widget) return 0;
1289 GtkOptionMenu *opt = GTK_OPTION_MENU (p->widget);
1290 GtkMenu *menu = GTK_MENU (gtk_option_menu_get_menu (opt));
1291 GtkWidget *selected = gtk_menu_get_active (menu);
1292 GList *kids = gtk_container_children (GTK_CONTAINER (menu));
1293 int menu_elt = g_list_index (kids, (gpointer) selected);
1294 GList *ol = g_list_nth (p->options, menu_elt);
1295 parameter *o = (ol ? (parameter *) ol->data : 0);
1298 if (o->type != SELECT_OPTION) abort();
1299 s = (char *) o->arg_set;
1313 /* Maps a GList of `parameter' objects to a complete command-line string.
1314 All arguments will be properly quoted.
1317 parameters_to_cmd_line (GList *parms, gboolean default_p)
1319 int L = g_list_length (parms);
1321 char **strs = (char **) calloc (sizeof (*parms), L);
1326 for (i = 0, j = 0; parms; parms = parms->next, i++)
1328 parameter *p = (parameter *) parms->data;
1329 if (!default_p || p->type == COMMAND)
1331 char *s = parameter_to_switch (p);
1333 LL += (s ? strlen(s) : 0) + 1;
1337 result = (char *) malloc (LL + 10);
1339 for (i = 0; i < j; i++)
1342 strcpy (out, strs[i]);
1343 out += strlen (out);
1348 while (out > result && out[-1] == ' ') /* strip trailing spaces */
1356 /* Returns a GList of the tokens the string, using shell syntax;
1357 Quoted strings are handled as a single token.
1360 tokenize_command_line (const char *cmd)
1363 const char *s = cmd;
1368 for (; isspace(*s); s++); /* skip whitespace */
1371 if (*s == '\'' || *s == '\"' || *s == '`')
1375 while (*s && *s != q) /* skip to matching quote */
1377 if (*s == '\\' && s[1]) /* allowing backslash quoting */
1395 ss = (char *) malloc ((s - start) + 1);
1396 strncpy (ss, start, s-start);
1398 if (*ss == '\'' || *ss == '\"' || *ss == '`')
1400 result = g_list_append (result, ss);
1407 static void parameter_set_switch (parameter *, gpointer value);
1408 static gboolean parse_command_line_into_parameters_1 (const char *filename,
1415 /* Parses the command line, and flushes those options down into
1416 the `parameter' structs in the list.
1419 parse_command_line_into_parameters (const char *filename,
1420 const char *cmd, GList *parms)
1422 GList *tokens = tokenize_command_line (cmd);
1424 for (rest = tokens; rest; rest = rest->next)
1426 char *option = rest->data;
1429 if (option[0] != '-' && option[0] != '+')
1432 fprintf (stderr, "%s: WARNING: %s: not a switch: \"%s\"\n",
1433 blurb(), filename, option);
1439 if (rest->next) /* pop off the arg to this option */
1441 char *s = (char *) rest->next->data;
1442 /* the next token is the next switch iff it matches "-[a-z]".
1443 (To avoid losing on "-x -3.1".)
1445 if (s && (s[0] != '-' || !isalpha(s[1])))
1448 rest->next->data = 0;
1453 parse_command_line_into_parameters_1 (filename, parms,
1455 if (value) free (value);
1459 g_list_free (tokens);
1464 compare_opts (const char *option, const char *value,
1465 const char *template)
1467 int ol = strlen (option);
1470 if (strncmp (option, template, ol))
1473 if (template[ol] != (value ? ' ' : 0))
1476 /* At this point, we have a match against "option".
1477 If template contains a %, we're done.
1478 Else, compare against "value" too.
1480 c = strchr (template, '%');
1485 return (template[ol] == 0);
1486 if (strcmp (template + ol + 1, value))
1494 parse_command_line_into_parameters_1 (const char *filename,
1501 parameter *match = 0;
1505 for (p = parms; p; p = p->next)
1507 parameter *pp = (parameter *) p->data;
1510 if (pp->type == SELECT)
1512 if (parse_command_line_into_parameters_1 (filename,
1523 if (compare_opts (option, value, (char *) pp->arg))
1529 else if (pp->arg_set)
1531 if (compare_opts (option, value, (char *) pp->arg_set))
1537 else if (pp->arg_unset)
1539 if (compare_opts (option, value, (char *) pp->arg_unset))
1554 if (debug_p && !parent)
1555 fprintf (stderr, "%s: WARNING: %s: no match for %s %s\n",
1556 blurb(), filename, option, (value ? value : ""));
1560 switch (match->type)
1566 if (which != -1) abort();
1567 parameter_set_switch (match, (gpointer) value);
1570 if (which != 0 && which != 1) abort();
1571 parameter_set_switch (match, GINT_TO_POINTER(which));
1574 if (which != 1) abort();
1575 parameter_set_switch (parent, GINT_TO_POINTER(index));
1584 /* Set the parameter's value.
1585 For STRING, FILENAME, SLIDER, and SPINBUTTON, `value' is a char*.
1586 For BOOLEAN and SELECT, `value' is an int.
1589 parameter_set_switch (parameter *p, gpointer value)
1591 if (p->type == SELECT_OPTION) abort();
1592 if (!p->widget) return;
1598 gtk_entry_set_text (GTK_ENTRY (p->widget), (char *) value);
1604 GtkAdjustment *adj =
1606 ? gtk_range_get_adjustment (GTK_RANGE (p->widget))
1607 : gtk_spin_button_get_adjustment (GTK_SPIN_BUTTON (p->widget)));
1611 if (1 == sscanf ((char *) value, "%f %c", &f, &c))
1614 f = invert_range (GET_ADJ_LOWER(adj), GET_ADJ_UPPER(adj), f) - 1;
1615 gtk_adjustment_set_value (adj, f);
1621 GtkToggleButton *b = GTK_TOGGLE_BUTTON (p->widget);
1622 gtk_toggle_button_set_active (b, GPOINTER_TO_INT(value));
1627 gtk_option_menu_set_history (GTK_OPTION_MENU (p->widget),
1628 GPOINTER_TO_INT(value));
1638 restore_defaults (const char *progname, GList *parms)
1640 for (; parms; parms = parms->next)
1642 parameter *p = (parameter *) parms->data;
1643 if (!p->widget) continue;
1649 gtk_entry_set_text (GTK_ENTRY (p->widget),
1650 (p->string ? (char *) p->string : ""));
1656 GtkAdjustment *adj =
1658 ? gtk_range_get_adjustment (GTK_RANGE (p->widget))
1659 : gtk_spin_button_get_adjustment (GTK_SPIN_BUTTON (p->widget)));
1660 float value = (p->invert_p
1661 ? invert_range (p->low, p->high, p->value)
1663 gtk_adjustment_set_value (adj, value);
1668 /* A toggle button should be on by default if it inserts
1669 nothing into the command line when on. E.g., it should
1670 be on if `arg_set' is null.
1672 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (p->widget),
1673 (!p->arg_set || !*p->arg_set));
1678 GtkOptionMenu *opt = GTK_OPTION_MENU (p->widget);
1683 for (opts = p->options, index = 0; opts;
1684 opts = opts->next, index++)
1686 parameter *s = (parameter *) opts->data;
1687 /* The default menu item is the first one with
1688 no `arg_set' field. */
1696 gtk_option_menu_set_history (GTK_OPTION_MENU (opt), selected);
1707 /* Documentation strings
1711 get_description (GList *parms, gboolean verbose_p)
1714 for (; parms; parms = parms->next)
1716 parameter *p = (parameter *) parms->data;
1717 if (p->type == DESCRIPTION)
1724 if (!doc || !doc->string)
1728 char *d = strdup ((char *) doc->string);
1731 for (s = d; *s; s++)
1734 if (s[1] == '\n') /* blank line: leave it */
1736 else if (s[1] == ' ' || s[1] == '\t')
1737 s++; /* next line is indented: leave newline */
1738 else if (!strncmp(s+1, "http:", 5))
1739 s++; /* next line begins a URL: leave newline */
1741 s[0] = ' '; /* delete newline to un-fold this line */
1744 /* strip off leading whitespace on first line only */
1745 for (s = d; *s && (*s == ' ' || *s == '\t'); s++)
1747 while (*s == '\n') /* strip leading newlines */
1750 memmove (d, s, strlen(s)+1);
1752 /* strip off trailing whitespace and newlines */
1755 while (L && isspace(d[L-1]))
1759 /* strip off duplicated whitespaces */
1760 for (s = d; *s; s++)
1767 memmove (p, s, strlen(s)+1);
1773 fprintf (stderr, "%s: text read is \"%s\"\n", blurb(),doc->string);
1774 fprintf (stderr, "%s: description is \"%s\"\n", blurb(), d);
1775 fprintf (stderr, "%s: translation is \"%s\"\n", blurb(), _(d));
1784 /* External interface.
1788 load_configurator_1 (const char *program, const char *arguments,
1791 const char *dir = hack_configuration_path;
1793 int L = strlen (dir);
1799 if (L == 0) return 0;
1801 base_program = strrchr(program, '/');
1802 if (base_program) base_program++;
1803 if (!base_program) base_program = (char *) program;
1805 file = (char *) malloc (L + strlen (base_program) + 10);
1806 data = (conf_data *) calloc (1, sizeof(*data));
1809 if (file[L-1] != '/')
1811 strcpy (file+L, base_program);
1813 for (s = file+L; *s; s++)
1814 if (*s == '/' || *s == ' ')
1816 else if (isupper (*s))
1819 strcat (file+L, ".xml");
1821 f = fopen (file, "r");
1824 int res, size = 1024;
1826 xmlParserCtxtPtr ctxt;
1832 fprintf (stderr, "%s: reading %s...\n", blurb(), file);
1834 res = fread (chars, 1, 4, f);
1842 ctxt = xmlCreatePushParserCtxt(NULL, NULL, chars, res, file);
1843 while ((res = fread(chars, 1, size, f)) > 0)
1844 xmlParseChunk (ctxt, chars, res, 0);
1845 xmlParseChunk (ctxt, chars, 0, 1);
1847 xmlFreeParserCtxt (ctxt);
1850 /* Parsed the XML file. Now make some widgets. */
1852 vbox0 = gtk_vbox_new (FALSE, 0);
1853 gtk_widget_show (vbox0);
1855 parms = make_parameters (file, doc->xmlRootNode, vbox0);
1856 sanity_check_parameters (file, parms);
1860 restore_defaults (program, parms);
1861 if (arguments && *arguments)
1862 parse_command_line_into_parameters (program, arguments, parms);
1864 data->widget = vbox0;
1865 data->parameters = parms;
1866 data->description = get_description (parms, verbose_p);
1873 fprintf (stderr, "%s: %s does not exist.\n", blurb(), file);
1875 p = calloc (1, sizeof(*p));
1877 p->arg = (xmlChar *) strdup (arguments);
1879 data->parameters = g_list_append (0, (gpointer) p);
1882 data->progname = strdup (program);
1890 split_command_line (const char *full_command_line,
1891 char **prog_ret, char **args_ret)
1893 char *line = strdup (full_command_line);
1906 while (isspace (*s)) s++;
1909 else if (*s == '=') /* if the leading word contains an "=", skip it. */
1911 while (*s && !isspace (*s)) s++;
1912 while (isspace (*s)) s++;
1919 *prog_ret = strdup (prog);
1920 *args_ret = strdup (args);
1926 load_configurator (const char *full_command_line, gboolean verbose_p)
1931 debug_p = verbose_p;
1932 split_command_line (full_command_line, &prog, &args);
1933 cd = load_configurator_1 (prog, args, verbose_p);
1942 get_configurator_command_line (conf_data *data, gboolean default_p)
1944 char *args = parameters_to_cmd_line (data->parameters, default_p);
1945 char *result = (char *) malloc (strlen (data->progname) +
1947 strcpy (result, data->progname);
1948 strcat (result, " ");
1949 strcat (result, args);
1956 set_configurator_command_line (conf_data *data, const char *full_command_line)
1960 split_command_line (full_command_line, &prog, &args);
1961 if (data->progname) free (data->progname);
1962 data->progname = prog;
1963 restore_defaults (prog, data->parameters);
1964 parse_command_line_into_parameters (prog, args, data->parameters);
1969 free_conf_data (conf_data *data)
1971 if (data->parameters)
1974 for (rest = data->parameters; rest; rest = rest->next)
1976 free_parameter ((parameter *) rest->data);
1979 g_list_free (data->parameters);
1980 data->parameters = 0;
1984 gtk_widget_destroy (data->widget);
1987 free (data->progname);
1988 if (data->description)
1989 free (data->description);
1991 memset (data, ~0, sizeof(*data));
1996 #endif /* HAVE_GTK && HAVE_XML -- whole file */