/usr/include/messaging-menu/messaging-menu-message.h is in libmessaging-menu-dev 13.10.1+14.04.20140410-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | /*
* Copyright 2012 Canonical Ltd.
*
* 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/>.
*
* Authors:
* Lars Uebernickel <lars.uebernickel@canonical.com>
*/
#ifndef __messaging_menu_message_h__
#define __messaging_menu_message_h__
#include <gio/gio.h>
G_BEGIN_DECLS
#define MESSAGING_MENU_TYPE_MESSAGE (messaging_menu_message_get_type ())
#define MESSAGING_MENU_MESSAGE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), MESSAGING_MENU_TYPE_MESSAGE, MessagingMenuMessage))
#define MESSAGING_MENU_MESSAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MESSAGING_MENU_TYPE_MESSAGE, MessagingMenuMessageClass))
#define MESSAGING_MENU_IS_MESSAGE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MESSAGING_MENU_TYPE_MESSAGE))
#define MESSAGING_MENU_IS_MESSAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MESSAGING_MENU_TYPE_MESSAGE))
#define MESSAGING_MENU_MESSAGE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MESSAGING_MENU_TYPE_MESSAGE, MessagingMenuMessageClass))
typedef struct _MessagingMenuMessage MessagingMenuMessage;
GType messaging_menu_message_get_type (void) G_GNUC_CONST;
MessagingMenuMessage * messaging_menu_message_new (const gchar *id,
GIcon *icon,
const gchar *title,
const gchar *subtitle,
const gchar *body,
gint64 time);
const gchar * messaging_menu_message_get_id (MessagingMenuMessage *msg);
GIcon * messaging_menu_message_get_icon (MessagingMenuMessage *msg);
const gchar * messaging_menu_message_get_title (MessagingMenuMessage *msg);
const gchar * messaging_menu_message_get_subtitle (MessagingMenuMessage *msg);
const gchar * messaging_menu_message_get_body (MessagingMenuMessage *msg);
gint64 messaging_menu_message_get_time (MessagingMenuMessage *msg);
gboolean messaging_menu_message_get_draws_attention (MessagingMenuMessage *msg);
void messaging_menu_message_set_draws_attention (MessagingMenuMessage *msg,
gboolean draws_attention);
void messaging_menu_message_add_action (MessagingMenuMessage *msg,
const gchar *id,
const gchar *label,
const GVariantType *parameter_type,
GVariant *parameter_hint);
G_END_DECLS
#endif
|