summaryrefslogtreecommitdiff
path: root/settings
diff options
context:
space:
mode:
authorAli Abdallah <ali.slackware@gmail.com>2009-06-20 17:14:35 +0000
committerAli Abdallah <ali.slackware@gmail.com>2009-06-20 17:14:35 +0000
commit653f888132104e8074658f7376b7c11eee1203ff (patch)
tree22255e357561aa65527028ee0f1e22e29e8f311f /settings
parent628eb04efc22fe7330c203a18c92fabb1dc8c7aa (diff)
downloadixfce4-power-manager-653f888132104e8074658f7376b7c11eee1203ff.tar.gz
* Fix a DPMS storage values.
(Old svn revision: 7621)
Diffstat (limited to 'settings')
-rw-r--r--settings/xfpm-settings.c47
1 files changed, 36 insertions, 11 deletions
diff --git a/settings/xfpm-settings.c b/settings/xfpm-settings.c
index 16cf6d05..0ca1b359 100644
--- a/settings/xfpm-settings.c
+++ b/settings/xfpm-settings.c
@@ -317,29 +317,48 @@ notify_toggled_cb (GtkWidget *w, XfconfChannel *channel)
void
set_hibernate_inactivity (GtkWidget *w, XfconfChannel *channel)
{
- if (!xfconf_channel_set_string (channel, "/" INACTIVITY_SLEEP_MODE, "Hibernate") )
+ gboolean active;
+
+ active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (w));
+
+ if ( active )
{
- g_critical ("Cannot set value hibernate for property %s", INACTIVITY_SLEEP_MODE);
+ if (!xfconf_channel_set_string (channel, "/" INACTIVITY_SLEEP_MODE, "Hibernate") )
+ {
+ g_critical ("Cannot set value hibernate for property %s", INACTIVITY_SLEEP_MODE);
+ }
}
}
void
set_suspend_inactivity (GtkWidget *w, XfconfChannel *channel)
{
- if (!xfconf_channel_set_string (channel, "/" INACTIVITY_SLEEP_MODE, "Suspend") )
+ gboolean active;
+
+ active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (w));
+ if ( active )
{
- g_critical ("Cannot set value suspend for property %s", INACTIVITY_SLEEP_MODE);
+ if (!xfconf_channel_set_string (channel, "/" INACTIVITY_SLEEP_MODE, "Suspend") )
+ {
+ g_critical ("Cannot set value suspend for property %s", INACTIVITY_SLEEP_MODE);
+ }
}
}
-
void
set_dpms_standby_mode (GtkWidget *w, XfconfChannel *channel)
{
#ifdef HAVE_DPMS
- if (!xfconf_channel_set_string (channel, "/" DPMS_SLEEP_MODE, "standby") )
+ gboolean active;
+
+ active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (w));
+
+ if ( active )
{
- g_critical ("Cannot set value sleep for property %s\n", DPMS_SLEEP_MODE);
+ if (!xfconf_channel_set_string (channel, "/" DPMS_SLEEP_MODE, "standby") )
+ {
+ g_critical ("Cannot set value sleep for property %s\n", DPMS_SLEEP_MODE);
+ }
}
#endif
}
@@ -348,9 +367,15 @@ void
set_dpms_suspend_mode (GtkWidget *w, XfconfChannel *channel)
{
#ifdef HAVE_DPMS
- if (!xfconf_channel_set_string (channel, "/" DPMS_SLEEP_MODE, "suspend") )
+ gboolean active;
+
+ active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (w));
+ if ( active )
{
- g_critical ("Cannot set value sleep for property %s\n", DPMS_SLEEP_MODE);
+ if (!xfconf_channel_set_string (channel, "/" DPMS_SLEEP_MODE, "suspend") )
+ {
+ g_critical ("Cannot set value sleep for property %s\n", DPMS_SLEEP_MODE);
+ }
}
#endif
}
@@ -1169,9 +1194,9 @@ xfpm_settings_advanced (XfconfChannel *channel, gboolean system_laptop, gboolean
suspend_dpms_mode = GTK_WIDGET (gtk_builder_get_object (xml, "suspend-dpms-mode"));
#ifdef HAVE_DPMS
- str = xfconf_channel_get_string (channel, "/" DPMS_SLEEP_MODE, "sleep");
+ str = xfconf_channel_get_string (channel, "/" DPMS_SLEEP_MODE, "standby");
- if ( xfpm_strequal (str, "sleep" ) )
+ if ( xfpm_strequal (str, "standby" ) )
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (sleep_dpms_mode), TRUE);
else if ( xfpm_strequal (str, "suspend") )
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (suspend_dpms_mode), TRUE);