aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-03-16 16:26:29 -0500
committerTed Gould <ted@gould.cx>2010-03-16 16:26:29 -0500
commitc8438f91c8b1d588bc0d353b93852e27c3434a34 (patch)
tree522ea59e79d53408c113b2699ff4bfbda1005ffb
parentc5050f03e27166026a55b21353d3ee058e077523 (diff)
downloadayatana-indicator-session-c8438f91c8b1d588bc0d353b93852e27c3434a34.tar.gz
ayatana-indicator-session-c8438f91c8b1d588bc0d353b93852e27c3434a34.tar.bz2
ayatana-indicator-session-c8438f91c8b1d588bc0d353b93852e27c3434a34.zip
Adding in the mechanism to actually do the callback and change the label.
-rw-r--r--src/lock-helper.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/lock-helper.c b/src/lock-helper.c
index 4b57f19..3c2a7d5 100644
--- a/src/lock-helper.c
+++ b/src/lock-helper.c
@@ -19,6 +19,7 @@ You should have received a copy of the GNU General Public License along
with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <glib/gi18n.h>
#include <gconf/gconf-client.h>
#include <dbus/dbus-glib.h>
#include "lock-helper.h"
@@ -231,6 +232,28 @@ lock_screen_setup (gpointer data)
return FALSE;
}
+/* When the GConf key changes we need to adjust the text on
+ what we're going to do with the menu item */
+static void
+lockscreen_update (GConfClient *client, guint cnxn_id, GConfEntry *entry, gpointer data) {
+ DbusmenuMenuitem * mi = (DbusmenuMenuitem*) data;
+ const gchar * key = gconf_entry_get_key (entry);
+
+ if(g_strcmp0 (key, GCONF_KEY) == 0) {
+ if (will_lock_screen()) {
+ dbusmenu_menuitem_property_set(mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Lock Screen"));
+ } else {
+ dbusmenu_menuitem_property_set(mi, DBUSMENU_MENUITEM_PROP_LABEL, _("Start Screensaver"));
+ }
+ }
+}
+
+/* Notification handler for lock menuitems. */
+guint lock_notify = 0;
+
+/* Sets the menu item to be updating. There can
+ only be one. So we clear and reset if we get
+ another. */
void
lock_screen_update_item (DbusmenuMenuitem * mi)
{
@@ -238,7 +261,19 @@ lock_screen_update_item (DbusmenuMenuitem * mi)
gconf_client = gconf_client_get_default();
}
+ if (lock_notify == 0) {
+ gconf_client_add_dir (gconf_client,
+ GCONF_DIR,
+ GCONF_CLIENT_PRELOAD_ONELEVEL,
+ NULL);
+ }
+ if (lock_notify != 0) {
+ gconf_client_notify_remove(gconf_client, lock_notify);
+ lock_notify = 0;
+ }
+ lock_notify = gconf_client_notify_add(gconf_client, GCONF_KEY, lockscreen_update, mi, NULL, NULL);
+ return;
}