]> git.0d.be Git - empathy.git/blob - libempathy/empathy-tp-chat.h
Merge remote-tracking branch 'glassrose/add-All-service-selection-in-debug-window'
[empathy.git] / libempathy / empathy-tp-chat.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2007-2008 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19  * Authors: Xavier Claessens <xclaesse@gmail.com>
20  */
21
22 #ifndef __EMPATHY_TP_CHAT_H__
23 #define __EMPATHY_TP_CHAT_H__
24
25 #include <glib.h>
26
27 #include <telepathy-glib/channel.h>
28 #include <telepathy-glib/enums.h>
29
30 #include "empathy-message.h"
31 #include "empathy-contact.h"
32
33
34 G_BEGIN_DECLS
35
36 #define EMPATHY_TYPE_TP_CHAT         (empathy_tp_chat_get_type ())
37 #define EMPATHY_TP_CHAT(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_TP_CHAT, EmpathyTpChat))
38 #define EMPATHY_TP_CHAT_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EMPATHY_TYPE_TP_CHAT, EmpathyTpChatClass))
39 #define EMPATHY_IS_TP_CHAT(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_TP_CHAT))
40 #define EMPATHY_IS_TP_CHAT_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_TP_CHAT))
41 #define EMPATHY_TP_CHAT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_TP_CHAT, EmpathyTpChatClass))
42
43 typedef struct _EmpathyTpChat      EmpathyTpChat;
44 typedef struct _EmpathyTpChatClass EmpathyTpChatClass;
45 typedef struct _EmpathyTpChatPrivate EmpathyTpChatPrivate;
46
47 struct _EmpathyTpChat {
48         TpTextChannel parent;
49         EmpathyTpChatPrivate *priv;
50 };
51
52 struct _EmpathyTpChatClass {
53         TpTextChannelClass parent_class;
54 };
55
56 typedef enum {
57         EMPATHY_DELIVERY_STATUS_NONE,
58         EMPATHY_DELIVERY_STATUS_SENDING,
59         EMPATHY_DELIVERY_STATUS_ACCEPTED
60 } EmpathyDeliveryStatus;
61
62 #define EMPATHY_TP_CHAT_FEATURE_READY empathy_tp_chat_get_feature_ready ()
63 GQuark empathy_tp_chat_get_feature_ready (void) G_GNUC_CONST;
64
65 GType          empathy_tp_chat_get_type             (void) G_GNUC_CONST;
66
67 EmpathyTpChat *empathy_tp_chat_new                  (
68                                                      TpSimpleClientFactory *factory,
69                                                      TpAccount *account,
70                                                      TpConnection *connection,
71                                                      const gchar *object_path,
72                                                      const GHashTable *immutable_properties);
73
74 const gchar *  empathy_tp_chat_get_id               (EmpathyTpChat      *chat);
75 EmpathyContact *empathy_tp_chat_get_remote_contact   (EmpathyTpChat      *chat);
76 TpAccount    * empathy_tp_chat_get_account          (EmpathyTpChat      *chat);
77 void           empathy_tp_chat_send                 (EmpathyTpChat      *chat,
78                                                      TpMessage     *message);
79
80 const gchar *  empathy_tp_chat_get_title            (EmpathyTpChat *self);
81
82 gboolean       empathy_tp_chat_supports_subject     (EmpathyTpChat *self);
83 const gchar *  empathy_tp_chat_get_subject          (EmpathyTpChat *self);
84 const gchar *  empathy_tp_chat_get_subject_actor    (EmpathyTpChat *self);
85 gboolean       empathy_tp_chat_can_set_subject      (EmpathyTpChat *self);
86 void           empathy_tp_chat_set_subject          (EmpathyTpChat *self,
87                                                      const gchar   *subject);
88
89 /* Returns a read-only list of pending messages (should be a copy maybe ?) */
90 const GList *  empathy_tp_chat_get_pending_messages (EmpathyTpChat *chat);
91 void           empathy_tp_chat_acknowledge_message (EmpathyTpChat *chat,
92                                                      EmpathyMessage *message);
93
94 gboolean       empathy_tp_chat_can_add_contact (EmpathyTpChat *self);
95
96 void           empathy_tp_chat_leave                (EmpathyTpChat      *chat,
97                                                        const gchar *message);
98 void           empathy_tp_chat_join                 (EmpathyTpChat      *chat);
99
100 gboolean       empathy_tp_chat_is_invited           (EmpathyTpChat      *chat,
101                                                      TpHandle *inviter);
102 TpChannelChatState
103                empathy_tp_chat_get_chat_state       (EmpathyTpChat      *chat,
104                              EmpathyContact *contact);
105
106 EmpathyContact * empathy_tp_chat_get_self_contact   (EmpathyTpChat      *self);
107
108 G_END_DECLS
109
110 #endif /* __EMPATHY_TP_CHAT_H__ */