aboutsummaryrefslogtreecommitdiffstats
path: root/gnome-2-22/libempathy-gtk/empathy-new-message-dialog.c
blob: 6c588a660192faae44f0010d504d4c9a7ab90516 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2007-2008 Collabora Ltd.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Authors: Xavier Claessens <xclaesse@gmail.com>
 */

#include <config.h>

#include <string.h>
#include <stdlib.h>

#include <gtk/gtk.h>
#include <glade/glade.h>
#include <glib/gi18n.h>

#include <libmissioncontrol/mc-account.h>
#include <libmissioncontrol/mission-control.h>

#include <libempathy/empathy-contact-factory.h>
#include <libempathy/empathy-debug.h>
#include <libempathy/empathy-utils.h>

#include <libempathy-gtk/empathy-ui-utils.h>

#include "empathy-new-message-dialog.h"
#include "empathy-account-chooser.h"

#define DEBUG_DOMAIN "NewMessageDialog"

typedef struct {
    GtkWidget *dialog;
    GtkWidget *table_contact;
    GtkWidget *account_chooser;
    GtkWidget *entry_id;
    GtkWidget *button_chat;
    GtkWidget *button_call;
} EmpathyNewMessageDialog;

static void
new_message_dialog_response_cb (GtkWidget               *widget,
                gint                    response,
                EmpathyNewMessageDialog *dialog)
{
    McAccount   *account;
    const gchar *id;

    account = empathy_account_chooser_get_account (EMPATHY_ACCOUNT_CHOOSER (dialog->account_chooser));
    id = gtk_entry_get_text (GTK_ENTRY (dialog->entry_id));
    if (!account || G_STR_EMPTY (id)) {
        if (account) {
            g_object_unref (account);
        }
        gtk_widget_destroy (widget);
        return;
    }

    if (response == 1) {
        empathy_call_with_contact_id (account, id);
    }   
    else if (response == 2) {
        empathy_chat_with_contact_id (account, id);
    }

    g_object_unref (account);
    gtk_widget_destroy (widget);
}

static void
new_message_change_state_button_cb  (GtkEditable             *editable,
                     EmpathyNewMessageDialog *dialog)  
{
    const gchar *id;
    gboolean     sensitive;

    id = gtk_entry_get_text (GTK_ENTRY (editable));
    sensitive = !G_STR_EMPTY (id);
    
    gtk_widget_set_sensitive (dialog->button_chat, sensitive);
    gtk_widget_set_sensitive (dialog->button_call, sensitive);
}

static void
new_message_dialog_destroy_cb (GtkWidget               *widget,
                   EmpathyNewMessageDialog *dialog)
{   
    g_free (dialog);
}

GtkWidget *
empathy_new_message_dialog_show (GtkWindow *parent)
{
    static EmpathyNewMessageDialog *dialog = NULL;
    GladeXML                       *glade;

    if (dialog) {
        gtk_window_present (GTK_WINDOW (dialog->dialog));
        return dialog->dialog;
    }

    dialog = g_new0 (EmpathyNewMessageDialog, 1);

    glade = empathy_glade_get_file ("empathy-new-message-dialog.glade",
                        "new_message_dialog",
                        NULL,
                        "new_message_dialog", &dialog->dialog,
                        "table_contact", &dialog->table_contact,
                        "entry_id", &dialog->entry_id,
                    "button_chat", &dialog->button_chat,
                    "button_call",&dialog->button_call,
                        NULL);

    empathy_glade_connect (glade,
                   dialog,
                   "new_message_dialog", "destroy", new_message_dialog_destroy_cb,
                   "new_message_dialog", "response", new_message_dialog_response_cb,
                   "entry_id", "changed", new_message_change_state_button_cb,
                   NULL);

    g_object_add_weak_pointer (G_OBJECT (dialog->dialog), (gpointer) &dialog);

    g_object_unref (glade);

    /* Create account chooser */
    dialog->account_chooser = empathy_account_chooser_new ();
    gtk_table_attach_defaults (GTK_TABLE (dialog->table_contact),
                   dialog->account_chooser,
                   1, 2, 0, 1);
    empathy_account_chooser_set_filter (EMPATHY_ACCOUNT_CHOOSER (dialog->account_chooser),
                        empathy_account_chooser_filter_is_connected,
                        NULL);
    gtk_widget_show (dialog->account_chooser);

    if (parent) {
        gtk_window_set_transient_for (GTK_WINDOW (dialog->dialog),
                          GTK_WINDOW (parent));
    }

    gtk_widget_set_sensitive (dialog->button_chat, FALSE);
    gtk_widget_set_sensitive (dialog->button_call, FALSE);

#ifndef HAVE_VOIP
    gtk_widget_hide (dialog->button_call);
#endif

    gtk_widget_show (dialog->dialog);

    return dialog->dialog;
}