aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Gateau <aurelien.gateau@canonical.com>2009-12-23 17:00:30 +0100
committerAurelien Gateau <aurelien.gateau@canonical.com>2009-12-23 17:00:30 +0100
commitdd2ed951b8aeb16671bebd2ea104953252ab54a5 (patch)
treec7a371e7ae9798344d810774a9da3a1932ef8069
parent95b5ea90de66f465398fbdf9779e342395ea327a (diff)
downloadayatana-indicator-application-dd2ed951b8aeb16671bebd2ea104953252ab54a5.tar.gz
ayatana-indicator-application-dd2ed951b8aeb16671bebd2ea104953252ab54a5.tar.bz2
ayatana-indicator-application-dd2ed951b8aeb16671bebd2ea104953252ab54a5.zip
Previous commit was not meant to be pushed to trunk
Revert my mess
-rw-r--r--src/application-service-watcher.c8
-rw-r--r--src/dbus-shared.h8
-rw-r--r--src/libappindicator/app-indicator.c6
-rw-r--r--src/notification-item.xml4
-rw-r--r--src/notification-watcher.xml8
5 files changed, 16 insertions, 18 deletions
diff --git a/src/application-service-watcher.c b/src/application-service-watcher.c
index 81fae36..984b9d4 100644
--- a/src/application-service-watcher.c
+++ b/src/application-service-watcher.c
@@ -29,8 +29,8 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
#include "application-service-watcher.h"
#include "dbus-shared.h"
-static gboolean _notification_watcher_server_register_status_notifier_item (ApplicationServiceWatcher * appwatcher, const gchar * service, DBusGMethodInvocation * method);
-static gboolean _notification_watcher_server_registered_status_notifier_items (ApplicationServiceWatcher * appwatcher, GArray ** apps);
+static gboolean _notification_watcher_server_register_service (ApplicationServiceWatcher * appwatcher, const gchar * service, DBusGMethodInvocation * method);
+static gboolean _notification_watcher_server_registered_services (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_is_notification_host_registered (ApplicationServiceWatcher * appwatcher, gboolean * haveHost);
@@ -165,7 +165,7 @@ application_service_watcher_new (ApplicationServiceAppstore * appstore)
}
static gboolean
-_notification_watcher_server_register_status_notifier_item (ApplicationServiceWatcher * appwatcher, const gchar * service, DBusGMethodInvocation * method)
+_notification_watcher_server_register_service (ApplicationServiceWatcher * appwatcher, const gchar * service, DBusGMethodInvocation * method)
{
ApplicationServiceWatcherPrivate * priv = APPLICATION_SERVICE_WATCHER_GET_PRIVATE(appwatcher);
@@ -176,7 +176,7 @@ _notification_watcher_server_register_status_notifier_item (ApplicationServiceWa
}
static gboolean
-_notification_watcher_server_registered_status_notifier_items (ApplicationServiceWatcher * appwatcher, GArray ** apps)
+_notification_watcher_server_registered_services (ApplicationServiceWatcher * appwatcher, GArray ** apps)
{
return FALSE;
diff --git a/src/dbus-shared.h b/src/dbus-shared.h
index cac88d8..f888e02 100644
--- a/src/dbus-shared.h
+++ b/src/dbus-shared.h
@@ -20,12 +20,12 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#define INDICATOR_APPLICATION_DBUS_ADDR "org.kde.StatusNotifierWatcher"
+#define INDICATOR_APPLICATION_DBUS_ADDR "org.ayatana.indicator.application"
#define INDICATOR_APPLICATION_DBUS_OBJ "/org/ayatana/indicator/application/service"
#define INDICATOR_APPLICATION_DBUS_IFACE "org.ayatana.indicator.application.service"
-#define NOTIFICATION_WATCHER_DBUS_OBJ "/StatusNotifierWatcher"
-#define NOTIFICATION_WATCHER_DBUS_IFACE "org.kde.StatusNotifierWatcher"
+#define NOTIFICATION_WATCHER_DBUS_OBJ "/org/ayatana/indicator/application/NotificationWatcher"
+#define NOTIFICATION_WATCHER_DBUS_IFACE "org.ayatana.indicator.application.NotificationWatcher"
-#define NOTIFICATION_ITEM_DBUS_IFACE "org.kde.StatusNotifierItem"
+#define NOTIFICATION_ITEM_DBUS_IFACE "org.ayatana.indicator.application.NotificationItem"
diff --git a/src/libappindicator/app-indicator.c b/src/libappindicator/app-indicator.c
index 4baf4ef..bb68cb2 100644
--- a/src/libappindicator/app-indicator.c
+++ b/src/libappindicator/app-indicator.c
@@ -32,7 +32,6 @@ License version 3 and version 2.1 along with this program. If not, see
#endif
#include <dbus/dbus-glib.h>
-#include <dbus/dbus-glib-lowlevel.h>
#include <libdbusmenu-glib/server.h>
#include <libdbusmenu-gtk/client.h>
@@ -294,7 +293,7 @@ app_indicator_init (AppIndicator *self)
}
dbus_g_connection_register_g_object(priv->connection,
- "/StatusNotifierItem",
+ "/need/a/path",
G_OBJECT(self));
self->priv = priv;
@@ -514,8 +513,7 @@ check_connect (AppIndicator *self)
return;
}
- const char * name = dbus_bus_get_unique_name(dbus_g_connection_get_connection(priv->connection));
- org_kde_StatusNotifierWatcher_register_status_notifier_item_async(priv->watcher_proxy, name, register_service_cb, self);
+ org_ayatana_indicator_application_NotificationWatcher_register_service_async(priv->watcher_proxy, "/need/a/path", register_service_cb, self);
return;
}
diff --git a/src/notification-item.xml b/src/notification-item.xml
index 8515519..c28cc54 100644
--- a/src/notification-item.xml
+++ b/src/notification-item.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
-<node name="/StatusNotifierItem">
- <interface name="org.kde.StatusNotifierItem">
+<node name="/">
+ <interface name="org.ayatana.indicator.application.NotificationItem">
<!-- Properties -->
<property name="Id" type="s" access="read" />
diff --git a/src/notification-watcher.xml b/src/notification-watcher.xml
index c2324f1..2ef54a0 100644
--- a/src/notification-watcher.xml
+++ b/src/notification-watcher.xml
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
-<node name="/StatusNotifierWatcher">
- <interface name="org.kde.StatusNotifierWatcher">
+<node name="/">
+ <interface name="org.ayatana.indicator.application.NotificationWatcher">
<!-- Properties -->
<!-- None currently -->
<!-- Methods -->
- <method name="RegisterStatusNotifierItem">
+ <method name="RegisterService">
<annotation name="org.freedesktop.DBus.GLib.Async" value="true" />
<arg type="s" name="service" direction="in" />
</method>
- <method name="RegisteredStatusNotifierItems">
+ <method name="RegisteredServices">
<arg type="as" name="services" direction="out" />
</method>
<method name="ProtocolVersion">