]> git.0d.be Git - empathy.git/blob - src/empathy-invite-participant-dialog.c
Merge remote-tracking branch 'glassrose/add-All-service-selection-in-debug-window'
[empathy.git] / src / empathy-invite-participant-dialog.c
1 /*
2  * empathy-invite-participant-dialog.c
3  *
4  * EmpathyInviteParticipantDialog
5  *
6  * (c) 2009, Collabora Ltd.
7  *
8  * Authors:
9  *    Danielle Madeley <danielle.madeley@collabora.co.uk>
10  */
11
12 #include <glib/gi18n.h>
13 #include <folks/folks-telepathy.h>
14
15 #include "empathy-invite-participant-dialog.h"
16
17 #include <libempathy/empathy-utils.h>
18 #include <libempathy/empathy-contact-list.h>
19
20 #include <libempathy-gtk/empathy-contact-chooser.h>
21 #include <libempathy-gtk/empathy-individual-view.h>
22 #include <libempathy-gtk/empathy-ui-utils.h>
23
24 G_DEFINE_TYPE (EmpathyInviteParticipantDialog,
25     empathy_invite_participant_dialog, GTK_TYPE_DIALOG);
26
27 enum
28 {
29   PROP_TP_CHAT = 1
30 };
31
32 struct _EmpathyInviteParticipantDialogPrivate
33 {
34   EmpathyTpChat *tp_chat;
35
36   GtkWidget *chooser;
37   GtkWidget *invite_button;
38 };
39
40 static void
41 invite_participant_dialog_get_property (GObject *object,
42     guint param_id,
43     GValue *value,
44     GParamSpec *pspec)
45 {
46   EmpathyInviteParticipantDialog *self = (EmpathyInviteParticipantDialog *)
47     object;
48
49   switch (param_id)
50     {
51     case PROP_TP_CHAT:
52       g_value_set_object (value, self->priv->tp_chat);
53       break;
54     default:
55       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
56       break;
57     };
58 }
59
60 static void
61 invite_participant_dialog_set_property (GObject *object,
62     guint param_id,
63     const GValue *value,
64     GParamSpec *pspec)
65 {
66   EmpathyInviteParticipantDialog *self = (EmpathyInviteParticipantDialog *)
67     object;
68
69   switch (param_id)
70     {
71     case PROP_TP_CHAT:
72       g_assert (self->priv->tp_chat == NULL); /* construct-only */
73       self->priv->tp_chat = g_value_dup_object (value);
74       break;
75     default:
76       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
77       break;
78     };
79 }
80
81 static void
82 invite_participant_dialog_dispose (GObject *object)
83 {
84   EmpathyInviteParticipantDialog *self = (EmpathyInviteParticipantDialog *)
85     object;
86
87   tp_clear_object (&self->priv->tp_chat);
88
89   G_OBJECT_CLASS (empathy_invite_participant_dialog_parent_class)->dispose (
90       object);
91 }
92
93 static void
94 selection_changed_cb (GtkWidget *treeview,
95     FolksIndividual *selected,
96     EmpathyInviteParticipantDialog *self)
97 {
98   gtk_widget_set_sensitive (self->priv->invite_button, selected != NULL);
99 }
100
101 static void
102 activate_cb (GtkWidget *chooser,
103     EmpathyInviteParticipantDialog *self)
104 {
105   gtk_dialog_response (GTK_DIALOG (self), GTK_RESPONSE_ACCEPT);
106 }
107
108 /* Return the TpContact of @individual which is on the same connection as the
109  * EmpathyTpChat */
110 static TpContact *
111 get_tp_contact_for_chat (EmpathyInviteParticipantDialog *self,
112     FolksIndividual *individual)
113 {
114   TpConnection *chat_conn;
115
116   chat_conn = tp_channel_borrow_connection (TP_CHANNEL (self->priv->tp_chat));
117   if (chat_conn == NULL)
118     return NULL;
119
120   return empathy_get_tp_contact_for_individual (individual, chat_conn);
121 }
122
123 static gboolean
124 filter_individual (EmpathyContactChooser *chooser,
125     FolksIndividual *individual,
126     gboolean is_online,
127     gboolean searching,
128     gpointer user_data)
129 {
130   EmpathyInviteParticipantDialog *self = user_data;
131   GList *members, *l;
132   TpContact *contact;
133   gboolean display = TRUE;
134
135   /* Filter out offline contacts if we are not searching */
136   if (!searching && !is_online)
137     return FALSE;
138
139   /* Filter out individuals not having a persona on the same connection as the
140    * EmpathyTpChat. */
141   contact = get_tp_contact_for_chat (self, individual);
142
143   if (contact == NULL)
144     return FALSE;
145
146   /* Filter out contacts which are already in the chat */
147   members = empathy_contact_list_get_members (EMPATHY_CONTACT_LIST (
148         self->priv->tp_chat));
149
150   for (l = members; l != NULL; l = g_list_next (l))
151     {
152       EmpathyContact *member = l->data;
153       TpHandle handle;
154
155       /* Try to get the non-channel specific handle. */
156       handle = tp_channel_group_get_handle_owner (
157           TP_CHANNEL (self->priv->tp_chat),
158           empathy_contact_get_handle (member));
159       if (handle == 0)
160         handle = empathy_contact_get_handle (member);
161
162       if (handle == tp_contact_get_handle (contact))
163         {
164           display = FALSE;
165           break;
166         }
167     }
168
169   g_list_free_full (members, g_object_unref);
170
171   return display;
172 }
173
174 static gboolean
175 has_contact_list (EmpathyInviteParticipantDialog *self)
176 {
177   TpConnection *conn;
178
179   conn = tp_channel_borrow_connection (TP_CHANNEL (self->priv->tp_chat));
180
181   return tp_proxy_has_interface_by_id (conn,
182       TP_IFACE_QUARK_CONNECTION_INTERFACE_CONTACT_LIST);
183 }
184
185 static void
186 invite_participant_dialog_constructed (GObject *object)
187 {
188   EmpathyInviteParticipantDialog *self =
189     (EmpathyInviteParticipantDialog *) object;
190   GtkDialog *dialog = GTK_DIALOG (self);
191   GtkWidget *label;
192   char *str;
193   GtkWidget *content;
194
195   content = gtk_dialog_get_content_area (dialog);
196
197   label = gtk_label_new (NULL);
198   str = g_strdup_printf (
199       "<span size=\"x-large\" weight=\"bold\">%s</span>\n\n%s",
200       _("Invite Participant"),
201       _("Choose a contact to invite into the conversation:"));
202   gtk_label_set_markup (GTK_LABEL (label), str);
203   g_free (str);
204
205   gtk_box_pack_start (GTK_BOX (content), label, FALSE, TRUE, 6);
206   gtk_widget_show (label);
207
208   gtk_dialog_add_button (dialog, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
209
210   /* contact chooser */
211   self->priv->chooser = empathy_contact_chooser_new ();
212
213   empathy_contact_chooser_set_filter_func (
214       EMPATHY_CONTACT_CHOOSER (self->priv->chooser), filter_individual, self);
215
216   gtk_box_pack_start (GTK_BOX (content), self->priv->chooser, TRUE, TRUE, 6);
217   gtk_widget_show (self->priv->chooser);
218
219   g_signal_connect (self->priv->chooser, "selection-changed",
220       G_CALLBACK (selection_changed_cb), self);
221   g_signal_connect (self->priv->chooser, "activate",
222       G_CALLBACK (activate_cb), self);
223
224   self->priv->invite_button = gtk_dialog_add_button (dialog, _("Invite"),
225       GTK_RESPONSE_ACCEPT);
226   gtk_widget_set_sensitive (self->priv->invite_button, FALSE);
227
228   gtk_window_set_title (GTK_WINDOW (self), _("Invite Participant"));
229   gtk_window_set_role (GTK_WINDOW (self), "invite_participant");
230
231   if (has_contact_list (self))
232     {
233       /* Set a default height so a few contacts are displayed */
234       gtk_window_set_default_size (GTK_WINDOW (self), -1, 400);
235     }
236   else
237     {
238       /* No need to display an empty treeview (ie IRC) */
239       empathy_contact_chooser_show_tree_view (
240           EMPATHY_CONTACT_CHOOSER (self->priv->chooser), FALSE);
241     }
242 }
243
244 static void
245 empathy_invite_participant_dialog_class_init (
246     EmpathyInviteParticipantDialogClass *klass)
247 {
248   GObjectClass *object_class = G_OBJECT_CLASS (klass);
249
250   object_class->get_property = invite_participant_dialog_get_property;
251   object_class->set_property = invite_participant_dialog_set_property;
252   object_class->constructed = invite_participant_dialog_constructed;
253   object_class->dispose = invite_participant_dialog_dispose;
254
255   g_type_class_add_private (object_class,
256       sizeof (EmpathyInviteParticipantDialogPrivate));
257
258   g_object_class_install_property (object_class,
259       PROP_TP_CHAT,
260       g_param_spec_object ("tp-chat", "EmpathyTpChat", "EmpathyTpChat",
261           EMPATHY_TYPE_TP_CHAT,
262           G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
263 }
264
265 static void
266 empathy_invite_participant_dialog_init (EmpathyInviteParticipantDialog *self)
267 {
268   self->priv = G_TYPE_INSTANCE_GET_PRIVATE (
269       self, EMPATHY_TYPE_INVITE_PARTICIPANT_DIALOG,
270       EmpathyInviteParticipantDialogPrivate);
271 }
272
273 GtkWidget *
274 empathy_invite_participant_dialog_new (GtkWindow *parent,
275     EmpathyTpChat *tp_chat)
276 {
277   GtkWidget *self = g_object_new (EMPATHY_TYPE_INVITE_PARTICIPANT_DIALOG,
278       "tp-chat", tp_chat,
279       NULL);
280
281   if (parent != NULL)
282     {
283       gtk_window_set_transient_for (GTK_WINDOW (self), parent);
284     }
285
286   return self;
287 }
288
289 TpContact *
290 empathy_invite_participant_dialog_get_selected (
291     EmpathyInviteParticipantDialog *self)
292 {
293   FolksIndividual *individual;
294   TpContact *contact;
295
296   individual = empathy_contact_chooser_dup_selected (
297       EMPATHY_CONTACT_CHOOSER (self->priv->chooser));
298   if (individual == NULL)
299     return NULL;
300
301   contact = get_tp_contact_for_chat (self, individual);
302
303   g_object_unref (individual);
304   return contact;
305 }