]> git.0d.be Git - empathy.git/blob - libempathy/empathy-message.h
include telepathy-glib.h
[empathy.git] / libempathy / empathy-message.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2004-2007 Imendio AB
4  * Copyright (C) 2007-2008 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA  02110-1301  USA
20  *
21  * Authors: Mikael Hallendal <micke@imendio.com>
22  *          Xavier Claessens <xclaesse@gmail.com>
23  */
24
25 #ifndef __EMPATHY_MESSAGE_H__
26 #define __EMPATHY_MESSAGE_H__
27
28 #include <glib-object.h>
29 #include <telepathy-glib/telepathy-glib.h>
30 #include <telepathy-logger/telepathy-logger.h>
31
32 #include "empathy-contact.h"
33 #include "empathy-time.h"
34
35 G_BEGIN_DECLS
36
37 #define EMPATHY_TYPE_MESSAGE         (empathy_message_get_type ())
38 #define EMPATHY_MESSAGE(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_MESSAGE, EmpathyMessage))
39 #define EMPATHY_MESSAGE_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST ((k), EMPATHY_TYPE_MESSAGE, EmpathyMessageClass))
40 #define EMPATHY_IS_MESSAGE(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_MESSAGE))
41 #define EMPATHY_IS_MESSAGE_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_MESSAGE))
42 #define EMPATHY_MESSAGE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_MESSAGE, EmpathyMessageClass))
43
44 typedef struct _EmpathyMessage      EmpathyMessage;
45 typedef struct _EmpathyMessageClass EmpathyMessageClass;
46
47 struct _EmpathyMessage {
48         GObject parent;
49         gpointer priv;
50 };
51
52 struct _EmpathyMessageClass {
53         GObjectClass parent_class;
54 };
55
56 GType                    empathy_message_get_type          (void) G_GNUC_CONST;
57
58 EmpathyMessage *         empathy_message_from_tpl_log_event (TplEvent                *logevent);
59 EmpathyMessage *         empathy_message_new_from_tp_message (TpMessage *tp_msg,
60                                                               gboolean incoming);
61
62 TpMessage *              empathy_message_get_tp_message    (EmpathyMessage *message);
63
64 TpChannelTextMessageType empathy_message_get_tptype        (EmpathyMessage           *message);
65 EmpathyContact *         empathy_message_get_sender        (EmpathyMessage           *message);
66 void                     empathy_message_set_sender        (EmpathyMessage           *message,
67                                                             EmpathyContact           *contact);
68 EmpathyContact *         empathy_message_get_receiver      (EmpathyMessage           *message);
69 void                     empathy_message_set_receiver      (EmpathyMessage           *message,
70                                                             EmpathyContact           *contact);
71 const gchar *            empathy_message_get_body          (EmpathyMessage           *message);
72 const gchar *            empathy_message_get_token         (EmpathyMessage           *message);
73 const gchar *            empathy_message_get_supersedes    (EmpathyMessage           *message);
74 gboolean                 empathy_message_is_edit           (EmpathyMessage           *message);
75 gint64                   empathy_message_get_timestamp     (EmpathyMessage           *message);
76 gint64                   empathy_message_get_original_timestamp (EmpathyMessage      *message);
77 gboolean                 empathy_message_is_backlog        (EmpathyMessage           *message);
78 gboolean                 empathy_message_is_incoming       (EmpathyMessage           *message);
79
80 TpChannelTextMessageType empathy_message_type_from_str     (const gchar              *type_str);
81 const gchar *            empathy_message_type_to_str       (TpChannelTextMessageType  type);
82
83 gboolean                 empathy_message_equal (EmpathyMessage *message1, EmpathyMessage *message2);
84
85 TpChannelTextMessageFlags empathy_message_get_flags        (EmpathyMessage           *message);
86
87 G_END_DECLS
88
89 #endif /* __EMPATHY_MESSAGE_H__ */