diff options
author | Ted Gould <ted@gould.cx> | 2010-07-12 09:28:16 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-07-12 09:28:16 -0500 |
commit | e273b812e0ee52f84e2284d2560e63437cbc1a67 (patch) | |
tree | 1eb460bc2d5bbb769af264b1bbd826a69a722f68 /src/application-service-watcher.c | |
parent | 4e2c23b9b99d2014747a051d949b0c2a2d9595db (diff) | |
parent | 7ef183418aaee73864e44d93b32e80962fdea07a (diff) | |
download | libayatana-appindicator-e273b812e0ee52f84e2284d2560e63437cbc1a67.tar.gz libayatana-appindicator-e273b812e0ee52f84e2284d2560e63437cbc1a67.tar.bz2 libayatana-appindicator-e273b812e0ee52f84e2284d2560e63437cbc1a67.zip |
* Merge upstream
* Adding an Approver API to remove things from the AppIndicators.
Diffstat (limited to 'src/application-service-watcher.c')
-rw-r--r-- | src/application-service-watcher.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/application-service-watcher.c b/src/application-service-watcher.c index eff249d..4fe3bc7 100644 --- a/src/application-service-watcher.c +++ b/src/application-service-watcher.c @@ -34,6 +34,7 @@ static gboolean _notification_watcher_server_register_status_notifier_item (Appl static gboolean _notification_watcher_server_registered_status_notifier_items (ApplicationServiceWatcher * appwatcher, GArray ** apps); static gboolean _notification_watcher_server_protocol_version (ApplicationServiceWatcher * appwatcher, char ** version); static gboolean _notification_watcher_server_register_notification_host (ApplicationServiceWatcher * appwatcher, const gchar * host); +static gboolean _notification_watcher_server_register_notification_approver (ApplicationServiceWatcher * appwatcher, const gchar * path, const GArray * categories, DBusGMethodInvocation * method); static gboolean _notification_watcher_server_is_notification_host_registered (ApplicationServiceWatcher * appwatcher, gboolean * haveHost); static void get_name_cb (DBusGProxy * proxy, guint status, GError * error, gpointer data); @@ -249,3 +250,16 @@ get_name_cb (DBusGProxy * proxy, guint status, GError * error, gpointer data) return; } + +static gboolean +_notification_watcher_server_register_notification_approver (ApplicationServiceWatcher * appwatcher, const gchar * path, const GArray * categories, DBusGMethodInvocation * method) +{ + ApplicationServiceWatcherPrivate * priv = APPLICATION_SERVICE_WATCHER_GET_PRIVATE(appwatcher); + + application_service_appstore_approver_add(priv->appstore, + dbus_g_method_get_sender(method), + path); + + dbus_g_method_return(method, G_TYPE_NONE); + return TRUE; +} |