]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-new-message-dialog.c
Merge commit 'staz/dnd'
[empathy.git] / libempathy-gtk / empathy-new-message-dialog.c
1 /*
2  * Copyright (C) 2007-2008 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  */
20
21 #include <config.h>
22
23 #include <string.h>
24 #include <stdlib.h>
25
26 #include <gtk/gtk.h>
27 #include <glib/gi18n-lib.h>
28
29 #include <telepathy-glib/interfaces.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-new-message-dialog.h"
43 #include "empathy-account-chooser.h"
44
45 static EmpathyNewMessageDialog *dialog_singleton = NULL;
46
47 G_DEFINE_TYPE(EmpathyNewMessageDialog, empathy_new_message_dialog,
48                EMPATHY_TYPE_CONTACT_SELECTOR_DIALOG)
49
50 /**
51  * SECTION:empathy-new-message-dialog
52  * @title: EmpathyNewMessageDialog
53  * @short_description: A dialog to show a new message
54  * @include: libempathy-gtk/empathy-new-message-dialog.h
55  *
56  * #EmpathyNewMessageDialog is a dialog which allows a text chat
57  * to be started with any contact on any enabled account.
58  */
59
60 static void
61 empathy_new_message_dialog_response (GtkDialog *dialog, int response_id)
62 {
63   TpConnection *connection;
64   const gchar *contact_id;
65
66   if (response_id != GTK_RESPONSE_ACCEPT) goto out;
67
68   contact_id = empathy_contact_selector_dialog_get_selected (
69       EMPATHY_CONTACT_SELECTOR_DIALOG (dialog), &connection);
70
71   if (EMP_STR_EMPTY (contact_id) || connection == NULL) goto out;
72
73   empathy_dispatcher_chat_with_contact_id (connection, contact_id, NULL, NULL);
74
75 out:
76   gtk_widget_destroy (GTK_WIDGET (dialog));
77 }
78
79 static gboolean
80 empathy_new_message_account_filter (EmpathyContactSelectorDialog *dialog,
81     TpAccount *account)
82 {
83   TpConnection *connection;
84   EmpathyDispatcher *dispatcher;
85   GList *classes;
86
87   if (tp_account_get_connection_status (account, NULL) !=
88       TP_CONNECTION_STATUS_CONNECTED)
89     return FALSE;
90
91   /* check if CM supports 1-1 text chat */
92   connection = tp_account_get_connection (account);
93   if (connection == NULL)
94     return FALSE;
95
96   dispatcher = empathy_dispatcher_dup_singleton ();
97
98   classes = empathy_dispatcher_find_requestable_channel_classes
99     (dispatcher, connection, TP_IFACE_CHANNEL_TYPE_TEXT,
100      TP_HANDLE_TYPE_CONTACT, NULL);
101
102   g_object_unref (dispatcher);
103
104   if (classes == NULL)
105     return FALSE;
106
107   g_list_free (classes);
108   return TRUE;
109 }
110
111 static GObject *
112 empathy_new_message_dialog_constructor (GType type,
113     guint n_props,
114     GObjectConstructParam *props)
115 {
116   GObject *retval;
117
118   if (dialog_singleton)
119     {
120       retval = G_OBJECT (dialog_singleton);
121       g_object_ref (retval);
122     }
123   else
124     {
125       retval = G_OBJECT_CLASS (
126       empathy_new_message_dialog_parent_class)->constructor (type,
127         n_props, props);
128
129       dialog_singleton = EMPATHY_NEW_MESSAGE_DIALOG (retval);
130       g_object_add_weak_pointer (retval, (gpointer) &dialog_singleton);
131     }
132
133   return retval;
134 }
135
136 static void
137 empathy_new_message_dialog_init (EmpathyNewMessageDialog *dialog)
138 {
139   EmpathyContactSelectorDialog *parent = EMPATHY_CONTACT_SELECTOR_DIALOG (
140         dialog);
141   GtkWidget *image;
142
143   /* add chat button */
144   parent->button_action = gtk_button_new_with_mnemonic (_("C_hat"));
145   image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_NEW_MESSAGE,
146       GTK_ICON_SIZE_BUTTON);
147   gtk_button_set_image (GTK_BUTTON (parent->button_action), image);
148
149   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), parent->button_action,
150       GTK_RESPONSE_ACCEPT);
151   gtk_widget_show (parent->button_action);
152
153   /* Tweak the dialog */
154   gtk_window_set_title (GTK_WINDOW (dialog), _("New Conversation"));
155   gtk_window_set_role (GTK_WINDOW (dialog), "new_message");
156
157   gtk_widget_set_sensitive (parent->button_action, FALSE);
158 }
159
160 static void
161 empathy_new_message_dialog_class_init (
162   EmpathyNewMessageDialogClass *class)
163 {
164   GObjectClass *object_class = G_OBJECT_CLASS (class);
165   GtkDialogClass *dialog_class = GTK_DIALOG_CLASS (class);
166   EmpathyContactSelectorDialogClass *selector_dialog_class = \
167     EMPATHY_CONTACT_SELECTOR_DIALOG_CLASS (class);
168
169   object_class->constructor = empathy_new_message_dialog_constructor;
170
171   dialog_class->response = empathy_new_message_dialog_response;
172
173   selector_dialog_class->account_filter = empathy_new_message_account_filter;
174 }
175
176 /**
177  * empathy_new_message_dialog_new:
178  * @parent: parent #GtkWindow of the dialog
179  *
180  * Create a new #EmpathyNewMessageDialog it.
181  *
182  * Return value: the new #EmpathyNewMessageDialog
183  */
184 GtkWidget *
185 empathy_new_message_dialog_show (GtkWindow *parent)
186 {
187   GtkWidget *dialog;
188
189   dialog = g_object_new (EMPATHY_TYPE_NEW_MESSAGE_DIALOG, NULL);
190
191   if (parent)
192     {
193       gtk_window_set_transient_for (GTK_WINDOW (dialog),
194           GTK_WINDOW (parent));
195     }
196
197   gtk_widget_show (dialog);
198   return dialog;
199 }