[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r104837: * process.c: Add defined (HA
From: |
Jan D. |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r104837: * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h |
Date: |
Fri, 01 Jul 2011 11:18:46 +0200 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 104837
fixes bug(s): http://debbugs.gnu.org/8967
committer: Jan D. <address@hidden>
branch nick: trunk
timestamp: Fri 2011-07-01 11:18:46 +0200
message:
* process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
(wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
xg_select.
* xgselect.c: Add defined (HAVE_GSETTINGS).
(xgselect_initialize): Ditto.
* xsettings.c (store_monospaced_changed): Take new font as arg and
check for change against current_mono_font.
(EMACS_TYPE_SETTINGS): Remove this and related defines.
(emacs_settings_constructor, emacs_settings_get_property)
(emacs_settings_set_property, emacs_settings_class_init)
(emacs_settings_init, gsettings_obj): Remove.
(something_changedCB): New function for HAVE_GSETTINGS.
(something_changedCB): HAVE_GCONF: Call store_monospaced_changed
with value as argument.
(init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
g_settings_new. Do not create gsettings_obj.
Remove calls to g_settings_bind. Connect something_changedCB to
"changed".
modified:
src/ChangeLog
src/process.c
src/xgselect.c
src/xsettings.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog 2011-07-01 05:12:00 +0000
+++ b/src/ChangeLog 2011-07-01 09:18:46 +0000
@@ -1,3 +1,26 @@
+2011-07-01 Jan Djärv <address@hidden>
+
+ * xsettings.c (store_monospaced_changed): Take new font as arg and
+ check for change against current_mono_font.
+ (EMACS_TYPE_SETTINGS): Remove this and related defines.
+ (emacs_settings_constructor, emacs_settings_get_property)
+ (emacs_settings_set_property, emacs_settings_class_init)
+ (emacs_settings_init, gsettings_obj): Remove.
+ (something_changedCB): New function for HAVE_GSETTINGS.
+ (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
+ with value as argument.
+ (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
+ g_settings_new (Bug#8967). Do not create gsettings_obj.
+ Remove calls to g_settings_bind. Connect something_changedCB to
+ "changed".
+
+ * xgselect.c: Add defined (HAVE_GSETTINGS).
+ (xgselect_initialize): Ditto.
+
+ * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
+ (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
+ xg_select.
+
2011-07-01 Paul Eggert <address@hidden>
* eval.c (struct backtrace): Simplify and port the data structure.
=== modified file 'src/process.c'
--- a/src/process.c 2011-06-26 03:40:40 +0000
+++ b/src/process.c 2011-07-01 09:18:46 +0000
@@ -102,9 +102,9 @@
#include "gnutls.h"
#endif
-#if defined (USE_GTK) || defined (HAVE_GCONF)
+#if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
#include "xgselect.h"
-#endif /* defined (USE_GTK) || defined (HAVE_GCONF) */
+#endif
#ifdef HAVE_NS
#include "nsterm.h"
#endif
@@ -4527,7 +4527,7 @@
process_output_skip = 0;
}
#endif
-#if defined (USE_GTK) || defined (HAVE_GCONF)
+#if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
nfds = xg_select
#elif defined (HAVE_NS)
nfds = ns_select
=== modified file 'src/xgselect.c'
--- a/src/xgselect.c 2011-04-16 07:57:31 +0000
+++ b/src/xgselect.c 2011-07-01 09:18:46 +0000
@@ -15,14 +15,14 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
-along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
+along with GNU Emacs. If not, see <http§://www.gnu.org/licenses/>. */
#include <config.h>
#include <setjmp.h>
#include "xgselect.h"
-#if defined (USE_GTK) || defined (HAVE_GCONF)
+#if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
#include <glib.h>
#include <errno.h>
@@ -149,13 +149,13 @@
return retval;
}
-#endif /* defined (USE_GTK) || defined (HAVE_GCONF) */
+#endif /* USE_GTK || HAVE_GCONF || HAVE_GSETTINGS */
void
xgselect_initialize (void)
{
-#if defined (USE_GTK) || defined (HAVE_GCONF)
+#if defined (USE_GTK) || defined (HAVE_GCONF) || defined (HAVE_GSETTINGS)
gfds_size = 128;
gfds = xmalloc (sizeof (*gfds)*gfds_size);
-#endif /* defined (USE_GTK) || defined (HAVE_GCONF) */
+#endif
}
=== modified file 'src/xsettings.c'
--- a/src/xsettings.c 2011-06-30 15:07:40 +0000
+++ b/src/xsettings.c 2011-07-01 09:18:46 +0000
@@ -66,9 +66,15 @@
}
static void
-store_monospaced_changed (void)
+store_monospaced_changed (const char *newfont)
{
- if (first_dpyinfo != NULL)
+ if (current_mono_font != NULL && strcmp (newfont, current_mono_font) == 0)
+ return; /* No change. */
+
+ xfree (current_mono_font);
+ current_mono_font = xstrdup (newfont);
+
+ if (first_dpyinfo != NULL && use_system_font)
{
/* Check if display still open */
struct x_display_info *dpyinfo;
@@ -76,7 +82,7 @@
for (dpyinfo = x_display_list; !found && dpyinfo; dpyinfo =
dpyinfo->next)
found = dpyinfo == first_dpyinfo;
- if (found && use_system_font)
+ if (found)
store_config_changed_event (Qmonospace_font_name,
XCAR (first_dpyinfo->name_list_element));
}
@@ -84,133 +90,7 @@
#ifdef HAVE_GSETTINGS
-
-#define EMACS_TYPE_SETTINGS (emacs_settings_get_type ())
-#define EMACS_SETTINGS(obj) \
- (G_TYPE_CHECK_INSTANCE_CAST ((obj), EMACS_TYPE_SETTINGS, EmacsSettings))
-#define EMACS_IS_SETTINGS(obj) \
- (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMACS_TYPE_SETTINGS))
-#define EMACS_SETTINGS_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_CAST ((klass), EMACS_TYPE_SETTINGS, EmacsSettingsClass))
-#define EMACS_IS_SETTINGS_CLASS(klass) \
- (G_TYPE_CHECK_CLASS_TYPE ((klass), EMACS_TYPE_SETTINGS))
-#define EMACS_SETTINGS_GET_CLASS(obj) \
- (G_TYPE_INSTANCE_GET_CLASS ((obj), EMACS_TYPE_SETTINGS, EmacsSettingsClass))
-
-typedef struct _EmacsSettings EmacsSettings;
-typedef struct _EmacsSettingsClass EmacsSettingsClass;
-
-struct _EmacsSettings
-{
- GObject parent_instance;
-};
-
-struct _EmacsSettingsClass
-{
- GObjectClass parent_class;
-};
-
-/* will create emacs_settings_get_type and set emacs_settings_parent_class */
-G_DEFINE_TYPE (EmacsSettings, emacs_settings, G_TYPE_OBJECT);
-
-static GObject *
-emacs_settings_constructor (GType gtype,
- guint n_properties,
- GObjectConstructParam *properties)
-{
- GObject *obj;
-
- /* Always chain up to the parent constructor */
- obj = G_OBJECT_CLASS (emacs_settings_parent_class)
- ->constructor (gtype, n_properties, properties);
-
- /* update the object state depending on constructor properties */
-
- return obj;
-}
-
-enum { PROP_MONO = 1, PROP_FONT };
-
-static void
-emacs_settings_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec)
-{
- switch (property_id)
- {
- case PROP_MONO:
- g_value_set_string (value, current_mono_font);
- break;
- case PROP_FONT:
- g_value_set_string (value, current_font);
- break;
- }
-}
-
-static void
-emacs_settings_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec)
-{
- const char *newfont;
- switch (property_id)
- {
- case PROP_MONO:
- xfree (current_mono_font);
- newfont = g_value_get_string (value);
- if (current_mono_font != NULL && strcmp (newfont, current_mono_font) ==
0)
- return; /* No change. */
-
- current_mono_font = xstrdup (newfont);
- store_monospaced_changed ();
- break;
-
- case PROP_FONT:
- xfree (current_font);
- current_font = xstrdup (g_value_get_string (value));
- break;
- }
-}
-
-static void
-emacs_settings_class_init (EmacsSettingsClass *klass)
-{
- GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
-
- gobject_class->constructor = emacs_settings_constructor;
- gobject_class->set_property = emacs_settings_set_property;
- gobject_class->get_property = emacs_settings_get_property;
-
- g_object_class_install_property
- (gobject_class,
- PROP_MONO,
- g_param_spec_string ("monospace-font",
- "Monospace-font",
- "System monospace font",
- "",
- G_PARAM_READWRITE));
- g_object_class_install_property
- (gobject_class,
- PROP_FONT,
- g_param_spec_string ("font",
- "Font",
- "System font",
- "",
- G_PARAM_READWRITE));
-
-}
-
-static void
-emacs_settings_init (EmacsSettings *self)
-{
-}
-
-
static GSettings *gsettings_client;
-static EmacsSettings *gsettings_obj;
-
#else
#ifdef HAVE_GCONF
static GConfClient *gconf_client;
@@ -250,6 +130,26 @@
#define SYSTEM_MONO_FONT "monospace-font-name"
#define SYSTEM_FONT "font-name"
+static void
+something_changedCB (GSettings *settings,
+ gchar *key,
+ gpointer user_data)
+{
+ GVariant *val;
+ if (strcmp (key, SYSTEM_MONO_FONT) != 0) return;
+ val = g_settings_get_value (settings, SYSTEM_MONO_FONT);
+ if (val)
+ {
+ g_variant_ref_sink (val);
+ if (g_variant_is_of_type (val, G_VARIANT_TYPE_STRING))
+ {
+ const gchar *newfont = g_variant_get_string (val, NULL);
+ store_monospaced_changed (newfont);
+ }
+ g_variant_unref (val);
+ }
+}
+
#else
#ifdef HAVE_GCONF
#define SYSTEM_MONO_FONT "/desktop/gnome/interface/monospace_font_name"
@@ -270,12 +170,7 @@
if (v->type == GCONF_VALUE_STRING)
{
const char *value = gconf_value_get_string (v);
- if (current_mono_font != NULL && strcmp (value, current_mono_font) == 0)
- return; /* No change. */
-
- xfree (current_mono_font);
- current_mono_font = xstrdup (value);
- store_monospaced_changed ();
+ store_monospaced_changed (value);
}
}
@@ -784,22 +679,23 @@
{
#ifdef HAVE_GSETTINGS
GVariant *val;
+ const gchar *const *schemas;
+ int schema_found = 0;
+
#ifdef HAVE_G_TYPE_INIT
g_type_init ();
#endif
+ schemas = g_settings_list_schemas();
+ if (schemas == NULL) return;
+ while (! schema_found && *schemas != NULL)
+ schema_found = strcmp (*schemas++, GSETTINGS_SCHEMA) == 0;
+ if (!schema_found) return;
+
gsettings_client = g_settings_new (GSETTINGS_SCHEMA);
if (!gsettings_client) return;
g_object_ref_sink (G_OBJECT (gsettings_client));
- gsettings_obj = g_object_new (EMACS_TYPE_SETTINGS, NULL);
- if (!gsettings_obj)
- {
- g_object_unref (G_OBJECT (gsettings_client));
- return;
- }
- g_object_ref_sink (G_OBJECT (gsettings_obj));
-
val = g_settings_get_value (gsettings_client, SYSTEM_MONO_FONT);
if (val)
{
@@ -809,10 +705,8 @@
g_variant_unref (val);
}
- g_settings_bind (gsettings_client, SYSTEM_MONO_FONT, gsettings_obj,
- "monospace-font", G_SETTINGS_BIND_GET);
- g_settings_bind (gsettings_client, SYSTEM_FONT, gsettings_obj,
- "font", G_SETTINGS_BIND_GET);
+ g_signal_connect (G_OBJECT (gsettings_client), "changed",
+ G_CALLBACK (something_changedCB), NULL);
#endif /* HAVE_GSETTINGS */
}
@@ -935,7 +829,6 @@
first_dpyinfo = NULL;
#ifdef HAVE_GSETTINGS
gsettings_client = NULL;
- gsettings_obj = NULL;
#else
#ifdef HAVE_GCONF
gconf_client = NULL;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r104837: * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h,
Jan D. <=