]> git.0d.be Git - empathy.git/blob - libempathy-gtk/empathy-new-message-dialog.c
empathy_dispatcher_chat_with_contact_id: get a TpAccount instead of a TpConnection
[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   TpAccount *account;
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), NULL, &account);
70
71   if (EMP_STR_EMPTY (contact_id) || account == NULL) goto out;
72
73   empathy_dispatcher_chat_with_contact_id (account, contact_id,
74       gtk_get_current_event_time ());
75
76 out:
77   gtk_widget_destroy (GTK_WIDGET (dialog));
78 }
79
80 static gboolean
81 empathy_new_message_account_filter (EmpathyContactSelectorDialog *dialog,
82     TpAccount *account)
83 {
84   TpConnection *connection;
85   EmpathyDispatcher *dispatcher;
86   GList *classes;
87
88   if (tp_account_get_connection_status (account, NULL) !=
89       TP_CONNECTION_STATUS_CONNECTED)
90     return FALSE;
91
92   /* check if CM supports 1-1 text chat */
93   connection = tp_account_get_connection (account);
94   if (connection == NULL)
95     return FALSE;
96
97   dispatcher = empathy_dispatcher_dup_singleton ();
98
99   classes = empathy_dispatcher_find_requestable_channel_classes
100     (dispatcher, connection, TP_IFACE_CHANNEL_TYPE_TEXT,
101      TP_HANDLE_TYPE_CONTACT, NULL);
102
103   g_object_unref (dispatcher);
104
105   if (classes == NULL)
106     return FALSE;
107
108   g_list_free (classes);
109   return TRUE;
110 }
111
112 static GObject *
113 empathy_new_message_dialog_constructor (GType type,
114     guint n_props,
115     GObjectConstructParam *props)
116 {
117   GObject *retval;
118
119   if (dialog_singleton)
120     {
121       retval = G_OBJECT (dialog_singleton);
122       g_object_ref (retval);
123     }
124   else
125     {
126       retval = G_OBJECT_CLASS (
127       empathy_new_message_dialog_parent_class)->constructor (type,
128         n_props, props);
129
130       dialog_singleton = EMPATHY_NEW_MESSAGE_DIALOG (retval);
131       g_object_add_weak_pointer (retval, (gpointer) &dialog_singleton);
132     }
133
134   return retval;
135 }
136
137 static void
138 empathy_new_message_dialog_init (EmpathyNewMessageDialog *dialog)
139 {
140   EmpathyContactSelectorDialog *parent = EMPATHY_CONTACT_SELECTOR_DIALOG (
141         dialog);
142   GtkWidget *image;
143
144   /* add chat button */
145   parent->button_action = gtk_button_new_with_mnemonic (_("C_hat"));
146   image = gtk_image_new_from_icon_name (EMPATHY_IMAGE_NEW_MESSAGE,
147       GTK_ICON_SIZE_BUTTON);
148   gtk_button_set_image (GTK_BUTTON (parent->button_action), image);
149
150   gtk_dialog_add_action_widget (GTK_DIALOG (dialog), parent->button_action,
151       GTK_RESPONSE_ACCEPT);
152   gtk_widget_show (parent->button_action);
153
154   /* Tweak the dialog */
155   gtk_window_set_title (GTK_WINDOW (dialog), _("New Conversation"));
156   gtk_window_set_role (GTK_WINDOW (dialog), "new_message");
157
158   gtk_widget_set_sensitive (parent->button_action, FALSE);
159 }
160
161 static void
162 empathy_new_message_dialog_class_init (
163   EmpathyNewMessageDialogClass *class)
164 {
165   GObjectClass *object_class = G_OBJECT_CLASS (class);
166   GtkDialogClass *dialog_class = GTK_DIALOG_CLASS (class);
167   EmpathyContactSelectorDialogClass *selector_dialog_class = \
168     EMPATHY_CONTACT_SELECTOR_DIALOG_CLASS (class);
169
170   object_class->constructor = empathy_new_message_dialog_constructor;
171
172   dialog_class->response = empathy_new_message_dialog_response;
173
174   selector_dialog_class->account_filter = empathy_new_message_account_filter;
175 }
176
177 /**
178  * empathy_new_message_dialog_new:
179  * @parent: parent #GtkWindow of the dialog
180  *
181  * Create a new #EmpathyNewMessageDialog it.
182  *
183  * Return value: the new #EmpathyNewMessageDialog
184  */
185 GtkWidget *
186 empathy_new_message_dialog_show (GtkWindow *parent)
187 {
188   GtkWidget *dialog;
189
190   dialog = g_object_new (EMPATHY_TYPE_NEW_MESSAGE_DIALOG, NULL);
191
192   if (parent)
193     {
194       gtk_window_set_transient_for (GTK_WINDOW (dialog),
195           GTK_WINDOW (parent));
196     }
197
198   gtk_widget_show (dialog);
199   return dialog;
200 }