aboutsummaryrefslogtreecommitdiff
path: root/src/custom-service-watcher.h
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-11-06 20:41:18 -0600
committerTed Gould <ted@canonical.com>2009-11-06 20:41:18 -0600
commit591311a82b0ce6e0bc74439186bb22d5224d85c5 (patch)
treefc60b788c37a03f98a01e71af8151349cac447cf /src/custom-service-watcher.h
parentced0ec2c7e9e9138fb42422e662bf03deb957343 (diff)
downloadayatana-indicator-application-591311a82b0ce6e0bc74439186bb22d5224d85c5.tar.gz
ayatana-indicator-application-591311a82b0ce6e0bc74439186bb22d5224d85c5.tar.bz2
ayatana-indicator-application-591311a82b0ce6e0bc74439186bb22d5224d85c5.zip
Woot! Now we have signals in our watcher. Let's rock on!
Diffstat (limited to 'src/custom-service-watcher.h')
-rw-r--r--src/custom-service-watcher.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/custom-service-watcher.h b/src/custom-service-watcher.h
index c705fb5..1a037be 100644
--- a/src/custom-service-watcher.h
+++ b/src/custom-service-watcher.h
@@ -20,6 +20,12 @@ typedef struct _CustomServiceWatcherClass CustomServiceWatcherClass;
struct _CustomServiceWatcherClass {
GObjectClass parent_class;
+
+ /* Signals */
+ void (*service_registered) (CustomServiceWatcher * watcher, gchar * object, gpointer data);
+ void (*service_unregistered) (CustomServiceWatcher * watcher, gchar * object, gpointer data);
+ void (*notification_host_registered) (CustomServiceWatcher * watcher, gpointer data);
+ void (*notification_host_unregistered) (CustomServiceWatcher * watcher, gpointer data);
};
struct _CustomServiceWatcher {