aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2010-08-03 15:12:23 -0500
committerTed Gould <ted@gould.cx>2010-08-03 15:12:23 -0500
commit706a72b9b2a36c39ce274a2508031b4cc0f4bb2e (patch)
tree3894abbe41ad7cfb540a92c93639e4b9c600896a
parente541156e92220917a58ff8abce1cfa235dc343f1 (diff)
downloadayatana-indicator-application-706a72b9b2a36c39ce274a2508031b4cc0f4bb2e.tar.gz
ayatana-indicator-application-706a72b9b2a36c39ce274a2508031b4cc0f4bb2e.tar.bz2
ayatana-indicator-application-706a72b9b2a36c39ce274a2508031b4cc0f4bb2e.zip
Adding in the convience wrappers
-rw-r--r--src/app-indicator.c58
-rw-r--r--src/app-indicator.h5
2 files changed, 63 insertions, 0 deletions
diff --git a/src/app-indicator.c b/src/app-indicator.c
index 29149ae..ce79165 100644
--- a/src/app-indicator.c
+++ b/src/app-indicator.c
@@ -1222,6 +1222,31 @@ app_indicator_set_icon (AppIndicator *self, const gchar *icon_name)
return;
}
+/**
+ app_indicator_set_label:
+ @self: The #AppIndicator object to use
+ @label: The label to show next to the icon.
+ @guide: A guide to size the label correctly.
+
+ This is a wrapper function for the #AppIndicator:label and
+ #AppIndicator:guide properties. This function can take #NULL
+ as either @label or @guide and will clear the entries.
+*/
+void
+app_indicator_set_label (AppIndicator *self, const gchar * label, const gchar * guide)
+{
+ g_return_if_fail (IS_APP_INDICATOR (self));
+ /* Note: The label can be NULL, it's okay */
+ /* Note: The guide can be NULL, it's okay */
+
+ g_object_set(G_OBJECT(self),
+ PROP_LABEL_S, label == NULL ? "" : label,
+ PROP_LABEL_GUIDE_S, guide == NULL ? "" : guide,
+ NULL);
+
+ return;
+}
+
static void
activate_menuitem (DbusmenuMenuitem *mi, guint timestamp, gpointer user_data)
{
@@ -1749,3 +1774,36 @@ app_indicator_get_menu (AppIndicator *self)
return GTK_MENU(priv->menu);
}
+
+/**
+ app_indicator_get_label:
+ @self: The #AppIndicator object to use
+
+ Wrapper function for property #AppIndicator:label.
+
+ Return value: The current label.
+*/
+const gchar *
+app_indicator_get_label (AppIndicator *self)
+{
+ g_return_val_if_fail (IS_APP_INDICATOR (self), NULL);
+
+ return self->priv->label;
+}
+
+/**
+ app_indicator_get_label_guide:
+ @self: The #AppIndicator object to use
+
+ Wrapper function for property #AppIndicator:label-guide.
+
+ Return value: The current label guide.
+*/
+const gchar *
+app_indicator_get_label_guide (AppIndicator *self)
+{
+ g_return_val_if_fail (IS_APP_INDICATOR (self), NULL);
+
+ return self->priv->label_guide;
+}
+
diff --git a/src/app-indicator.h b/src/app-indicator.h
index e37abd4..767cf72 100644
--- a/src/app-indicator.h
+++ b/src/app-indicator.h
@@ -226,6 +226,9 @@ void app_indicator_set_menu (AppIndicator
GtkMenu *menu);
void app_indicator_set_icon (AppIndicator *self,
const gchar *icon_name);
+void app_indicator_set_label (AppIndicator *self,
+ const gchar *label,
+ const gchar *guide);
/* Get properties */
const gchar * app_indicator_get_id (AppIndicator *self);
@@ -234,6 +237,8 @@ AppIndicatorStatus app_indicator_get_status (AppIndicator *
const gchar * app_indicator_get_icon (AppIndicator *self);
const gchar * app_indicator_get_attention_icon (AppIndicator *self);
GtkMenu * app_indicator_get_menu (AppIndicator *self);
+const gchar * app_indicator_get_label (AppIndicator *self);
+const gchar * app_indicator_get_label_guide (AppIndicator *self);
G_END_DECLS