aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-profile-chooser.c
blob: fd68dd8b01bd50663d819cf7ef1e272de3d46ff3 (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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/* -*- 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 <gtk/gtk.h>
#include <libmissioncontrol/mc-profile.h>
#include <libmissioncontrol/mc-protocol.h>

#include "empathy-profile-chooser.h"
#include "empathy-ui-utils.h"

enum {
    COL_ICON,
    COL_LABEL,
    COL_PROFILE,
    COL_COUNT
};

McProfile*
empathy_profile_chooser_get_selected (GtkWidget *widget)
{
    GtkTreeModel *model;
    GtkTreeIter   iter;
    McProfile    *profile = NULL;

    model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget));
    if (gtk_combo_box_get_active_iter (GTK_COMBO_BOX (widget), &iter)) {
        gtk_tree_model_get (model, &iter,
                    COL_PROFILE, &profile,
                    -1);
    }

    return profile;
}

gint
empathy_profile_chooser_n_profiles (GtkWidget *widget)
{
    GtkTreeModel *model;

    model = gtk_combo_box_get_model (GTK_COMBO_BOX (widget));

    return gtk_tree_model_iter_n_children (model, NULL);
}

static gint
profile_chooser_sort_profile_value (McProfile *profile)
{
    guint        i;
    const gchar *profile_name;
    const gchar *names[] = {"jabber",
                "salut",
                "gtalk",
                NULL};

    profile_name = mc_profile_get_unique_name (profile);

    for (i = 0 ; names[i]; i++) {
        if (strcmp (profile_name, names[i]) == 0) {
            return i;
        }
    }

    return i;
}

static gint
profile_chooser_sort_func (GtkTreeModel *model,
               GtkTreeIter  *iter_a,
               GtkTreeIter  *iter_b,
               gpointer      user_data)
{
    McProfile   *profile_a;
    McProfile   *profile_b;
    gint         cmp;

    gtk_tree_model_get (model, iter_a,
                COL_PROFILE, &profile_a,
                -1);
    gtk_tree_model_get (model, iter_b,
                COL_PROFILE, &profile_b,
                -1);

    cmp = profile_chooser_sort_profile_value (profile_a);
    cmp -= profile_chooser_sort_profile_value (profile_b);
    if (cmp == 0) {
        cmp = strcmp (mc_profile_get_display_name (profile_a),
                  mc_profile_get_display_name (profile_b));
    }

    g_object_unref (profile_a);
    g_object_unref (profile_b);

    return cmp;
}

GtkWidget *
empathy_profile_chooser_new (void)
{
    GList           *profiles, *l, *seen;
    GtkListStore    *store;
    GtkCellRenderer *renderer;
    GtkWidget       *combo_box;
    GtkTreeIter      iter;
    gboolean         iter_set = FALSE;
    McManager       *btf_cm;

    /* set up combo box with new store */
    store = gtk_list_store_new (COL_COUNT,
                    G_TYPE_STRING,    /* Icon name */
                    G_TYPE_STRING,    /* Label     */
                    MC_TYPE_PROFILE); /* Profile   */
    combo_box = gtk_combo_box_new_with_model (GTK_TREE_MODEL (store));


    renderer = gtk_cell_renderer_pixbuf_new ();
    gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), renderer, FALSE);
    gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), renderer,
                    "icon-name", COL_ICON,
                    NULL);
    g_object_set (renderer, "stock-size", GTK_ICON_SIZE_BUTTON, NULL);

    renderer = gtk_cell_renderer_text_new ();
    gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), renderer, TRUE);
    gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), renderer,
                    "text", COL_LABEL,
                    NULL);

    btf_cm = mc_manager_lookup ("butterfly");
    profiles = mc_profiles_list ();
    seen = NULL;
    for (l = profiles; l; l = l->next) {
        McProfile   *profile;
        McProtocol  *protocol;
        const gchar *unique_name;

        profile = l->data;

        /* Check if the CM is installed, otherwise skip that profile.
         * Workaround SF bug #1688779 */
        protocol = mc_profile_get_protocol (profile);
        if (!protocol) {
            continue;
        }
        g_object_unref (protocol);

        /* Skip MSN-Haze if we have butterfly */
        unique_name = mc_profile_get_unique_name (profile);
        if (btf_cm && strcmp (unique_name, "msn-haze") == 0) {
            continue;
        }

        if (g_list_find_custom (seen, unique_name, (GCompareFunc) strcmp)) {
            continue;
        }
        seen = g_list_append (seen, (char*) unique_name);

        gtk_list_store_insert_with_values (store, &iter, 0,
                           COL_ICON, mc_profile_get_icon_name (profile),
                           COL_LABEL, mc_profile_get_display_name (profile),
                           COL_PROFILE, profile,
                           -1);
                iter_set = TRUE;
    }

    g_list_free (seen);

    if (btf_cm) {
        g_object_unref (btf_cm);
    }

    /* Set the profile sort function */
    gtk_tree_sortable_set_sort_func (GTK_TREE_SORTABLE (store),
                     COL_PROFILE,
                     profile_chooser_sort_func,
                     NULL, NULL);
    gtk_tree_sortable_set_sort_column_id (GTK_TREE_SORTABLE (store),
                          COL_PROFILE,
                          GTK_SORT_ASCENDING);

        if (iter_set) {
        gtk_combo_box_set_active_iter (GTK_COMBO_BOX (combo_box), &iter);
        }

    mc_profiles_free_list (profiles);
    g_object_unref (store);

    return combo_box;
}