2001-03-18 04:50:34 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 2000 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
fix warning
2001-04-27 Havoc Pennington <hp@redhat.com>
* gtk/gtkcombo.c (gtk_combo_popup_button_press): fix warning
* gtk/gtkmessagedialog.c (gtk_message_dialog_init): make messages selectable
* gtk/gtkentry.c (gtk_entry_real_insert_text): don't strip
line/para separators
(gtk_entry_create_layout): set single paragraph mode on the layout
* gtk/gtkbutton.c (gtk_button_new_from_stock): don't put much
spacing between the image and label; instead, inside a button box
the button will get extra space that will go there, but if people
configure button box for 0 chubbiness, then there's no spacing.
* gtk/gtkbbox.c (gtk_button_box_class_init): Make child ipadding
and min/max size style properties, so people can tune their
chubbiness.
* tests/testgtk.c (make_toolbar): remove calls to removed toolbar
functions
* gtk/gtktoolbar.c (gtk_toolbar_class_init): Make space_size,
space_style, and button_relief into style properties, remove
functions for setting them
* gtk/gtkmenu.c (gtk_menu_key_press): handle menu bar accel to pop
it back down
* gtk/gtkoptionmenu.c (gtk_option_menu_get_props): free boxed
types from gtk_widget_style_get
* gtk/gtkmenubar.c (gtk_menu_bar_set_shadow_type): Remove, replace
with a style property.
* gdk/x11/gdkevents-x11.c: namespace the settings
* gtk/gtkmenubar.c: Add F10 accelerator to move between menubars.
* gtk/gtksettings.c (gtk_settings_class_init): remove code with
side effects from inside g_assert(), so that G_DISABLE_ASSERT can
be used. Also, translate doc strings for settings. Also, namespace
the double-click-time property. Also, remove bell properties crap.
2001-04-28 00:12:47 +00:00
|
|
|
#include "gtksettings.h"
|
|
|
|
#include "gtkintl.h"
|
2001-03-18 04:50:34 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_0,
|
fix warning
2001-04-27 Havoc Pennington <hp@redhat.com>
* gtk/gtkcombo.c (gtk_combo_popup_button_press): fix warning
* gtk/gtkmessagedialog.c (gtk_message_dialog_init): make messages selectable
* gtk/gtkentry.c (gtk_entry_real_insert_text): don't strip
line/para separators
(gtk_entry_create_layout): set single paragraph mode on the layout
* gtk/gtkbutton.c (gtk_button_new_from_stock): don't put much
spacing between the image and label; instead, inside a button box
the button will get extra space that will go there, but if people
configure button box for 0 chubbiness, then there's no spacing.
* gtk/gtkbbox.c (gtk_button_box_class_init): Make child ipadding
and min/max size style properties, so people can tune their
chubbiness.
* tests/testgtk.c (make_toolbar): remove calls to removed toolbar
functions
* gtk/gtktoolbar.c (gtk_toolbar_class_init): Make space_size,
space_style, and button_relief into style properties, remove
functions for setting them
* gtk/gtkmenu.c (gtk_menu_key_press): handle menu bar accel to pop
it back down
* gtk/gtkoptionmenu.c (gtk_option_menu_get_props): free boxed
types from gtk_widget_style_get
* gtk/gtkmenubar.c (gtk_menu_bar_set_shadow_type): Remove, replace
with a style property.
* gdk/x11/gdkevents-x11.c: namespace the settings
* gtk/gtkmenubar.c: Add F10 accelerator to move between menubars.
* gtk/gtksettings.c (gtk_settings_class_init): remove code with
side effects from inside g_assert(), so that G_DISABLE_ASSERT can
be used. Also, translate doc strings for settings. Also, namespace
the double-click-time property. Also, remove bell properties crap.
2001-04-28 00:12:47 +00:00
|
|
|
PROP_DOUBLE_CLICK_TIMEOUT
|
2001-03-18 04:50:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* --- prototypes --- */
|
|
|
|
static void gtk_settings_init (GtkSettings *settings);
|
|
|
|
static void gtk_settings_class_init (GtkSettingsClass *class);
|
|
|
|
static void gtk_settings_finalize (GObject *object);
|
|
|
|
static GObject* gtk_settings_constructor (GType type,
|
|
|
|
guint n_construct_properties,
|
|
|
|
GObjectConstructParam *construct_properties);
|
|
|
|
static void gtk_settings_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gtk_settings_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gtk_settings_notify (GObject *object,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static guint settings_install_property_parser (GtkSettingsClass *class,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GtkRcPropertyParser parser);
|
|
|
|
|
|
|
|
|
|
|
|
/* --- variables --- */
|
|
|
|
static gpointer parent_class = NULL;
|
|
|
|
static GtkSettings *the_singleton = NULL;
|
|
|
|
static GQuark quark_property_parser = 0;
|
|
|
|
static GQuark quark_property_id = 0;
|
|
|
|
static GSList *object_list = NULL;
|
|
|
|
static guint class_n_properties = 0;
|
|
|
|
|
|
|
|
|
|
|
|
/* --- functions --- */
|
|
|
|
GType
|
|
|
|
gtk_settings_get_type (void)
|
|
|
|
{
|
|
|
|
static GType settings_type = 0;
|
|
|
|
|
|
|
|
if (!settings_type)
|
|
|
|
{
|
|
|
|
static const GTypeInfo settings_info =
|
|
|
|
{
|
|
|
|
sizeof (GtkSettingsClass),
|
|
|
|
NULL, /* base_init */
|
|
|
|
NULL, /* base_finalize */
|
|
|
|
(GClassInitFunc) gtk_settings_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GtkSettings),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gtk_settings_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
settings_type = g_type_register_static (G_TYPE_OBJECT, "GtkSettings", &settings_info, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return settings_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_settings_init (GtkSettings *settings)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_GET_CLASS (settings);
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
g_datalist_init (&settings->queued_settings);
|
|
|
|
object_list = g_slist_prepend (object_list, settings);
|
|
|
|
|
|
|
|
/* build up property array for all yet existing properties and queue
|
|
|
|
* notification for them (at least notification for internal properties
|
|
|
|
* will instantly be caught)
|
|
|
|
*/
|
2001-03-28 16:58:16 +00:00
|
|
|
settings->property_values = g_new0 (GValue, class_n_properties);
|
2001-03-18 04:50:34 +00:00
|
|
|
for (i = 0; i < class_n_properties; i++)
|
|
|
|
{
|
|
|
|
GParamSpec *pspec = gobject_class->property_specs[i]; // FIXME: g_object_list_properties(this_class_type)
|
|
|
|
|
|
|
|
g_value_init (settings->property_values + i, G_PARAM_SPEC_VALUE_TYPE (pspec));
|
|
|
|
g_param_value_set_default (pspec, settings->property_values + i);
|
|
|
|
g_object_notify (G_OBJECT (settings), pspec->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_settings_class_init (GtkSettingsClass *class)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (class);
|
fix warning
2001-04-27 Havoc Pennington <hp@redhat.com>
* gtk/gtkcombo.c (gtk_combo_popup_button_press): fix warning
* gtk/gtkmessagedialog.c (gtk_message_dialog_init): make messages selectable
* gtk/gtkentry.c (gtk_entry_real_insert_text): don't strip
line/para separators
(gtk_entry_create_layout): set single paragraph mode on the layout
* gtk/gtkbutton.c (gtk_button_new_from_stock): don't put much
spacing between the image and label; instead, inside a button box
the button will get extra space that will go there, but if people
configure button box for 0 chubbiness, then there's no spacing.
* gtk/gtkbbox.c (gtk_button_box_class_init): Make child ipadding
and min/max size style properties, so people can tune their
chubbiness.
* tests/testgtk.c (make_toolbar): remove calls to removed toolbar
functions
* gtk/gtktoolbar.c (gtk_toolbar_class_init): Make space_size,
space_style, and button_relief into style properties, remove
functions for setting them
* gtk/gtkmenu.c (gtk_menu_key_press): handle menu bar accel to pop
it back down
* gtk/gtkoptionmenu.c (gtk_option_menu_get_props): free boxed
types from gtk_widget_style_get
* gtk/gtkmenubar.c (gtk_menu_bar_set_shadow_type): Remove, replace
with a style property.
* gdk/x11/gdkevents-x11.c: namespace the settings
* gtk/gtkmenubar.c: Add F10 accelerator to move between menubars.
* gtk/gtksettings.c (gtk_settings_class_init): remove code with
side effects from inside g_assert(), so that G_DISABLE_ASSERT can
be used. Also, translate doc strings for settings. Also, namespace
the double-click-time property. Also, remove bell properties crap.
2001-04-28 00:12:47 +00:00
|
|
|
guint result;
|
2001-03-18 04:50:34 +00:00
|
|
|
|
|
|
|
parent_class = g_type_class_peek_parent (class);
|
|
|
|
|
|
|
|
gobject_class->constructor = gtk_settings_constructor;
|
|
|
|
gobject_class->finalize = gtk_settings_finalize;
|
|
|
|
gobject_class->get_property = gtk_settings_get_property;
|
|
|
|
gobject_class->set_property = gtk_settings_set_property;
|
|
|
|
gobject_class->notify = gtk_settings_notify;
|
|
|
|
|
|
|
|
quark_property_parser = g_quark_from_static_string ("gtk-rc-property-parser");
|
|
|
|
quark_property_id = g_quark_try_string ("GObject-property-id");
|
|
|
|
g_assert (quark_property_id != 0); /* special quarks from GObjectClass */
|
|
|
|
|
fix warning
2001-04-27 Havoc Pennington <hp@redhat.com>
* gtk/gtkcombo.c (gtk_combo_popup_button_press): fix warning
* gtk/gtkmessagedialog.c (gtk_message_dialog_init): make messages selectable
* gtk/gtkentry.c (gtk_entry_real_insert_text): don't strip
line/para separators
(gtk_entry_create_layout): set single paragraph mode on the layout
* gtk/gtkbutton.c (gtk_button_new_from_stock): don't put much
spacing between the image and label; instead, inside a button box
the button will get extra space that will go there, but if people
configure button box for 0 chubbiness, then there's no spacing.
* gtk/gtkbbox.c (gtk_button_box_class_init): Make child ipadding
and min/max size style properties, so people can tune their
chubbiness.
* tests/testgtk.c (make_toolbar): remove calls to removed toolbar
functions
* gtk/gtktoolbar.c (gtk_toolbar_class_init): Make space_size,
space_style, and button_relief into style properties, remove
functions for setting them
* gtk/gtkmenu.c (gtk_menu_key_press): handle menu bar accel to pop
it back down
* gtk/gtkoptionmenu.c (gtk_option_menu_get_props): free boxed
types from gtk_widget_style_get
* gtk/gtkmenubar.c (gtk_menu_bar_set_shadow_type): Remove, replace
with a style property.
* gdk/x11/gdkevents-x11.c: namespace the settings
* gtk/gtkmenubar.c: Add F10 accelerator to move between menubars.
* gtk/gtksettings.c (gtk_settings_class_init): remove code with
side effects from inside g_assert(), so that G_DISABLE_ASSERT can
be used. Also, translate doc strings for settings. Also, namespace
the double-click-time property. Also, remove bell properties crap.
2001-04-28 00:12:47 +00:00
|
|
|
result = settings_install_property_parser (class,
|
|
|
|
g_param_spec_int ("gtk-double-click-timeout",
|
|
|
|
_("Double Click Timeout"),
|
|
|
|
_("Maximum time allowed between two clicks for them to be considered a double click"),
|
2001-05-03 11:15:26 +00:00
|
|
|
0, G_MAXINT, 250,
|
fix warning
2001-04-27 Havoc Pennington <hp@redhat.com>
* gtk/gtkcombo.c (gtk_combo_popup_button_press): fix warning
* gtk/gtkmessagedialog.c (gtk_message_dialog_init): make messages selectable
* gtk/gtkentry.c (gtk_entry_real_insert_text): don't strip
line/para separators
(gtk_entry_create_layout): set single paragraph mode on the layout
* gtk/gtkbutton.c (gtk_button_new_from_stock): don't put much
spacing between the image and label; instead, inside a button box
the button will get extra space that will go there, but if people
configure button box for 0 chubbiness, then there's no spacing.
* gtk/gtkbbox.c (gtk_button_box_class_init): Make child ipadding
and min/max size style properties, so people can tune their
chubbiness.
* tests/testgtk.c (make_toolbar): remove calls to removed toolbar
functions
* gtk/gtktoolbar.c (gtk_toolbar_class_init): Make space_size,
space_style, and button_relief into style properties, remove
functions for setting them
* gtk/gtkmenu.c (gtk_menu_key_press): handle menu bar accel to pop
it back down
* gtk/gtkoptionmenu.c (gtk_option_menu_get_props): free boxed
types from gtk_widget_style_get
* gtk/gtkmenubar.c (gtk_menu_bar_set_shadow_type): Remove, replace
with a style property.
* gdk/x11/gdkevents-x11.c: namespace the settings
* gtk/gtkmenubar.c: Add F10 accelerator to move between menubars.
* gtk/gtksettings.c (gtk_settings_class_init): remove code with
side effects from inside g_assert(), so that G_DISABLE_ASSERT can
be used. Also, translate doc strings for settings. Also, namespace
the double-click-time property. Also, remove bell properties crap.
2001-04-28 00:12:47 +00:00
|
|
|
G_PARAM_READWRITE),
|
|
|
|
NULL);
|
|
|
|
g_assert (result == PROP_DOUBLE_CLICK_TIMEOUT);
|
2001-03-18 04:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_settings_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkSettings *settings = GTK_SETTINGS (object);
|
|
|
|
guint i;
|
|
|
|
|
|
|
|
object_list = g_slist_remove (object_list, settings);
|
|
|
|
|
|
|
|
for (i = 0; i < class_n_properties; i++)
|
|
|
|
g_value_unset (settings->property_values + i);
|
|
|
|
g_free (settings->property_values);
|
|
|
|
|
|
|
|
g_datalist_clear (&settings->queued_settings);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GObject*
|
|
|
|
gtk_settings_constructor (GType type,
|
|
|
|
guint n_construct_properties,
|
|
|
|
GObjectConstructParam *construct_properties)
|
|
|
|
{
|
|
|
|
GObject *object;
|
|
|
|
|
|
|
|
/* currently we're a singleton, that might change with multiple display support though */
|
|
|
|
if (!the_singleton)
|
|
|
|
{
|
|
|
|
object = G_OBJECT_CLASS (parent_class)->constructor (type,
|
|
|
|
n_construct_properties,
|
|
|
|
construct_properties);
|
|
|
|
the_singleton = GTK_SETTINGS (g_object_ref (object));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
object = g_object_ref (G_OBJECT (the_singleton));
|
|
|
|
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkSettings*
|
|
|
|
gtk_settings_get_global (void)
|
|
|
|
{
|
|
|
|
if (!the_singleton)
|
|
|
|
g_object_new (GTK_TYPE_SETTINGS, NULL);
|
|
|
|
|
|
|
|
return the_singleton; /* we don't add a reference count here, we'd be settings_ref_global() if we did */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_settings_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkSettings *settings = GTK_SETTINGS (object);
|
|
|
|
|
|
|
|
g_value_copy (value, settings->property_values + property_id - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_settings_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkSettings *settings = GTK_SETTINGS (object);
|
2001-04-02 23:33:47 +00:00
|
|
|
|
|
|
|
if (!gdk_setting_get (pspec->name, value))
|
|
|
|
g_value_copy (settings->property_values + property_id - 1, value);
|
2001-03-18 04:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_settings_notify (GObject *object,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
guint property_id = GPOINTER_TO_UINT (g_param_spec_get_qdata ((pspec), quark_property_id));
|
2001-04-02 23:33:47 +00:00
|
|
|
gint double_click_time;
|
|
|
|
|
2001-03-18 04:50:34 +00:00
|
|
|
#if 1
|
|
|
|
GValue tmp_value = { 0, };
|
|
|
|
gchar *contents;
|
|
|
|
g_value_init (&tmp_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
|
|
|
|
g_object_get_property (object, pspec->name, &tmp_value);
|
|
|
|
contents = g_strdup_value_contents (&tmp_value);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_DOUBLE_CLICK_TIMEOUT:
|
2001-04-02 23:33:47 +00:00
|
|
|
g_object_get (object, pspec->name, &double_click_time, NULL);
|
|
|
|
gdk_set_double_click_time (double_click_time);
|
2001-03-18 04:50:34 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free (contents);
|
|
|
|
g_value_unset (&tmp_value);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-04-03 13:18:00 +00:00
|
|
|
gboolean
|
|
|
|
_gtk_settings_parse_convert (GtkRcPropertyParser parser,
|
|
|
|
const GValue *src_value,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GValue *dest_value)
|
2001-03-18 04:50:34 +00:00
|
|
|
{
|
2001-04-03 13:18:00 +00:00
|
|
|
gboolean success = FALSE;
|
2001-03-18 04:50:34 +00:00
|
|
|
|
2001-04-03 13:18:00 +00:00
|
|
|
g_return_val_if_fail (G_VALUE_HOLDS (dest_value, G_PARAM_SPEC_VALUE_TYPE (pspec)), FALSE);
|
2001-03-18 04:50:34 +00:00
|
|
|
|
2001-04-03 13:18:00 +00:00
|
|
|
if (parser)
|
|
|
|
{
|
|
|
|
GString *gstring;
|
|
|
|
gboolean free_gstring = TRUE;
|
|
|
|
|
|
|
|
if (G_VALUE_HOLDS (src_value, G_TYPE_GSTRING))
|
|
|
|
{
|
|
|
|
gstring = g_value_get_boxed (src_value);
|
|
|
|
free_gstring = FALSE;
|
|
|
|
}
|
|
|
|
else if (G_VALUE_HOLDS_LONG (src_value))
|
|
|
|
{
|
|
|
|
gstring = g_string_new ("");
|
|
|
|
g_string_printfa (gstring, "%ld", g_value_get_long (src_value));
|
|
|
|
}
|
|
|
|
else if (G_VALUE_HOLDS_DOUBLE (src_value))
|
|
|
|
{
|
|
|
|
gstring = g_string_new ("");
|
|
|
|
g_string_printfa (gstring, "%f", g_value_get_double (src_value));
|
|
|
|
}
|
|
|
|
else if (G_VALUE_HOLDS_STRING (src_value))
|
|
|
|
{
|
|
|
|
gchar *tstr = g_strescape (g_value_get_string (src_value), NULL);
|
|
|
|
|
|
|
|
gstring = g_string_new ("\"");
|
|
|
|
g_string_append (gstring, tstr);
|
|
|
|
g_string_append_c (gstring, '\"');
|
|
|
|
g_free (tstr);
|
|
|
|
}
|
2001-03-18 04:50:34 +00:00
|
|
|
else
|
|
|
|
{
|
2001-04-03 13:18:00 +00:00
|
|
|
g_return_val_if_fail (G_VALUE_HOLDS (src_value, G_TYPE_GSTRING), FALSE);
|
|
|
|
gstring = NULL; /* silence compiler */
|
2001-03-18 04:50:34 +00:00
|
|
|
}
|
2001-04-03 13:18:00 +00:00
|
|
|
|
|
|
|
success = (parser (pspec, gstring, dest_value) &&
|
|
|
|
!g_param_value_validate (pspec, dest_value));
|
|
|
|
|
|
|
|
if (free_gstring)
|
|
|
|
g_string_free (gstring, TRUE);
|
2001-03-18 04:50:34 +00:00
|
|
|
}
|
2001-04-03 13:18:00 +00:00
|
|
|
else if (!G_VALUE_HOLDS (src_value, G_TYPE_GSTRING) &&
|
|
|
|
g_value_type_transformable (G_VALUE_TYPE (src_value), G_VALUE_TYPE (dest_value)))
|
|
|
|
success = g_param_value_convert (pspec, src_value, dest_value, TRUE);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
apply_queued_setting (GtkSettings *data,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GtkSettingsValue *qvalue)
|
|
|
|
{
|
|
|
|
GValue tmp_value = { 0, };
|
|
|
|
GtkRcPropertyParser parser = g_param_spec_get_qdata (pspec, quark_property_parser);
|
|
|
|
|
|
|
|
g_value_init (&tmp_value, G_PARAM_SPEC_VALUE_TYPE (pspec));
|
|
|
|
if (_gtk_settings_parse_convert (parser, &qvalue->value,
|
|
|
|
pspec, &tmp_value))
|
|
|
|
g_object_set_property (G_OBJECT (data), pspec->name, &tmp_value);
|
2001-03-18 04:50:34 +00:00
|
|
|
else
|
|
|
|
{
|
2001-04-03 13:18:00 +00:00
|
|
|
gchar *debug = g_strdup_value_contents (&tmp_value);
|
|
|
|
|
|
|
|
g_message ("%s: failed to retrive property `%s' of type `%s' from rc file value \"%s\" of type `%s'",
|
|
|
|
qvalue->origin,
|
|
|
|
pspec->name,
|
|
|
|
g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)),
|
|
|
|
debug,
|
|
|
|
G_VALUE_TYPE_NAME (&tmp_value));
|
|
|
|
g_free (debug);
|
2001-03-18 04:50:34 +00:00
|
|
|
}
|
2001-04-03 13:18:00 +00:00
|
|
|
g_value_unset (&tmp_value);
|
2001-03-18 04:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static guint
|
|
|
|
settings_install_property_parser (GtkSettingsClass *class,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GtkRcPropertyParser parser)
|
|
|
|
{
|
|
|
|
GSList *node, *next;
|
|
|
|
|
|
|
|
switch (G_TYPE_FUNDAMENTAL (G_PARAM_SPEC_VALUE_TYPE (pspec)))
|
|
|
|
{
|
|
|
|
case G_TYPE_BOOLEAN:
|
|
|
|
case G_TYPE_UCHAR:
|
|
|
|
case G_TYPE_CHAR:
|
|
|
|
case G_TYPE_UINT:
|
|
|
|
case G_TYPE_INT:
|
|
|
|
case G_TYPE_ULONG:
|
|
|
|
case G_TYPE_LONG:
|
|
|
|
case G_TYPE_FLOAT:
|
|
|
|
case G_TYPE_DOUBLE:
|
|
|
|
case G_TYPE_STRING:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (!parser)
|
|
|
|
g_warning (G_STRLOC ": parser needs to be specified for property \"%s\" of type `%s'",
|
|
|
|
pspec->name, g_type_name (G_PARAM_SPEC_VALUE_TYPE (pspec)));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (g_object_class_find_property (G_OBJECT_CLASS (class), pspec->name))
|
|
|
|
{
|
|
|
|
g_warning (G_STRLOC ": an rc-data property \"%s\" already exists",
|
|
|
|
pspec->name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (node = object_list; node; node = node->next)
|
|
|
|
g_object_freeze_notify (node->data);
|
|
|
|
|
|
|
|
g_object_class_install_property (G_OBJECT_CLASS (class), ++class_n_properties, pspec);
|
|
|
|
g_param_spec_set_qdata (pspec, quark_property_parser, parser);
|
|
|
|
|
|
|
|
for (node = object_list; node; node = node->next)
|
|
|
|
{
|
|
|
|
GtkSettings *settings = node->data;
|
|
|
|
GtkSettingsValue *qvalue;
|
|
|
|
|
|
|
|
settings->property_values = g_renew (GValue, settings->property_values, class_n_properties);
|
|
|
|
settings->property_values[class_n_properties - 1].g_type = 0;
|
|
|
|
g_value_init (settings->property_values + class_n_properties - 1, G_PARAM_SPEC_VALUE_TYPE (pspec));
|
|
|
|
g_param_value_set_default (pspec, settings->property_values + class_n_properties - 1);
|
|
|
|
g_object_notify (G_OBJECT (settings), pspec->name);
|
|
|
|
|
|
|
|
qvalue = g_datalist_get_data (&settings->queued_settings, pspec->name);
|
|
|
|
if (qvalue)
|
|
|
|
apply_queued_setting (settings, pspec, qvalue);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (node = object_list; node; node = next)
|
|
|
|
{
|
|
|
|
next = node->next;
|
|
|
|
g_object_thaw_notify (node->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return class_n_properties;
|
|
|
|
}
|
|
|
|
|
2001-04-02 03:47:25 +00:00
|
|
|
GtkRcPropertyParser
|
2001-04-03 13:18:00 +00:00
|
|
|
_gtk_rc_property_parser_from_type (GType type)
|
2001-04-02 03:47:25 +00:00
|
|
|
{
|
2001-04-02 23:33:47 +00:00
|
|
|
if (type == GDK_TYPE_COLOR)
|
2001-04-02 03:47:25 +00:00
|
|
|
return gtk_rc_property_parse_color;
|
|
|
|
else if (type == GTK_TYPE_REQUISITION)
|
|
|
|
return gtk_rc_property_parse_requisition;
|
|
|
|
else if (type == GTK_TYPE_BORDER)
|
|
|
|
return gtk_rc_property_parse_border;
|
|
|
|
else if (G_TYPE_FUNDAMENTAL (type) == G_TYPE_ENUM && G_TYPE_IS_DERIVED (type))
|
|
|
|
return gtk_rc_property_parse_enum;
|
|
|
|
else if (G_TYPE_FUNDAMENTAL (type) == G_TYPE_FLAGS && G_TYPE_IS_DERIVED (type))
|
|
|
|
return gtk_rc_property_parse_flags;
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2001-03-18 04:50:34 +00:00
|
|
|
void
|
|
|
|
gtk_settings_install_property (GtkSettings *settings,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
2001-04-01 04:05:42 +00:00
|
|
|
GtkRcPropertyParser parser = NULL;
|
|
|
|
|
2001-03-18 04:50:34 +00:00
|
|
|
g_return_if_fail (GTK_IS_SETTINGS (settings));
|
|
|
|
g_return_if_fail (G_IS_PARAM_SPEC (pspec));
|
2001-04-01 04:05:42 +00:00
|
|
|
|
2001-04-03 13:18:00 +00:00
|
|
|
parser = _gtk_rc_property_parser_from_type (G_PARAM_SPEC_VALUE_TYPE (pspec));
|
2001-04-02 03:47:25 +00:00
|
|
|
|
2001-04-01 04:05:42 +00:00
|
|
|
settings_install_property_parser (GTK_SETTINGS_GET_CLASS (settings), pspec, parser);
|
2001-03-18 04:50:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_settings_install_property_parser (GtkSettings *settings,
|
|
|
|
GParamSpec *pspec,
|
|
|
|
GtkRcPropertyParser parser)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_SETTINGS (settings));
|
|
|
|
g_return_if_fail (G_IS_PARAM_SPEC (pspec));
|
|
|
|
g_return_if_fail (parser != NULL);
|
|
|
|
|
|
|
|
settings_install_property_parser (GTK_SETTINGS_GET_CLASS (settings), pspec, parser);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_value (gpointer data)
|
|
|
|
{
|
|
|
|
GtkSettingsValue *qvalue = data;
|
|
|
|
|
|
|
|
g_value_unset (&qvalue->value);
|
|
|
|
g_free (qvalue->origin);
|
|
|
|
g_free (qvalue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_settings_set_property_value (GtkSettings *settings,
|
|
|
|
const gchar *prop_name,
|
|
|
|
const GtkSettingsValue *new_value)
|
|
|
|
{
|
|
|
|
GtkSettingsValue *qvalue;
|
|
|
|
GParamSpec *pspec;
|
|
|
|
gchar *name;
|
|
|
|
GQuark name_quark;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_SETTINGS (settings));
|
|
|
|
g_return_if_fail (prop_name != NULL);
|
|
|
|
g_return_if_fail (new_value != NULL);
|
|
|
|
g_return_if_fail (new_value->origin != NULL);
|
|
|
|
|
|
|
|
if (!G_VALUE_HOLDS_LONG (&new_value->value) &&
|
|
|
|
!G_VALUE_HOLDS_DOUBLE (&new_value->value) &&
|
|
|
|
!G_VALUE_HOLDS_STRING (&new_value->value) &&
|
|
|
|
!G_VALUE_HOLDS (&new_value->value, G_TYPE_GSTRING))
|
|
|
|
{
|
|
|
|
g_warning (G_STRLOC ": value type invalid");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
name = g_strdup (prop_name);
|
|
|
|
g_strcanon (name, G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS "-", '-');
|
|
|
|
name_quark = g_quark_try_string (name);
|
|
|
|
if (name_quark)
|
|
|
|
g_free (name);
|
|
|
|
else
|
|
|
|
name_quark = g_quark_from_string (name);
|
|
|
|
|
|
|
|
qvalue = g_datalist_id_get_data (&settings->queued_settings, name_quark);
|
|
|
|
if (!qvalue)
|
|
|
|
{
|
|
|
|
qvalue = g_new0 (GtkSettingsValue, 1);
|
|
|
|
g_datalist_id_set_data_full (&settings->queued_settings, name_quark, qvalue, free_value);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_free (qvalue->origin);
|
|
|
|
g_value_unset (&qvalue->value);
|
|
|
|
}
|
|
|
|
qvalue->origin = g_strdup (new_value->origin);
|
|
|
|
g_value_init (&qvalue->value, G_VALUE_TYPE (&new_value->value));
|
|
|
|
g_value_copy (&new_value->value, &qvalue->value);
|
|
|
|
pspec = g_object_class_find_property (G_OBJECT_GET_CLASS (settings), g_quark_to_string (name_quark));
|
|
|
|
if (pspec)
|
|
|
|
apply_queued_setting (settings, pspec, qvalue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_settings_set_string_property (GtkSettings *settings,
|
|
|
|
const gchar *name,
|
|
|
|
const gchar *v_string,
|
|
|
|
const gchar *origin)
|
|
|
|
{
|
|
|
|
GtkSettingsValue svalue = { NULL, { 0, }, };
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_SETTINGS (settings));
|
|
|
|
g_return_if_fail (name != NULL);
|
|
|
|
g_return_if_fail (v_string != NULL);
|
|
|
|
g_return_if_fail (origin != NULL);
|
|
|
|
|
|
|
|
svalue.origin = (gchar*) origin;
|
|
|
|
g_value_init (&svalue.value, G_TYPE_STRING);
|
|
|
|
g_value_set_static_string (&svalue.value, v_string);
|
|
|
|
gtk_settings_set_property_value (settings, name, &svalue);
|
|
|
|
g_value_unset (&svalue.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_settings_set_long_property (GtkSettings *settings,
|
|
|
|
const gchar *name,
|
|
|
|
glong v_long,
|
|
|
|
const gchar *origin)
|
|
|
|
{
|
|
|
|
GtkSettingsValue svalue = { NULL, { 0, }, };
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_SETTINGS (settings));
|
|
|
|
g_return_if_fail (name != NULL);
|
|
|
|
g_return_if_fail (origin != NULL);
|
|
|
|
|
|
|
|
svalue.origin = (gchar*) origin;
|
|
|
|
g_value_init (&svalue.value, G_TYPE_LONG);
|
|
|
|
g_value_set_long (&svalue.value, v_long);
|
|
|
|
gtk_settings_set_property_value (settings, name, &svalue);
|
|
|
|
g_value_unset (&svalue.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gtk_settings_set_double_property (GtkSettings *settings,
|
|
|
|
const gchar *name,
|
|
|
|
gdouble v_double,
|
|
|
|
const gchar *origin)
|
|
|
|
{
|
|
|
|
GtkSettingsValue svalue = { NULL, { 0, }, };
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_SETTINGS (settings));
|
|
|
|
g_return_if_fail (name != NULL);
|
|
|
|
g_return_if_fail (origin != NULL);
|
|
|
|
|
|
|
|
svalue.origin = (gchar*) origin;
|
|
|
|
g_value_init (&svalue.value, G_TYPE_DOUBLE);
|
|
|
|
g_value_set_double (&svalue.value, v_double);
|
|
|
|
gtk_settings_set_property_value (settings, name, &svalue);
|
|
|
|
g_value_unset (&svalue.value);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gtk_rc_property_parse_color (const GParamSpec *pspec,
|
|
|
|
const GString *gstring,
|
|
|
|
GValue *property_value)
|
|
|
|
{
|
|
|
|
GdkColor color = { 0, 0, 0, 0, };
|
|
|
|
GScanner *scanner;
|
|
|
|
gboolean success;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), FALSE);
|
2001-04-02 23:33:47 +00:00
|
|
|
g_return_val_if_fail (G_VALUE_HOLDS (property_value, GDK_TYPE_COLOR), FALSE);
|
2001-03-18 04:50:34 +00:00
|
|
|
|
|
|
|
scanner = gtk_rc_scanner_new ();
|
|
|
|
g_scanner_input_text (scanner, gstring->str, gstring->len);
|
|
|
|
if (gtk_rc_parse_color (scanner, &color) == G_TOKEN_NONE &&
|
|
|
|
g_scanner_get_next_token (scanner) == G_TOKEN_EOF)
|
|
|
|
{
|
|
|
|
g_value_set_boxed (property_value, &color);
|
|
|
|
success = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
success = FALSE;
|
|
|
|
g_scanner_destroy (scanner);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gtk_rc_property_parse_enum (const GParamSpec *pspec,
|
|
|
|
const GString *gstring,
|
|
|
|
GValue *property_value)
|
|
|
|
{
|
|
|
|
gboolean need_closing_brace = FALSE, success = FALSE;
|
|
|
|
GScanner *scanner;
|
|
|
|
GEnumValue *enum_value = NULL;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), FALSE);
|
|
|
|
g_return_val_if_fail (G_VALUE_HOLDS_ENUM (property_value), FALSE);
|
|
|
|
|
|
|
|
scanner = gtk_rc_scanner_new ();
|
|
|
|
g_scanner_input_text (scanner, gstring->str, gstring->len);
|
|
|
|
|
|
|
|
/* we just want to parse _one_ value, but for consistency with flags parsing
|
|
|
|
* we support optional paranthesis
|
|
|
|
*/
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
if (scanner->token == '(')
|
|
|
|
{
|
|
|
|
need_closing_brace = TRUE;
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
}
|
|
|
|
if (scanner->token == G_TOKEN_IDENTIFIER)
|
|
|
|
{
|
|
|
|
GEnumClass *class = G_PARAM_SPEC_ENUM (pspec)->enum_class;
|
|
|
|
|
|
|
|
enum_value = g_enum_get_value_by_name (class, scanner->value.v_identifier);
|
|
|
|
if (!enum_value)
|
|
|
|
enum_value = g_enum_get_value_by_nick (class, scanner->value.v_identifier);
|
|
|
|
if (enum_value)
|
|
|
|
{
|
|
|
|
g_value_set_enum (property_value, enum_value->value);
|
|
|
|
success = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (scanner->token == G_TOKEN_INT)
|
|
|
|
{
|
|
|
|
g_value_set_enum (property_value, scanner->value.v_int);
|
|
|
|
success = TRUE;
|
|
|
|
}
|
|
|
|
if (need_closing_brace && g_scanner_get_next_token (scanner) != ')')
|
|
|
|
success = FALSE;
|
|
|
|
if (g_scanner_get_next_token (scanner) != G_TOKEN_EOF)
|
|
|
|
success = FALSE;
|
|
|
|
|
|
|
|
g_scanner_destroy (scanner);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
static guint
|
|
|
|
parse_flags_value (GScanner *scanner,
|
|
|
|
GFlagsClass *class,
|
|
|
|
guint *number)
|
|
|
|
{
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
if (scanner->token == G_TOKEN_IDENTIFIER)
|
|
|
|
{
|
|
|
|
GFlagsValue *flags_value;
|
|
|
|
|
|
|
|
flags_value = g_flags_get_value_by_name (class, scanner->value.v_identifier);
|
|
|
|
if (!flags_value)
|
|
|
|
flags_value = g_flags_get_value_by_nick (class, scanner->value.v_identifier);
|
|
|
|
if (flags_value)
|
|
|
|
{
|
|
|
|
*number |= flags_value->value;
|
|
|
|
return G_TOKEN_NONE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (scanner->token == G_TOKEN_INT)
|
|
|
|
{
|
|
|
|
*number |= scanner->value.v_int;
|
|
|
|
return G_TOKEN_NONE;
|
|
|
|
}
|
|
|
|
return G_TOKEN_IDENTIFIER;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gtk_rc_property_parse_flags (const GParamSpec *pspec,
|
|
|
|
const GString *gstring,
|
|
|
|
GValue *property_value)
|
|
|
|
{
|
|
|
|
GFlagsClass *class;
|
|
|
|
gboolean success = FALSE;
|
|
|
|
GScanner *scanner;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), FALSE);
|
|
|
|
g_return_val_if_fail (G_VALUE_HOLDS_FLAGS (property_value), FALSE);
|
|
|
|
|
|
|
|
class = G_PARAM_SPEC_FLAGS (pspec)->flags_class;
|
|
|
|
scanner = gtk_rc_scanner_new ();
|
|
|
|
g_scanner_input_text (scanner, gstring->str, gstring->len);
|
|
|
|
|
|
|
|
/* parse either a single flags value or a "\( ... [ \| ... ] \)" compound */
|
|
|
|
if (g_scanner_peek_next_token (scanner) == G_TOKEN_IDENTIFIER ||
|
|
|
|
scanner->next_token == G_TOKEN_INT)
|
|
|
|
{
|
|
|
|
guint token, flags_value = 0;
|
|
|
|
|
|
|
|
token = parse_flags_value (scanner, class, &flags_value);
|
|
|
|
|
|
|
|
if (token == G_TOKEN_NONE && g_scanner_peek_next_token (scanner) == G_TOKEN_EOF)
|
|
|
|
{
|
|
|
|
success = TRUE;
|
|
|
|
g_value_set_flags (property_value, flags_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else if (g_scanner_get_next_token (scanner) == '(')
|
|
|
|
{
|
|
|
|
guint token, flags_value = 0;
|
|
|
|
|
|
|
|
/* parse first value */
|
|
|
|
token = parse_flags_value (scanner, class, &flags_value);
|
|
|
|
|
|
|
|
/* parse nth values, preceeded by '|' */
|
|
|
|
while (token == G_TOKEN_NONE && g_scanner_get_next_token (scanner) == '|')
|
|
|
|
token = parse_flags_value (scanner, class, &flags_value);
|
|
|
|
|
|
|
|
/* done, last token must have closed expression */
|
|
|
|
if (token == G_TOKEN_NONE && scanner->token == ')' &&
|
|
|
|
g_scanner_peek_next_token (scanner) == G_TOKEN_EOF)
|
|
|
|
{
|
|
|
|
g_value_set_flags (property_value, flags_value);
|
|
|
|
success = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_scanner_destroy (scanner);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
2001-04-02 03:47:25 +00:00
|
|
|
|
|
|
|
static gboolean
|
|
|
|
get_braced_int (GScanner *scanner,
|
|
|
|
gboolean first,
|
|
|
|
gboolean last,
|
|
|
|
gint *value)
|
|
|
|
{
|
|
|
|
if (first)
|
|
|
|
{
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
if (scanner->token != '{')
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
if (scanner->token != G_TOKEN_INT)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*value = scanner->value.v_int;
|
|
|
|
|
|
|
|
if (last)
|
|
|
|
{
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
if (scanner->token != '}')
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_scanner_get_next_token (scanner);
|
|
|
|
if (scanner->token != ',')
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gtk_rc_property_parse_requisition (const GParamSpec *pspec,
|
|
|
|
const GString *gstring,
|
|
|
|
GValue *property_value)
|
|
|
|
{
|
|
|
|
GtkRequisition requisition;
|
|
|
|
GScanner *scanner;
|
|
|
|
gboolean success = FALSE;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), FALSE);
|
|
|
|
g_return_val_if_fail (G_VALUE_HOLDS_BOXED (property_value), FALSE);
|
|
|
|
|
|
|
|
scanner = gtk_rc_scanner_new ();
|
|
|
|
g_scanner_input_text (scanner, gstring->str, gstring->len);
|
|
|
|
|
|
|
|
if (get_braced_int (scanner, TRUE, FALSE, &requisition.width) &&
|
|
|
|
get_braced_int (scanner, FALSE, TRUE, &requisition.height))
|
|
|
|
{
|
|
|
|
g_value_set_boxed (property_value, &requisition);
|
|
|
|
success = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_scanner_destroy (scanner);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gtk_rc_property_parse_border (const GParamSpec *pspec,
|
|
|
|
const GString *gstring,
|
|
|
|
GValue *property_value)
|
|
|
|
{
|
|
|
|
GtkBorder border;
|
|
|
|
GScanner *scanner;
|
|
|
|
gboolean success = FALSE;
|
|
|
|
|
|
|
|
g_return_val_if_fail (G_IS_PARAM_SPEC (pspec), FALSE);
|
|
|
|
g_return_val_if_fail (G_VALUE_HOLDS_BOXED (property_value), FALSE);
|
|
|
|
|
|
|
|
scanner = gtk_rc_scanner_new ();
|
|
|
|
g_scanner_input_text (scanner, gstring->str, gstring->len);
|
|
|
|
|
|
|
|
if (get_braced_int (scanner, TRUE, FALSE, &border.left) &&
|
|
|
|
get_braced_int (scanner, FALSE, FALSE, &border.right) &&
|
|
|
|
get_braced_int (scanner, FALSE, FALSE, &border.top) &&
|
|
|
|
get_braced_int (scanner, FALSE, TRUE, &border.bottom))
|
|
|
|
{
|
|
|
|
g_value_set_boxed (property_value, &border);
|
|
|
|
success = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_scanner_destroy (scanner);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
2001-04-02 23:33:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
_gtk_settings_handle_event (GdkEventSetting *event)
|
|
|
|
{
|
|
|
|
GtkSettings *settings = gtk_settings_get_global ();
|
|
|
|
|
|
|
|
if (g_object_class_find_property (G_OBJECT_GET_CLASS (settings), event->name))
|
|
|
|
g_object_notify (G_OBJECT (settings), event->name);
|
|
|
|
}
|