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 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
/*
* e-select-names-editable.c
*
* Author: Mike Kestner <mkestner@ximian.com>
*
* Copyright (C) 2003 Ximian Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* This program 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
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <config.h>
#include <gdk/gdkkeysyms.h>
#include <gtk/gtkcelleditable.h>
#include <libebook/e-destination.h>
#include <libedataserverui/e-name-selector-entry.h>
#include "e-select-names-editable.h"
struct _ESelectNamesEditablePriv {
gint dummy;
};
static ENameSelectorEntryClass *parent_class;
static void
esne_cell_editable_init (GtkCellEditableIface *iface)
{
}
static void
esne_finalize (GObject *obj)
{
ESelectNamesEditable *esne = (ESelectNamesEditable *) obj;
g_free (esne->priv);
if (G_OBJECT_CLASS (parent_class)->finalize)
G_OBJECT_CLASS (parent_class)->finalize (obj);
}
static void
esne_init (ESelectNamesEditable *esne)
{
esne->priv = g_new0 (ESelectNamesEditablePriv, 1);
}
static void
esne_class_init (GObjectClass *klass)
{
klass->finalize = esne_finalize;
parent_class = E_NAME_SELECTOR_ENTRY_CLASS (g_type_class_peek_parent (klass));
}
GType
e_select_names_editable_get_type (void)
{
static GType esne_type = 0;
if (!esne_type) {
static const GTypeInfo esne_info = {
sizeof (ESelectNamesEditableClass),
NULL, /* base_init */
NULL, /* base_finalize */
(GClassInitFunc) esne_class_init,
NULL, /* class_finalize */
NULL, /* class_data */
sizeof (ESelectNamesEditable),
0, /* n_preallocs */
(GInstanceInitFunc) esne_init,
};
static const GInterfaceInfo cell_editable_info = {
(GInterfaceInitFunc) esne_cell_editable_init,
NULL,
NULL
};
esne_type = g_type_register_static (E_TYPE_NAME_SELECTOR_ENTRY, "ESelectNamesEditable", &esne_info, 0);
g_type_add_interface_static (esne_type, GTK_TYPE_CELL_EDITABLE, &cell_editable_info);
}
return esne_type;
}
ESelectNamesEditable *
e_select_names_editable_new ()
{
ESelectNamesEditable *esne = g_object_new (E_TYPE_SELECT_NAMES_EDITABLE, NULL);
return esne;
}
gchar *
e_select_names_editable_get_email (ESelectNamesEditable *esne)
{
EDestinationStore *destination_store;
GList *destinations;
EDestination *destination;
gchar *result = NULL;
g_return_val_if_fail (E_SELECT_NAMES_EDITABLE (esne), NULL);
destination_store = e_name_selector_entry_peek_destination_store (E_NAME_SELECTOR_ENTRY (esne));
destinations = e_destination_store_list_destinations (destination_store);
if (!destinations)
return NULL;
destination = destinations->data;
result = g_strdup (e_destination_get_email (destination));
g_list_free (destinations);
return result;
}
GList *
e_select_names_editable_get_emails (ESelectNamesEditable *esne)
{
EDestinationStore *destination_store;
GList *destinations, *l;
EDestination *destination;
GList *result = NULL;
g_return_val_if_fail (E_SELECT_NAMES_EDITABLE (esne), NULL);
destination_store = e_name_selector_entry_peek_destination_store (E_NAME_SELECTOR_ENTRY (esne));
destinations = e_destination_store_list_destinations (destination_store);
if (!destinations)
return NULL;
for (l = destinations; l != NULL; l = l->next) {
destination = l->data;
if (e_destination_is_evolution_list (destination)) {
const GList *list_dests, *l;
list_dests = e_destination_list_get_dests (destination);
for (l = list_dests; l != NULL; l = g_list_next (l)) {
result = g_list_append (result, g_strdup (e_destination_get_email (l->data)));
}
} else {
/* check if the contact is contact list, it does not contain all the email ids */
/* we dont expand it currently, TODO do we need to expand it by getting it from addressbook*/
if (e_contact_get (e_destination_get_contact (destination), E_CONTACT_IS_LIST)) {
/* If its a contact_list which is not expanded, it wont have a email id,
so we can use the name as the email id */
result = g_list_append (result, g_strdup (e_destination_get_name (destination)));
} else
result = g_list_append (result, g_strdup (e_destination_get_email (destination)));
}
}
g_list_free (destinations);
return result;
}
gchar *
e_select_names_editable_get_name (ESelectNamesEditable *esne)
{
EDestinationStore *destination_store;
GList *destinations;
EDestination *destination;
gchar *result = NULL;
g_return_val_if_fail (E_SELECT_NAMES_EDITABLE (esne), NULL);
destination_store = e_name_selector_entry_peek_destination_store (E_NAME_SELECTOR_ENTRY (esne));
destinations = e_destination_store_list_destinations (destination_store);
if (!destinations)
return NULL;
destination = destinations->data;
result = g_strdup (e_destination_get_name (destination));
g_list_free (destinations);
return result;
}
GList *
e_select_names_editable_get_names (ESelectNamesEditable *esne)
{
EDestinationStore *destination_store;
GList *destinations, *l;
EDestination *destination;
GList *result = NULL;
g_return_val_if_fail (E_SELECT_NAMES_EDITABLE (esne), NULL);
destination_store = e_name_selector_entry_peek_destination_store (E_NAME_SELECTOR_ENTRY (esne));
destinations = e_destination_store_list_destinations (destination_store);
if (!destinations)
return NULL;
for (l = destinations; l != NULL; l = l->next) {
destination = l->data;
if (e_destination_is_evolution_list (destination)) {
const GList *list_dests, *l;
list_dests = e_destination_list_get_dests (destination);
for (l = list_dests; l != NULL; l = g_list_next (l)) {
result = g_list_append (result, g_strdup (e_destination_get_name (l->data)));
}
} else {
result = g_list_append (result, g_strdup (e_destination_get_name (destination)));
}
}
g_list_free (destinations);
return result;
}
void
e_select_names_editable_set_address (ESelectNamesEditable *esne, const gchar *name, const gchar *email)
{
EDestinationStore *destination_store;
GList *destinations;
EDestination *destination;
g_return_if_fail (E_IS_SELECT_NAMES_EDITABLE (esne));
destination_store = e_name_selector_entry_peek_destination_store (E_NAME_SELECTOR_ENTRY (esne));
destinations = e_destination_store_list_destinations (destination_store);
if (!destinations)
destination = e_destination_new ();
else
destination = g_object_ref (destinations->data);
e_destination_set_name (destination, name);
e_destination_set_email (destination, email);
if (!destinations)
e_destination_store_append_destination (destination_store, destination);
g_object_unref (destination);
}
|