From 9c9ceb681c943447178c66fafb0fe825db3fd25d Mon Sep 17 00:00:00 2001 From: Jason Conti Date: Fri, 13 May 2011 14:34:34 -0400 Subject: Integrated the dbus-spy. Menu items for notification summaries are appended as they arrive. --- src/notification.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/notification.c') diff --git a/src/notification.c b/src/notification.c index 9b0a3c9..10f83e8 100644 --- a/src/notification.c +++ b/src/notification.c @@ -122,6 +122,30 @@ notification_new_from_dbus_message(GDBusMessage *message) return self; } +const gchar* +notification_get_app_name(Notification *self) +{ + return self->priv->app_name; +} + +const gchar* +notification_get_app_icon(Notification *self) +{ + return self->priv->app_icon; +} + +const gchar* +notification_get_summary(Notification *self) +{ + return self->priv->summary; +} + +const gchar* +notification_get_body(Notification *self) +{ + return self->priv->body; +} + void notification_print(Notification *self) { -- cgit v1.2.3