/*
* This program 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 of the License, or (at your option) version 3.
*
* 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with the program; if not, see
*
*
* Authors:
* Michael Zucchi
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
*/
#ifdef HAVE_CONFIG_H
#include
#endif
#include
#include
#include
#include "eab-popup.h"
#include
#include
static GObjectClass *eabp_parent;
static void
eabp_init(GObject *o)
{
/*EABPopup *eabp = (EABPopup *)o; */
}
static void
eabp_finalise(GObject *o)
{
((GObjectClass *)eabp_parent)->finalize(o);
}
static void
eabp_target_free(EPopup *ep, EPopupTarget *t)
{
switch (t->type) {
case EAB_POPUP_TARGET_SELECT: {
EABPopupTargetSelect *s = (EABPopupTargetSelect *)t;
int i;
for (i=0;icards->len;i++)
g_object_unref(s->cards->pdata[i]);
g_ptr_array_free(s->cards, TRUE);
g_object_unref(s->book);
break; }
case EAB_POPUP_TARGET_URI: {
EABPopupTargetURI *s = (EABPopupTargetURI *)t;
g_free(s->uri);
break; }
case EAB_POPUP_TARGET_SOURCE: {
EABPopupTargetSource *s = (EABPopupTargetSource *)t;
g_object_unref(s->selector);
break; }
#ifdef ADAPTED_TO_E_NAME_SELECTOR
case EAB_POPUP_TARGET_SELECT_NAMES: {
EABPopupTargetSelectNames *s = (EABPopupTargetSelectNames *)t;
g_object_unref(s->model);
break; }
#endif
}
((EPopupClass *)eabp_parent)->target_free(ep, t);
}
static void
eabp_class_init(GObjectClass *klass)
{
klass->finalize = eabp_finalise;
((EPopupClass *)klass)->target_free = eabp_target_free;
}
GType
eab_popup_get_type(void)
{
static GType type = 0;
if (type == 0) {
static const GTypeInfo info = {
sizeof(EABPopupClass),
NULL, NULL,
(GClassInitFunc)eabp_class_init,
NULL, NULL,
sizeof(EABPopup), 0,
(GInstanceInitFunc)eabp_init
};
eabp_parent = g_type_class_ref(e_popup_get_type());
type = g_type_register_static(e_popup_get_type(), "EABPopup", &info, 0);
}
return type;
}
EABPopup *eab_popup_new(const char *menuid)
{
EABPopup *eabp = g_object_new(eab_popup_get_type(), NULL);
e_popup_construct(&eabp->popup, menuid);
return eabp;
}
/**
* eab_popup_target_new_select:
* @eabp: Address book popup.
* @book: Book the cards belong to.
* @readonly: Book is read-only mode. FIXME: Why can't we just get this off the book?
* @cards: Cards selected. This will be freed on completion.
*
* Create a new selection popup target.
*
* Return value:
**/
EABPopupTargetURI *
eab_popup_target_new_uri(EABPopup *emp, const char *uri)
{
EABPopupTargetURI *t = e_popup_target_new(&emp->popup, EAB_POPUP_TARGET_URI, sizeof(*t));
guint32 mask = ~0;
t->uri = g_strdup(uri);
if (g_ascii_strncasecmp(uri, "http:", 5) == 0
|| g_ascii_strncasecmp(uri, "https:", 6) == 0)
mask &= ~EAB_POPUP_URI_HTTP;
if (g_ascii_strncasecmp(uri, "internal-mailto:", 16) == 0)
mask &= ~EAB_POPUP_URI_MAILTO;
else
mask &= ~EAB_POPUP_URI_NOT_MAILTO;
t->target.mask = mask;
return t;
}
EABPopupTargetSelect *
eab_popup_target_new_select(EABPopup *eabp, struct _EBook *book, int readonly, GPtrArray *cards)
{
EABPopupTargetSelect *t = e_popup_target_new(&eabp->popup, EAB_POPUP_TARGET_SELECT, sizeof(*t));
guint32 mask = ~0;
int has_email = FALSE, i;
/* FIXME: duplicated in eab-menu.c */
t->book = book;
g_object_ref(book);
t->cards = cards;
for (i=0;ilen && !has_email;i++) {
EContact *contact = cards->pdata[i];
GList *email;
email = e_contact_get(E_CONTACT(contact), E_CONTACT_EMAIL);
if (email) {
has_email = TRUE;
g_list_foreach(email, (GFunc)g_free, NULL);
g_list_free(email);
}
}
if (cards->len == 1) {
if (e_contact_get (E_CONTACT(cards->pdata[0]), E_CONTACT_IS_LIST))
mask &= ~EAB_POPUP_LIST;
else
mask &= ~EAB_POPUP_CONTACT;
}
if (has_email)
mask &= ~EAB_POPUP_SELECT_EMAIL;
if (!readonly)
mask &= ~EAB_POPUP_SELECT_EDITABLE;
if (cards->len == 1)
mask &= ~EAB_POPUP_SELECT_ONE;
if (cards->len > 1)
mask &= ~EAB_POPUP_SELECT_MANY;
if (cards->len >= 1)
mask &= ~EAB_POPUP_SELECT_ANY;
t->target.mask = mask;
return t;
}
EABPopupTargetSource *
eab_popup_target_new_source(EABPopup *eabp, ESourceSelector *selector)
{
EABPopupTargetSource *t = e_popup_target_new(&eabp->popup, EAB_POPUP_TARGET_SOURCE, sizeof(*t));
guint32 mask = ~0;
const char *source_uri;
ESource *source;
/* TODO: this is duplicated for calendar and tasks too */
t->selector = selector;
g_object_ref(selector);
/* TODO: perhaps we need to copy this so it doesn't change during the lifecycle */
source = e_source_selector_peek_primary_selection(selector);
if (source)
mask &= ~EAB_POPUP_SOURCE_PRIMARY;
/* FIXME Gross hack, should have a property or something */
source_uri = e_source_peek_relative_uri(source);
if (source_uri && !strcmp("system", source_uri))
mask &= ~EAB_POPUP_SOURCE_SYSTEM;
else
mask &= ~EAB_POPUP_SOURCE_USER;
t->target.mask = mask;
return t;
}
#ifdef ADAPTED_TO_E_NAME_SELECTOR
EABPopupTargetSelectNames *
eab_popup_target_new_select_names(EABPopup *eabp, struct _ESelectNamesModel *model, int row)
{
EABPopupTargetSelectNames *t = e_popup_target_new(&eabp->popup, EAB_POPUP_TARGET_SELECT_NAMES, sizeof(*t));
/* TODO: this is sort of not very useful, maybe the popup which uses it doesn't
need to be pluggable */
t->model = model;
g_object_ref(model);
t->row = row;
return t;
}
#endif
/* ********************************************************************** */
/* Popup menu plugin handler */
/*