]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-contact-search-dialog.c
174f0441d1c66f92ceee66dcd8f701711ad6178c
[empathy.git] / libempathy-gtk / empathy-contact-search-dialog.c
1 /* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /*
3  * empathy-contact-search-dialog.c
4  *
5  * Copyright (C) 2010-2011 Collabora Ltd.
6  *
7  * The code contained in this file is free software; you can redistribute
8  * it and/or modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either version
10  * 2.1 of the License, or (at your option) any later version.
11  *
12  * This file is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this code; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  *
21  * Authors:
22  *     Danielle Madeley <danielle.madeley@collabora.co.uk>
23  *     Emilio Pozuelo Monfort <emilio.pozuelo@collabora.co.uk>
24  */
25 #include "config.h"
26
27 #include <glib/gi18n-lib.h>
28
29 #include <telepathy-glib/telepathy-glib.h>
30
31 #include <libempathy/empathy-tp-contact-factory.h>
32 #include <libempathy/empathy-utils.h>
33
34 #include <libempathy-gtk/empathy-account-chooser.h>
35 #include <libempathy-gtk/empathy-cell-renderer-text.h>
36 #include <libempathy-gtk/empathy-cell-renderer-activatable.h>
37 #include <libempathy-gtk/empathy-contact-dialogs.h>
38 #include <libempathy-gtk/empathy-images.h>
39
40 #define DEBUG_FLAG EMPATHY_DEBUG_OTHER
41 #include <libempathy/empathy-debug.h>
42
43 #include "empathy-contact-search-dialog.h"
44
45 #define GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), EMPATHY_TYPE_CONTACT_SEARCH_DIALOG, EmpathyContactSearchDialogPrivate))
46
47 G_DEFINE_TYPE (EmpathyContactSearchDialog, empathy_contact_search_dialog, GTK_TYPE_DIALOG);
48
49 enum
50 {
51    NAME_COLUMN,
52    LOGIN_COLUMN,
53    N_COLUMNS
54 };
55
56 enum {
57    PAGE_SEARCH_RESULTS,
58    PAGE_NO_MATCH
59 };
60
61 typedef struct _EmpathyContactSearchDialogPrivate EmpathyContactSearchDialogPrivate;
62 struct _EmpathyContactSearchDialogPrivate
63 {
64   TpContactSearch *searcher;
65   GtkListStore *store;
66
67   GtkWidget *chooser;
68   GtkWidget *notebook;
69   GtkWidget *tree_view;
70   GtkWidget *spinner;
71   GtkWidget *add_button;
72   GtkWidget *find_button;
73   GtkWidget *no_contact_found;
74   GtkWidget *search_entry;
75   /* GtkWidget *server_entry; */
76   GtkWidget *message;
77   GtkWidget *message_window;
78   GtkWidget *message_label;
79 };
80
81 static void
82 empathy_contact_search_dialog_dispose (GObject *self)
83 {
84   EmpathyContactSearchDialogPrivate *priv = GET_PRIVATE (self);
85
86   tp_clear_object (&priv->searcher);
87
88   G_OBJECT_CLASS (empathy_contact_search_dialog_parent_class)->dispose (self);
89 }
90
91 static void
92 on_searcher_reset (GObject *source_object,
93     GAsyncResult *result,
94     gpointer user_data)
95 {
96   EmpathyContactSearchDialog *self = EMPATHY_CONTACT_SEARCH_DIALOG (user_data);
97   EmpathyContactSearchDialogPrivate *priv = GET_PRIVATE (self);
98   TpContactSearch *searcher = TP_CONTACT_SEARCH (source_object);
99   GError *error = NULL;
100   GHashTable *search;
101   const gchar *search_criteria;
102
103   tp_contact_search_reset_finish (searcher, result, &error);
104   if (error != NULL)
105     {
106       DEBUG ("Failed to reset the TpContactSearch: %s", error->message);
107       g_error_free (error);
108       return;
109     }
110
111   search = g_hash_table_new (g_str_hash, g_str_equal);
112
113   search_criteria = gtk_entry_get_text (GTK_ENTRY (priv->search_entry));
114
115   if (tp_strv_contains (tp_contact_search_get_search_keys (searcher), ""))
116     g_hash_table_insert (search, "", (gpointer) search_criteria);
117   else
118     g_hash_table_insert (search, "fn", (gpointer) search_criteria);
119
120   gtk_list_store_clear (priv->store);
121   tp_contact_search_start (priv->searcher, search);
122
123   g_hash_table_unref (search);
124 }
125
126 static void
127 empathy_contact_search_dialog_do_search (EmpathyContactSearchDialog *self)
128 {
129   EmpathyContactSearchDialogPrivate *priv = GET_PRIVATE (self);
130
131   tp_contact_search_reset_async (priv->searcher,
132       NULL, /* gtk_entry_get_text (GTK_ENTRY (priv->server_entry)), */
133       0,
134       on_searcher_reset,
135       self);
136 }
137
138 static void
139 on_get_contact_factory_get_from_id_cb (TpConnection *connection,
140     EmpathyContact *contact,
141     const GError *error,
142     gpointer user_data,
143     GObject *object)
144 {
145     const gchar *message = user_data;
146
147     if (error != NULL)
148       {
149         g_warning ("Error while getting the contact: %s", error->message);
150         return;
151       }
152
153     empathy_contact_add_to_contact_list (contact, message);
154 }
155
156 static void
157 add_selected_contact (EmpathyContactSearchDialog *self)
158 {
159   EmpathyContactSearchDialogPrivate *priv = GET_PRIVATE (self);
160   GtkTreeSelection *selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->tree_view));
161   TpConnection *conn;
162   GtkTreeIter iter;
163   GtkTreeModel *model;
164   GtkTextBuffer *buffer;
165   GtkTextIter start, end;
166   gchar *message;
167   gboolean sel;
168   gchar *id;
169
170   conn = empathy_account_chooser_get_connection (EMPATHY_ACCOUNT_CHOOSER (priv->chooser));
171
172   sel = gtk_tree_selection_get_selected (selection, &model, &iter);
173   g_return_if_fail (sel == TRUE);
174
175   gtk_tree_model_get (model, &iter, LOGIN_COLUMN, &id, -1);
176
177   DEBUG ("Requested to add contact: %s", id);
178
179   buffer = gtk_text_view_get_buffer GTK_TEXT_VIEW (priv->message);
180   gtk_text_buffer_get_start_iter (buffer, &start);
181   gtk_text_buffer_get_end_iter (buffer, &end);
182   message = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
183
184   empathy_tp_contact_factory_get_from_id (conn, id,
185       on_get_contact_factory_get_from_id_cb,
186       message, g_free, NULL);
187
188   /* Close the dialog */
189   gtk_dialog_response (GTK_DIALOG (self), GTK_RESPONSE_CANCEL);
190 }
191
192 static void
193 empathy_contact_search_dialog_response (GtkDialog *self,
194     gint response)
195 {
196   switch (response)
197     {
198       case GTK_RESPONSE_APPLY:
199         add_selected_contact (EMPATHY_CONTACT_SEARCH_DIALOG (self));
200         break;
201       default:
202         gtk_widget_destroy (GTK_WIDGET (self));
203         break;
204     }
205 }
206
207 static void
208 empathy_contact_search_dialog_class_init (
209     EmpathyContactSearchDialogClass *klass)
210 {
211   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
212   GtkDialogClass *dialog_class = GTK_DIALOG_CLASS (klass);
213
214   gobject_class->dispose = empathy_contact_search_dialog_dispose;
215
216   dialog_class->response = empathy_contact_search_dialog_response;
217
218   g_type_class_add_private (gobject_class,
219       sizeof (EmpathyContactSearchDialogPrivate));
220 }
221
222 static void
223 _on_search_state_changed_cb (TpContactSearch *searcher,
224     GParamSpec *pspec,
225     gpointer user_data)
226 {
227   EmpathyContactSearchDialog *self = EMPATHY_CONTACT_SEARCH_DIALOG (user_data);
228   EmpathyContactSearchDialogPrivate *priv = GET_PRIVATE (self);
229   TpChannelContactSearchState state;
230
231   g_object_get (searcher, "state", &state, NULL);
232
233   DEBUG ("new search status: %d", state);
234
235   if (state == TP_CHANNEL_CONTACT_SEARCH_STATE_IN_PROGRESS)
236     {
237       gtk_widget_show (priv->spinner);
238       gtk_spinner_start (GTK_SPINNER (priv->spinner));
239     }
240   else
241     {
242       gtk_widget_hide (priv->spinner);
243       gtk_spinner_stop (GTK_SPINNER (priv->spinner));
244     }
245
246   if (state == TP_CHANNEL_CONTACT_SEARCH_STATE_NOT_STARTED
247       || state == TP_CHANNEL_CONTACT_SEARCH_STATE_IN_PROGRESS)
248     {
249       gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->notebook),
250           PAGE_SEARCH_RESULTS);
251     }
252   else
253     {
254       GtkTreeIter help_iter;
255
256       if (!gtk_tree_model_get_iter_first (GTK_TREE_MODEL (priv->store),
257           &help_iter))
258         {
259           /* No results found, display a helpful message. */
260           gtk_notebook_set_current_page (GTK_NOTEBOOK (priv->notebook),
261               PAGE_NO_MATCH);
262         }
263     }
264 }
265
266 static void
267 _search_results_received (TpContactSearch *searcher,
268     GList *results,
269     EmpathyContactSearchDialog *self)
270 {
271   EmpathyContactSearchDialogPrivate *priv = GET_PRIVATE (self);
272   const TpContactInfoField *name;
273   GList *l;
274
275   for (l = results; l != NULL; l = l->next)
276     {
277       TpContactSearchResult *result = l->data;
278       GtkTreeIter iter;
279
280       gtk_list_store_append (priv->store, &iter);
281
282       name = tp_contact_search_result_get_field (result, "fn");
283
284       gtk_list_store_set (priv->store, &iter,
285           NAME_COLUMN, name ? name->field_value[0] : NULL,
286           LOGIN_COLUMN, tp_contact_search_result_get_identifier (result),
287           -1);
288     }
289 }
290
291 static void
292 on_searcher_created (GObject *source_object,
293     GAsyncResult *result,
294     gpointer user_data)
295 {
296   EmpathyContactSearchDialog *self;
297   EmpathyContactSearchDialogPrivate *priv;
298   GError *error = NULL;
299
300   if (EMPATHY_IS_CONTACT_SEARCH_DIALOG (user_data) == FALSE)
301     /* This happens if the dialog is closed before the callback is called */
302     return;
303
304   self = EMPATHY_CONTACT_SEARCH_DIALOG (user_data);
305   priv = GET_PRIVATE (self);
306
307   priv->searcher = tp_contact_search_new_finish (result, &error);
308   if (error != NULL)
309     {
310       DEBUG ("Failed to create a TpContactSearch: %s", error->message);
311       g_error_free (error);
312       return;
313     }
314
315   g_signal_connect (priv->searcher, "search-results-received",
316       G_CALLBACK (_search_results_received), self);
317   g_signal_connect (priv->searcher, "notify::state",
318       G_CALLBACK (_on_search_state_changed_cb), self);
319
320   gtk_widget_set_sensitive (priv->find_button, TRUE);
321 }
322
323 static void
324 on_selection_changed (GtkTreeSelection *selection,
325     gpointer user_data)
326 {
327   EmpathyContactSearchDialog *self;
328   EmpathyContactSearchDialogPrivate *priv;
329   gboolean sel;
330
331   self = EMPATHY_CONTACT_SEARCH_DIALOG (user_data);
332   priv = GET_PRIVATE (self);
333   sel = gtk_tree_selection_get_selected (selection, NULL, NULL);
334
335   gtk_widget_set_sensitive (priv->add_button, sel);
336 }
337
338 static void
339 check_request_message_available (EmpathyContactSearchDialog *self,
340     TpConnection *conn)
341 {
342   EmpathyContactSearchDialogPrivate *priv = GET_PRIVATE (self);
343
344   gtk_widget_set_visible (priv->message_window,
345       tp_connection_get_can_change_contact_list (conn));
346   gtk_widget_set_visible (priv->message_label,
347       tp_connection_get_can_change_contact_list (conn));
348 }
349
350 static void
351 _account_chooser_changed (EmpathyAccountChooser *chooser,
352     EmpathyContactSearchDialog *self)
353 {
354   EmpathyContactSearchDialogPrivate *priv = GET_PRIVATE (self);
355   TpAccount *account = empathy_account_chooser_get_account (chooser);
356   TpConnection *conn = empathy_account_chooser_get_connection (chooser);
357   TpCapabilities *caps = tp_connection_get_capabilities (conn);
358   gboolean can_cs, can_set_limit, can_set_server;
359
360   can_cs = tp_capabilities_supports_contact_search (caps,
361       &can_set_limit, &can_set_server);
362   DEBUG ("The server supports cs|limit|server: %s|%s|%s",
363       can_cs ? "yes" : "no",
364       can_set_limit ? "yes" : "no",
365       can_set_server ? "yes" : "no");
366
367   /* gtk_widget_set_sensitive (priv->server_entry, can_set_server); */
368   gtk_widget_set_sensitive (priv->find_button, FALSE);
369
370   DEBUG ("New account is %s", tp_proxy_get_object_path (account));
371
372   tp_clear_object (&priv->searcher);
373   tp_contact_search_new_async (account,
374       NULL, /* gtk_entry_get_text (GTK_ENTRY (priv->server_entry)), */
375       0,
376       on_searcher_created, self);
377
378   /* Make the request message textview sensitive if it can be used */
379   check_request_message_available (self, conn);
380 }
381
382 static void
383 _on_button_search_clicked (GtkWidget *widget,
384     EmpathyContactSearchDialog *self)
385 {
386   empathy_contact_search_dialog_do_search (self);
387 }
388
389 #if 0
390 static void
391 on_server_changed_cb (GtkEditable *editable,
392     gpointer user_data)
393 {
394   EmpathyContactSearchDialog *self = EMPATHY_CONTACT_SEARCH_DIALOG (user_data);
395   EmpathyContactSearchDialogPrivate *priv = GET_PRIVATE (self);
396
397   g_return_if_fail (priv->searcher != NULL);
398
399   tp_contact_search_reset_async (priv->searcher,
400       gtk_entry_get_text (GTK_ENTRY (editable)),
401       0,
402       on_searcher_reset,
403       self);
404 }
405 #endif
406
407 static void
408 empathy_account_chooser_filter_supports_contact_search (
409     TpAccount *account,
410     EmpathyAccountChooserFilterResultCallback callback,
411     gpointer callback_data,
412     gpointer user_data)
413 {
414   TpConnection *connection;
415   gboolean supported = FALSE;
416   TpCapabilities *caps;
417
418   connection = tp_account_get_connection (account);
419   if (connection == NULL)
420       goto out;
421
422   caps = tp_connection_get_capabilities (connection);
423   if (caps == NULL)
424       goto out;
425
426   supported = tp_capabilities_supports_contact_search (caps, NULL, NULL);
427
428 out:
429   callback (supported, callback_data);
430 }
431
432 static void
433 contact_search_dialog_row_activated_cb (GtkTreeView *tv,
434     GtkTreePath *path,
435     GtkTreeViewColumn *column,
436     EmpathyContactSearchDialog *self)
437 {
438   /* just emit the same response as the Add Button */
439   gtk_dialog_response (GTK_DIALOG (self), GTK_RESPONSE_APPLY);
440 }
441
442 static void
443 on_profile_button_got_contact_cb (TpConnection *connection,
444     EmpathyContact *contact,
445     const GError *error,
446     gpointer user_data,
447     GObject *object)
448 {
449  if (error != NULL)
450    {
451      g_warning ("Error while getting the contact: %s", error->message);
452      return;
453    }
454
455   empathy_contact_information_dialog_show (contact, NULL);
456 }
457
458 static void
459 on_profile_button_clicked_cb (EmpathyCellRendererActivatable *cell,
460     const gchar *path_string,
461     EmpathyContactSearchDialog *self)
462 {
463   EmpathyContactSearchDialogPrivate *priv = GET_PRIVATE (self);
464   TpConnection *conn;
465   GtkTreeIter iter;
466   GtkTreeModel *model;
467   gboolean valid;
468   gchar *id;
469
470   model = gtk_tree_view_get_model (GTK_TREE_VIEW (priv->tree_view));
471
472   conn = empathy_account_chooser_get_connection (
473       EMPATHY_ACCOUNT_CHOOSER (priv->chooser));
474
475   valid = gtk_tree_model_get_iter_from_string (model, &iter, path_string);
476   g_return_if_fail (valid == TRUE);
477
478   gtk_tree_model_get (model, &iter, LOGIN_COLUMN, &id, -1);
479
480   DEBUG ("Requested to show profile for contact: %s", id);
481
482   empathy_tp_contact_factory_get_from_id (conn, id,
483       on_profile_button_got_contact_cb, NULL,
484       NULL, NULL);
485 }
486
487 static void
488 empathy_contact_search_dialog_init (EmpathyContactSearchDialog *self)
489 {
490   EmpathyContactSearchDialogPrivate *priv = GET_PRIVATE (self);
491   GtkWidget *vbox, *hbox, *scrolled_window, *label;
492   GtkCellRenderer *cell;
493   GtkTreeViewColumn *col;
494   GtkTreeSelection *selection;
495   GtkSizeGroup *size_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
496   gchar *tmp;
497
498   /* Title */
499   gtk_window_set_title (GTK_WINDOW (self), _("Search contacts"));
500
501   vbox = gtk_vbox_new (FALSE, 3);
502   gtk_container_set_border_width (GTK_CONTAINER (vbox), 6);
503
504   /* Account chooser */
505   hbox = gtk_hbox_new (FALSE, 6);
506   label = gtk_label_new (_("Account:"));
507   gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, TRUE, 0);
508   gtk_size_group_add_widget (size_group, label);
509
510   priv->chooser = empathy_account_chooser_new ();
511   empathy_account_chooser_set_filter (EMPATHY_ACCOUNT_CHOOSER (priv->chooser),
512       empathy_account_chooser_filter_supports_contact_search, NULL);
513   gtk_box_pack_start (GTK_BOX (hbox), priv->chooser, TRUE, TRUE, 0);
514   g_signal_connect (priv->chooser, "changed",
515       G_CALLBACK (_account_chooser_changed), self);
516
517   gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, TRUE, 0);
518
519 #if 0
520   /* Server entry */
521   priv->server_entry = gtk_entry_new ();
522   gtk_box_pack_start (GTK_BOX (vbox), priv->server_entry, FALSE, TRUE, 6);
523   g_signal_connect (GTK_EDITABLE (priv->server_entry), "changed",
524       G_CALLBACK (on_server_changed_cb), self);
525 #endif
526
527   /* Search input */
528   hbox = gtk_hbox_new (FALSE, 6);
529   label = gtk_label_new (_("Search: "));
530   gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, TRUE, 0);
531   gtk_size_group_add_widget (size_group, label);
532
533   priv->search_entry = gtk_entry_new ();
534   gtk_box_pack_start (GTK_BOX (hbox), priv->search_entry, TRUE, TRUE, 0);
535   g_signal_connect (priv->search_entry, "activate",
536       G_CALLBACK (_on_button_search_clicked), self);
537
538   priv->find_button = gtk_button_new_from_stock (GTK_STOCK_FIND);
539   g_signal_connect (priv->find_button, "clicked",
540       G_CALLBACK (_on_button_search_clicked), self);
541   gtk_box_pack_end (GTK_BOX (hbox), priv->find_button, FALSE, TRUE, 0);
542
543   priv->spinner = gtk_spinner_new ();
544   gtk_box_pack_end (GTK_BOX (hbox), priv->spinner, FALSE, TRUE, 0);
545   gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, TRUE, 0);
546
547   /* Search results */
548   priv->store = gtk_list_store_new (N_COLUMNS,
549                                     G_TYPE_STRING,  /* Name */
550                                     G_TYPE_STRING); /* Login */
551
552   priv->tree_view = gtk_tree_view_new_with_model (GTK_TREE_MODEL (priv->store));
553   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (priv->tree_view));
554   gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE);
555
556   g_signal_connect (priv->tree_view, "row-activated",
557       G_CALLBACK (contact_search_dialog_row_activated_cb), self);
558   g_signal_connect (selection, "changed",
559       G_CALLBACK (on_selection_changed), self);
560
561   gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (priv->tree_view), FALSE);
562
563   col = gtk_tree_view_column_new ();
564
565   cell = empathy_cell_renderer_text_new ();
566   gtk_tree_view_column_pack_start (col, cell, TRUE);
567   /* EmpathyCellRendererText displays "name" above and "status" below.
568    * We want the login above since it'll always be available, and the
569    * name below since we won't always have it. */
570   gtk_tree_view_column_add_attribute (col, cell,
571       "name", LOGIN_COLUMN);
572   gtk_tree_view_column_add_attribute (col, cell,
573       "status", NAME_COLUMN);
574
575   cell = empathy_cell_renderer_activatable_new ();
576   gtk_tree_view_column_pack_end (col, cell, FALSE);
577   g_object_set (cell, "stock-id", EMPATHY_IMAGE_CONTACT_INFORMATION, NULL);
578   g_signal_connect (cell, "path-activated",
579       G_CALLBACK (on_profile_button_clicked_cb), self);
580
581   gtk_tree_view_append_column (GTK_TREE_VIEW (priv->tree_view), col);
582
583   gtk_dialog_add_button (GTK_DIALOG (self),
584       GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE);
585
586   priv->add_button = gtk_dialog_add_button (GTK_DIALOG (self),
587       _("_Add Contact"), GTK_RESPONSE_APPLY);
588   gtk_widget_set_sensitive (priv->add_button, FALSE);
589   gtk_button_set_image (GTK_BUTTON (priv->add_button),
590       gtk_image_new_from_stock (GTK_STOCK_ADD, GTK_ICON_SIZE_BUTTON));
591
592   /* Pack the dialog */
593   priv->notebook = gtk_notebook_new ();
594   gtk_notebook_set_show_tabs (GTK_NOTEBOOK (priv->notebook), FALSE);
595   g_object_set (priv->notebook, "margin", 6, NULL);
596
597   scrolled_window = gtk_scrolled_window_new (NULL, NULL);
598   gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
599       GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
600
601   gtk_container_add (GTK_CONTAINER (scrolled_window), priv->tree_view);
602
603   priv->no_contact_found = gtk_label_new (NULL);
604   tmp = g_strdup_printf ("<b><span size='xx-large'>%s</span></b>",
605       _("No contacts found"));
606   gtk_label_set_markup (GTK_LABEL (priv->no_contact_found), tmp);
607   g_free (tmp);
608
609   gtk_label_set_ellipsize (GTK_LABEL (priv->no_contact_found),
610       PANGO_ELLIPSIZE_END);
611
612   gtk_notebook_append_page (GTK_NOTEBOOK (priv->notebook), scrolled_window,
613       NULL);
614   gtk_notebook_append_page (GTK_NOTEBOOK (priv->notebook),
615       priv->no_contact_found, NULL);
616
617   gtk_box_pack_start (GTK_BOX (vbox), priv->notebook, TRUE, TRUE, 3);
618
619   /* Request message textview */
620   priv->message_label = gtk_label_new (
621        _("Your message introducing yourself:"));
622   gtk_misc_set_alignment (GTK_MISC (priv->message_label), 0, 0.5);
623
624   priv->message = gtk_text_view_new ();
625   gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (priv->message),
626       GTK_WRAP_WORD_CHAR);
627   gtk_text_buffer_set_text (
628       gtk_text_view_get_buffer (GTK_TEXT_VIEW (priv->message)),
629       _("Please let me see when you're online. Thanks!"), -1);
630
631   priv->message_window = gtk_scrolled_window_new (NULL, NULL);
632   gtk_scrolled_window_set_shadow_type (
633       GTK_SCROLLED_WINDOW (priv->message_window),
634       GTK_SHADOW_ETCHED_IN);
635   gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (priv->message_window),
636       GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
637
638   gtk_container_add (GTK_CONTAINER (priv->message_window), priv->message);
639
640   gtk_box_pack_start (GTK_BOX (vbox), priv->message_label, FALSE, TRUE, 3);
641   gtk_box_pack_start (GTK_BOX (vbox), priv->message_window, FALSE, TRUE, 3);
642
643   gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (
644           GTK_DIALOG (self))), vbox, TRUE, TRUE, 0);
645
646   gtk_window_set_default_size (GTK_WINDOW (self), 200, 400);
647   gtk_widget_show_all (vbox);
648   gtk_widget_hide (priv->spinner);
649 }
650
651 GtkWidget *
652 empathy_contact_search_dialog_new (GtkWindow *parent)
653 {
654   GtkWidget *self;
655
656   g_return_val_if_fail (parent == NULL || GTK_IS_WINDOW (parent), NULL);
657
658   self = g_object_new (EMPATHY_TYPE_CONTACT_SEARCH_DIALOG, NULL);
659
660   if (parent != NULL)
661     {
662       gtk_window_set_transient_for (GTK_WINDOW (self), parent);
663     }
664
665   return self;
666 }