diff options
author | Ted Gould <ted@gould.cx> | 2010-08-05 12:08:51 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-08-05 12:08:51 -0500 |
commit | a644617fdbc2257a9e6219532a5a6bfaf6decc90 (patch) | |
tree | aa8dcdc18893ff1153313379567997de54160ef1 | |
parent | 62a5f41b117ec2f8a2c5258522951fe94acfffea (diff) | |
download | ayatana-indicator-application-a644617fdbc2257a9e6219532a5a6bfaf6decc90.tar.gz ayatana-indicator-application-a644617fdbc2257a9e6219532a5a6bfaf6decc90.tar.bz2 ayatana-indicator-application-a644617fdbc2257a9e6219532a5a6bfaf6decc90.zip |
Building a label in the case that we don't have one already.
-rw-r--r-- | src/indicator-application.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/indicator-application.c b/src/indicator-application.c index 461d32e..788c5e9 100644 --- a/src/indicator-application.c +++ b/src/indicator-application.c @@ -587,7 +587,6 @@ application_removed (DBusGProxy * proxy, gint position, IndicatorApplication * a g_object_unref(G_OBJECT(app->entry.image)); } if (app->entry.label != NULL) { - g_warning("Odd, an application indicator with a label?"); g_object_unref(G_OBJECT(app->entry.label)); } if (app->entry.menu != NULL) { @@ -610,11 +609,19 @@ application_label_changed (DBusGProxy * proxy, gint position, const gchar * labe g_warning("Unable to find application at position: %d", position); return; } + + /* TODO: Be able to remove labels */ if (app->entry.label != NULL) { gtk_label_set_text(app->entry.label, label); } else { - /* TODO: Handle the case where we didn't have a label */ + app->entry.label = GTK_LABEL(gtk_label_new(label)); + gtk_widget_show(GTK_WIDGET(app->entry.label)); + + /* We tell listeners that it got removed and readded so + that we can get them to re-look at the new label. */ + g_signal_emit(G_OBJECT(application), INDICATOR_OBJECT_SIGNAL_ENTRY_REMOVED_ID, 0, &(app->entry), TRUE); + g_signal_emit(G_OBJECT(application), INDICATOR_OBJECT_SIGNAL_ENTRY_ADDED_ID, 0, &(app->entry), TRUE); } if (app->guide != NULL) { @@ -622,7 +629,7 @@ application_label_changed (DBusGProxy * proxy, gint position, const gchar * labe app->guide = NULL; } - if (guide != NULL) { + if (guide != NULL && guide[0] != '\0') { app->guide = g_strdup(guide); } |