blob: da93e73c8bad0e84625845a97c94b64a17f53d00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/*
An indicator to display recent notifications.
Adapted from: indicator-datetime/src/dbus-shared.c by
Ted Gould <ted@canonical.com>
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License version 3, as published
by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranties of
MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define SERVICE_NAME "com.launchpad.RecentNotifications.indicator"
#define SERVICE_IFACE "com.launchpad.RecentNotifications.indicator.service"
#define SERVICE_OBJ "/com/launchpad/RecentNotifications/indicator/service"
#define SERVICE_VERSION 1
#define MENU_OBJ "/com/launchpad/RecentNotifications/indicator/menu"
#define NOTIFICATION_MENUITEM_TYPE "notification-menuitem"
#define NOTIFICATION_MENUITEM_PROP_APP_NAME "notification-menuitem-prop-app-name"
#define NOTIFICATION_MENUITEM_PROP_APP_ICON "notification-menuitem-prop-app-icon"
#define NOTIFICATION_MENUITEM_PROP_SUMMARY "notification-menuitem-prop-summary"
#define NOTIFICATION_MENUITEM_PROP_BODY "notification-menuitem-prop-body"
#define NOTIFICATION_MENUITEM_PROP_TIMESTAMP_STRING "notification-menuitem-prop-timestamp-string"
|