]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-selector-dialog.c
Updated Polish translation
[empathy.git] / libempathy-gtk / empathy-contact-selector-dialog.c
1 /*
2  * Copyright (C) 2007-2009 Collabora Ltd.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  *
18  * Authors: Xavier Claessens <xclaesse@gmail.com>
19  * Authors: Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
20  * Authors: Danielle Madeley <danielle.madeley@collabora.co.uk>
21  */
22
23 #include <config.h>
24
25 #include <string.h>
26 #include <stdlib.h>
27
28 #include <gtk/gtk.h>
29 #include <glib/gi18n-lib.h>
30
31 #include <libempathy/empathy-tp-contact-factory.h>
32 #include <libempathy/empathy-contact-manager.h>
33 #include <libempathy/empathy-dispatcher.h>
34 #include <libempathy/empathy-utils.h>
35
36 #define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
37 #include <libempathy/empathy-debug.h>
38
39 #include <libempathy-gtk/empathy-ui-utils.h>
40 #include <libempathy-gtk/empathy-images.h>
41
42 #include "empathy-contact-selector-dialog.h"
43 #include "empathy-account-chooser.h"
44
45 G_DEFINE_ABSTRACT_TYPE (EmpathyContactSelectorDialog,
46     empathy_contact_selector_dialog,
47     GTK_TYPE_DIALOG)
48
49 typedef struct _EmpathyContactSelectorDialogPriv \
50           EmpathyContactSelectorDialogPriv;
51
52 struct _EmpathyContactSelectorDialogPriv {
53   GtkListStore *store;
54   GtkWidget *account_chooser_label;
55   GtkWidget *account_chooser;
56   GtkWidget *entry_id;
57   EmpathyContactManager *contact_manager;
58   TpAccount *filter_account;
59
60   gboolean show_account_chooser;
61 };
62
63 #define GET_PRIV(o) \
64   (G_TYPE_INSTANCE_GET_PRIVATE ((o), EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG, \
65     EmpathyContactSelectorDialogPriv))
66
67 enum {
68   PROP_0,
69   PROP_SHOW_ACCOUNT_CHOOSER,
70   PROP_FILTER_ACCOUNT
71 };
72
73 enum {
74   COMPLETION_COL_TEXT,
75   COMPLETION_COL_ID,
76   COMPLETION_COL_NAME,
77 } CompletionCol;
78
79 static void
80 contact_selector_dialog_account_changed_cb (GtkWidget *widget,
81     EmpathyContactSelectorDialog *dialog)
82 {
83   EmpathyContactSelectorDialogPriv *priv = GET_PRIV (dialog);
84   EmpathyAccountChooser *chooser;
85   TpConnection *connection;
86   GList *members;
87
88   /* Remove completions */
89   gtk_list_store_clear (priv->store);
90
91   /* Get members of the new account */
92   chooser = EMPATHY_ACCOUNT_CHOOSER (priv->account_chooser);
93   connection = empathy_account_chooser_get_connection (chooser);
94   if (!connection)
95     return;
96
97   if (priv->show_account_chooser)
98     {
99       EmpathyTpContactList *contact_list;
100
101       contact_list = empathy_contact_manager_get_list (priv->contact_manager,
102                    connection);
103       members = empathy_contact_list_get_members (
104           EMPATHY_CONTACT_LIST (contact_list));
105     }
106   else
107     {
108       if (priv->filter_account != NULL)
109         {
110           EmpathyTpContactList *contact_list;
111
112           connection = tp_account_get_connection (priv->filter_account);
113           if (connection == NULL)
114             return;
115
116           contact_list = empathy_contact_manager_get_list (
117               priv->contact_manager, connection);
118
119           members = empathy_contact_list_get_members (
120               EMPATHY_CONTACT_LIST (contact_list));
121         }
122       else
123         {
124           members = empathy_contact_list_get_members (
125               EMPATHY_CONTACT_LIST (priv->contact_manager));
126         }
127     }
128
129   /* Add members to the completion */
130   while (members)
131     {
132       EmpathyContact *contact = members->data;
133       GtkTreeIter iter;
134       gchar *tmpstr;
135
136       DEBUG ("Adding contact ID %s, Name %s",
137              empathy_contact_get_id (contact),
138              empathy_contact_get_name (contact));
139
140       tmpstr = g_strdup_printf ("%s (%s)",
141         empathy_contact_get_name (contact),
142         empathy_contact_get_id (contact));
143
144       gtk_list_store_insert_with_values (priv->store, &iter, -1,
145         COMPLETION_COL_TEXT, tmpstr,
146         COMPLETION_COL_ID, empathy_contact_get_id (contact),
147         COMPLETION_COL_NAME, empathy_contact_get_name (contact),
148         -1);
149
150       g_free (tmpstr);
151
152       g_object_unref (contact);
153       members = g_list_delete_link (members, members);
154   }
155 }
156
157 static gboolean
158 contact_selector_dialog_match_selected_cb (GtkEntryCompletion *widget,
159     GtkTreeModel *model,
160     GtkTreeIter *iter,
161     EmpathyContactSelectorDialog *dialog)
162 {
163   EmpathyContactSelectorDialogPriv *priv = GET_PRIV (dialog);
164   gchar *id;
165
166   if (!iter || !model)
167     return FALSE;
168
169   gtk_tree_model_get (model, iter, COMPLETION_COL_ID, &id, -1);
170   gtk_entry_set_text (GTK_ENTRY (priv->entry_id), id);
171
172   DEBUG ("Got selected match **%s**", id);
173
174   g_free (id);
175
176   return TRUE;
177 }
178
179 static gboolean
180 contact_selector_dialog_match_func (GtkEntryCompletion *completion,
181     const gchar *key,
182     GtkTreeIter *iter,
183     gpointer user_data)
184 {
185   GtkTreeModel *model;
186   gchar *str, *lower;
187   gboolean v = FALSE;
188
189   model = gtk_entry_completion_get_model (completion);
190   if (!model || !iter)
191     return FALSE;
192
193   gtk_tree_model_get (model, iter, COMPLETION_COL_NAME, &str, -1);
194   lower = g_utf8_strdown (str, -1);
195   if (strstr (lower, key))
196     {
197       DEBUG ("Key %s is matching name **%s**", key, str);
198       v = TRUE;
199       goto out;
200     }
201   g_free (str);
202   g_free (lower);
203
204   gtk_tree_model_get (model, iter, COMPLETION_COL_ID, &str, -1);
205   lower = g_utf8_strdown (str, -1);
206   if (strstr (lower, key))
207     {
208       DEBUG ("Key %s is matching ID **%s**", key, str);
209       v = TRUE;
210       goto out;
211     }
212
213 out:
214   g_free (str);
215   g_free (lower);
216
217   return v;
218 }
219
220 static void
221 contact_selector_change_state_button_cb  (GtkEditable *editable,
222     EmpathyContactSelectorDialog *dialog)
223 {
224   const gchar *id;
225   gboolean sensitive;
226
227   id = gtk_entry_get_text (GTK_ENTRY (editable));
228   sensitive = !EMP_STR_EMPTY (id);
229
230   gtk_widget_set_sensitive (dialog->button_action, sensitive);
231 }
232
233 static void
234 entry_activate_cb (GtkEntry *entry,
235     gpointer self)
236 {
237   const gchar *id;
238
239   id = gtk_entry_get_text (entry);
240   if (EMP_STR_EMPTY (id))
241     return;
242
243   gtk_dialog_response (GTK_DIALOG (self), GTK_RESPONSE_ACCEPT);
244 }
245
246 static gboolean
247 account_chooser_filter (TpAccount *account,
248     gpointer user_data)
249 {
250   EmpathyContactSelectorDialog *self = user_data;
251   EmpathyContactSelectorDialogClass *class = \
252       EMPATHY_CONTACT_SELECTOR_DIALOG_GET_CLASS (self);
253
254   if (class->account_filter == NULL)
255     return empathy_account_chooser_filter_is_connected (account, user_data);
256
257   return class->account_filter (self, account);
258 }
259
260 static gboolean
261 contact_selector_dialog_filter_visible (GtkTreeModel *model,
262                                         GtkTreeIter  *iter,
263                                         gpointer      data)
264 {
265   EmpathyContactSelectorDialog *self = EMPATHY_CONTACT_SELECTOR_DIALOG (data);
266   gboolean r;
267   char *id;
268
269   gtk_tree_model_get (model, iter,
270       COMPLETION_COL_ID, &id,
271       -1);
272
273   /* this must be non-NULL for this function to get called */
274   r = EMPATHY_CONTACT_SELECTOR_DIALOG_GET_CLASS (self)->contact_filter (
275       self, id);
276
277   g_free (id);
278
279   return r;
280 }
281
282 static void
283 empathy_contact_selector_dialog_init (EmpathyContactSelectorDialog *dialog)
284 {
285   EmpathyContactSelectorDialogPriv *priv = GET_PRIV (dialog);
286   GtkBuilder *gui;
287   gchar *filename;
288   GtkEntryCompletion *completion;
289   GtkWidget *content_area;
290   GtkWidget *table_contact;
291
292   dialog->vbox = gtk_vbox_new (FALSE, 3);
293
294   /* create a contact manager */
295   priv->contact_manager = empathy_contact_manager_dup_singleton ();
296
297   filename = empathy_file_lookup ("empathy-contact-selector-dialog.ui",
298           "libempathy-gtk");
299   gui = empathy_builder_get_file (filename,
300                 "table_contact", &table_contact,
301                 "account_chooser_label", &priv->account_chooser_label,
302                 "entry_id", &priv->entry_id,
303                 NULL);
304   g_free (filename);
305
306   empathy_builder_connect (gui, dialog,
307       "entry_id", "activate", entry_activate_cb,
308       NULL);
309
310   content_area = gtk_dialog_get_content_area (GTK_DIALOG (dialog));
311   gtk_container_add (GTK_CONTAINER (content_area), dialog->vbox);
312   gtk_box_pack_start (GTK_BOX (dialog->vbox), table_contact, TRUE, TRUE, 0);
313   gtk_widget_show (dialog->vbox);
314
315   gtk_dialog_add_button (GTK_DIALOG (dialog),
316     GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
317
318   /* Tweak the dialog */
319   gtk_dialog_set_has_separator (GTK_DIALOG (dialog), FALSE);
320
321   gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
322   gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_CENTER_ON_PARENT);
323   gtk_window_set_type_hint (GTK_WINDOW (dialog), GDK_WINDOW_TYPE_HINT_DIALOG);
324
325   gtk_container_set_border_width (GTK_CONTAINER (dialog->vbox), 6);
326   gtk_container_set_border_width (GTK_CONTAINER (dialog), 6);
327
328   /* text completion */
329   priv->store = gtk_list_store_new (3, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING);
330
331   completion = gtk_entry_completion_new ();
332   gtk_entry_completion_set_text_column (completion, COMPLETION_COL_TEXT);
333   gtk_entry_completion_set_match_func (completion,
334                contact_selector_dialog_match_func,
335                NULL, NULL);
336   gtk_entry_completion_set_model (completion, GTK_TREE_MODEL (priv->store));
337   gtk_entry_set_completion (GTK_ENTRY (priv->entry_id), completion);
338   g_signal_connect (completion, "match-selected",
339         G_CALLBACK (contact_selector_dialog_match_selected_cb),
340         dialog);
341   g_object_unref (completion);
342   g_object_unref (priv->store);
343
344   empathy_builder_connect (gui, dialog,
345              "entry_id", "changed", contact_selector_change_state_button_cb,
346              NULL);
347
348   g_object_unref (gui);
349
350   /* Create account chooser */
351   priv->show_account_chooser = TRUE;
352   priv->account_chooser = empathy_account_chooser_new ();
353   gtk_table_attach_defaults (GTK_TABLE (table_contact),
354            priv->account_chooser,
355            1, 2, 0, 1);
356   empathy_account_chooser_set_filter (
357       EMPATHY_ACCOUNT_CHOOSER (priv->account_chooser),
358       account_chooser_filter,
359       dialog);
360   gtk_widget_show (priv->account_chooser);
361
362   contact_selector_dialog_account_changed_cb (priv->account_chooser, dialog);
363   g_signal_connect (priv->account_chooser, "changed",
364         G_CALLBACK (contact_selector_dialog_account_changed_cb),
365         dialog);
366 }
367
368 static void
369 empathy_contact_selector_dialog_get_property (GObject *self,
370     guint prop_id,
371     GValue *value,
372     GParamSpec *pspec)
373 {
374   EmpathyContactSelectorDialog *dialog = EMPATHY_CONTACT_SELECTOR_DIALOG (self);
375
376   switch (prop_id)
377     {
378       case PROP_SHOW_ACCOUNT_CHOOSER:
379         g_value_set_boolean (value,
380           empathy_contact_selector_dialog_get_show_account_chooser (dialog));
381         break;
382
383       case PROP_FILTER_ACCOUNT:
384         g_value_set_object (value,
385             empathy_contact_selector_dialog_get_filter_account (dialog));
386         break;
387
388       default:
389         G_OBJECT_WARN_INVALID_PROPERTY_ID (self, prop_id, pspec);
390         break;
391     }
392 }
393
394 static void
395 empathy_contact_selector_dialog_set_property (GObject *self,
396     guint prop_id,
397     const GValue *value,
398     GParamSpec *pspec)
399 {
400   EmpathyContactSelectorDialog *dialog = EMPATHY_CONTACT_SELECTOR_DIALOG (self);
401
402   switch (prop_id)
403     {
404       case PROP_SHOW_ACCOUNT_CHOOSER:
405         empathy_contact_selector_dialog_set_show_account_chooser (dialog,
406             g_value_get_boolean (value));
407         break;
408
409       case PROP_FILTER_ACCOUNT:
410         empathy_contact_selector_dialog_set_filter_account (dialog,
411             g_value_get_object (value));
412         break;
413
414       default:
415         G_OBJECT_WARN_INVALID_PROPERTY_ID (self, prop_id, pspec);
416         break;
417     }
418 }
419
420 static void
421 empathy_contact_selector_dialog_constructed (GObject *dialog)
422 {
423   EmpathyContactSelectorDialogPriv *priv = GET_PRIV (dialog);
424
425   if (EMPATHY_CONTACT_SELECTOR_DIALOG_GET_CLASS (dialog)->contact_filter)
426     {
427       GtkEntryCompletion *completion;
428       GtkTreeModel *filter;
429
430       completion = gtk_entry_get_completion (GTK_ENTRY (priv->entry_id));
431       filter = gtk_tree_model_filter_new (GTK_TREE_MODEL (priv->store), NULL);
432
433       gtk_tree_model_filter_set_visible_func (GTK_TREE_MODEL_FILTER (filter),
434           contact_selector_dialog_filter_visible, dialog, NULL);
435
436       gtk_entry_completion_set_model (completion, filter);
437       g_object_unref (filter);
438     }
439 }
440
441 static void
442 empathy_contact_selector_dialog_dispose (GObject *object)
443 {
444   EmpathyContactSelectorDialogPriv *priv = GET_PRIV (object);
445
446   if (priv->contact_manager != NULL) {
447     g_object_unref (priv->contact_manager);
448     priv->contact_manager = NULL;
449   }
450
451   if (priv->filter_account != NULL) {
452     g_object_unref (priv->filter_account);
453     priv->filter_account = NULL;
454   }
455
456   if (G_OBJECT_CLASS (empathy_contact_selector_dialog_parent_class)->dispose)
457     G_OBJECT_CLASS (empathy_contact_selector_dialog_parent_class)->dispose (
458         object);
459 }
460
461 static void
462 empathy_contact_selector_dialog_class_init (
463     EmpathyContactSelectorDialogClass *class)
464 {
465   GObjectClass *object_class = G_OBJECT_CLASS (class);
466
467   g_type_class_add_private (class, sizeof (EmpathyContactSelectorDialogPriv));
468
469   class->contact_filter = NULL;
470
471   object_class->constructed = empathy_contact_selector_dialog_constructed;
472   object_class->dispose = empathy_contact_selector_dialog_dispose;
473   object_class->get_property = empathy_contact_selector_dialog_get_property;
474   object_class->set_property = empathy_contact_selector_dialog_set_property;
475
476   g_object_class_install_property (object_class, PROP_SHOW_ACCOUNT_CHOOSER,
477       g_param_spec_boolean ("show-account-chooser",
478         "Show Account Chooser",
479         "Whether or not this dialog should show an account chooser",
480         TRUE,
481         G_PARAM_READWRITE));
482
483   g_object_class_install_property (object_class, PROP_FILTER_ACCOUNT,
484       g_param_spec_object ("filter-account",
485         "Account to filter contacts",
486         "if 'show-account-chooser' is unset, only the contacts from this "
487         "account are displayed",
488         TP_TYPE_ACCOUNT,
489         G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
490 }
491
492 const gchar *
493 empathy_contact_selector_dialog_get_selected (
494     EmpathyContactSelectorDialog *self,
495     TpConnection **connection)
496 {
497   EmpathyContactSelectorDialogPriv *priv;
498   const char *id;
499
500   g_return_val_if_fail (EMPATHY_IS_CONTACT_SELECTOR_DIALOG (self), NULL);
501
502   priv = GET_PRIV (self);
503
504   if (connection)
505     {
506       if (priv->show_account_chooser)
507         *connection = empathy_account_chooser_get_connection (
508             EMPATHY_ACCOUNT_CHOOSER (priv->account_chooser));
509       else
510         *connection = NULL;
511     }
512
513   id = gtk_entry_get_text (GTK_ENTRY (priv->entry_id));
514   return id;
515 }
516
517 void
518 empathy_contact_selector_dialog_set_show_account_chooser (
519     EmpathyContactSelectorDialog *self,
520     gboolean show_account_chooser)
521 {
522   EmpathyContactSelectorDialogPriv *priv;
523
524   g_return_if_fail (EMPATHY_IS_CONTACT_SELECTOR_DIALOG (self));
525
526   priv = GET_PRIV (self);
527   priv->show_account_chooser = show_account_chooser;
528
529   gtk_widget_set_visible (priv->account_chooser_label, show_account_chooser);
530   gtk_widget_set_visible (priv->account_chooser, show_account_chooser);
531   contact_selector_dialog_account_changed_cb (priv->account_chooser, self);
532
533   g_object_notify (G_OBJECT (self), "show-account-chooser");
534 }
535
536 gboolean
537 empathy_contact_selector_dialog_get_show_account_chooser (
538     EmpathyContactSelectorDialog *self)
539 {
540   EmpathyContactSelectorDialogPriv *priv;
541
542   g_return_val_if_fail (EMPATHY_IS_CONTACT_SELECTOR_DIALOG (self), FALSE);
543
544   priv = GET_PRIV (self);
545   return priv->show_account_chooser;
546 }
547
548 void
549 empathy_contact_selector_dialog_set_filter_account (
550     EmpathyContactSelectorDialog *self,
551     TpAccount *account)
552 {
553   EmpathyContactSelectorDialogPriv *priv;
554
555   g_return_if_fail (EMPATHY_IS_CONTACT_SELECTOR_DIALOG (self));
556
557   priv = GET_PRIV (self);
558   priv->filter_account = g_object_ref (account);
559
560   g_object_notify (G_OBJECT (self), "filter-account");
561 }
562
563 TpAccount *
564 empathy_contact_selector_dialog_get_filter_account (
565     EmpathyContactSelectorDialog *self)
566 {
567   EmpathyContactSelectorDialogPriv *priv;
568
569   g_return_val_if_fail (EMPATHY_IS_CONTACT_SELECTOR_DIALOG (self), NULL);
570
571   priv = GET_PRIV (self);
572   return priv->filter_account;
573
574 }