summaryrefslogtreecommitdiff
path: root/capplet
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2012-10-02 20:05:07 +0200
committerStefano Karapetsas <[email protected]>2012-10-02 20:05:07 +0200
commitb34dc27b7b191e56cbf640a963435d6e68982608 (patch)
treea655b07b606bb3de16c1f9be0fba1d14e46cacb6 /capplet
parentd564dd5d1416dde95fea79eef1a994bd3d1c7d3f (diff)
downloadmate-session-manager-b34dc27b7b191e56cbf640a963435d6e68982608.tar.bz2
mate-session-manager-b34dc27b7b191e56cbf640a963435d6e68982608.tar.xz
migrate to gsettingsmate-session-manager-1.5.0
Diffstat (limited to 'capplet')
-rw-r--r--capplet/gsm-properties-dialog.c47
-rw-r--r--capplet/main.c2
2 files changed, 18 insertions, 31 deletions
diff --git a/capplet/gsm-properties-dialog.c b/capplet/gsm-properties-dialog.c
index b3a8e74..4ac4500 100644
--- a/capplet/gsm-properties-dialog.c
+++ b/capplet/gsm-properties-dialog.c
@@ -27,7 +27,7 @@
#include <glib/gi18n.h>
#include <gtk/gtk.h>
-#include <mateconf/mateconf-client.h>
+#include <gio/gio.h>
#include "gsm-properties-dialog.h"
#include "gsm-app-dialog.h"
@@ -54,8 +54,8 @@
#define STARTUP_APP_ICON "system-run"
-#define SPC_MATECONF_CONFIG_PREFIX "/apps/mate-session/options"
-#define SPC_MATECONF_AUTOSAVE_KEY SPC_MATECONF_CONFIG_PREFIX "/auto_save_session"
+#define SPC_CONFIG_SCHEMA "org.mate.session"
+#define SPC_AUTOSAVE_KEY "auto-save-session"
struct GsmPropertiesDialogPrivate
{
@@ -71,6 +71,8 @@ struct GsmPropertiesDialogPrivate
GtkWidget *remember_toggle;
GspAppManager *manager;
+
+ GSettings *settings;
};
enum {
@@ -458,15 +460,14 @@ on_row_activated (GtkTreeView *tree_view,
}
static void
-on_autosave_value_notify (MateConfClient *client,
- guint id,
- MateConfEntry *entry,
+on_autosave_value_notify (GSettings *settings,
+ gchar *key,
GsmPropertiesDialog *dialog)
{
gboolean gval;
gboolean bval;
- gval = mateconf_value_get_bool (entry->value);
+ gval = g_settings_get_boolean (settings, key);
bval = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->priv->remember_toggle));
if (bval != gval) {
@@ -478,18 +479,15 @@ static void
on_autosave_value_toggled (GtkToggleButton *button,
GsmPropertiesDialog *dialog)
{
- MateConfClient *client;
gboolean gval;
gboolean bval;
- client = mateconf_client_get_default ();
- gval = mateconf_client_get_bool (client, SPC_MATECONF_AUTOSAVE_KEY, NULL);
+ gval = g_settings_get_boolean (dialog->priv->settings, SPC_AUTOSAVE_KEY);
bval = gtk_toggle_button_get_active (button);
if (gval != bval) {
- mateconf_client_set_bool (client, SPC_MATECONF_AUTOSAVE_KEY, bval, NULL);
+ g_settings_set_boolean (dialog->priv->settings, SPC_AUTOSAVE_KEY, bval);
}
- g_object_unref (client);
}
static void
@@ -508,7 +506,6 @@ setup_dialog (GsmPropertiesDialog *dialog)
GtkTreeViewColumn *column;
GtkCellRenderer *renderer;
GtkTreeSelection *selection;
- MateConfClient *client;
GtkTargetList *targetlist;
gtk_dialog_add_buttons (GTK_DIALOG (dialog),
@@ -655,19 +652,18 @@ setup_dialog (GsmPropertiesDialog *dialog)
G_CALLBACK (on_edit_app_clicked),
dialog);
- client = mateconf_client_get_default ();
+
+ dialog->priv->settings = g_settings_new (SPC_CONFIG_SCHEMA);
+
button = GTK_WIDGET (gtk_builder_get_object (dialog->priv->xml,
CAPPLET_REMEMBER_WIDGET_NAME));
dialog->priv->remember_toggle = button;
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (button),
- mateconf_client_get_bool (client, SPC_MATECONF_AUTOSAVE_KEY, NULL));
- mateconf_client_notify_add (client,
- SPC_MATECONF_AUTOSAVE_KEY,
- (MateConfClientNotifyFunc)on_autosave_value_notify,
- dialog,
- NULL,
- NULL);
- g_object_unref (client);
+ g_settings_get_boolean (dialog->priv->settings, SPC_AUTOSAVE_KEY));
+ g_signal_connect (dialog->priv->settings,
+ "changed::" SPC_AUTOSAVE_KEY,
+ G_CALLBACK (on_autosave_value_notify),
+ dialog);
g_signal_connect (button,
"toggled",
@@ -752,17 +748,10 @@ gsm_properties_dialog_init (GsmPropertiesDialog *dialog)
{
GtkWidget *content_area;
GtkWidget *widget;
- MateConfClient *client;
GError *error;
dialog->priv = GSM_PROPERTIES_DIALOG_GET_PRIVATE (dialog);
- client = mateconf_client_get_default ();
- mateconf_client_add_dir (client,
- SPC_MATECONF_CONFIG_PREFIX,
- MATECONF_CLIENT_PRELOAD_ONELEVEL,
- NULL);
-
dialog->priv->xml = gtk_builder_new ();
gtk_builder_set_translation_domain (dialog->priv->xml, GETTEXT_PACKAGE);
diff --git a/capplet/main.c b/capplet/main.c
index 155b560..4857867 100644
--- a/capplet/main.c
+++ b/capplet/main.c
@@ -27,8 +27,6 @@
#include <glib/gi18n.h>
#include <gtk/gtk.h>
-#include <mateconf/mateconf-client.h>
-
#include "gsm-properties-dialog.h"
static gboolean show_version = FALSE;