From d0bc02e1fc00cb2bcc51942a3f4832384e9539d8 Mon Sep 17 00:00:00 2001 From: Sergio Villar Senin Date: Thu, 5 Mar 2009 19:16:09 +0000 Subject: [PATCH] Added two missing files pmo-trunk-r7805 --- src/gnome/modest-gnome-utils.c | 61 ++++++++++++++++++++++++++++++++++++++++ src/gnome/modest-gnome-utils.h | 42 +++++++++++++++++++++++++++ 2 files changed, 103 insertions(+) create mode 100644 src/gnome/modest-gnome-utils.c create mode 100644 src/gnome/modest-gnome-utils.h diff --git a/src/gnome/modest-gnome-utils.c b/src/gnome/modest-gnome-utils.c new file mode 100644 index 0000000..f936a8e --- /dev/null +++ b/src/gnome/modest-gnome-utils.c @@ -0,0 +1,61 @@ +/* Copyright (c) 2006, Nokia Corporation + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of the Nokia Corporation nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER + * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include "modest-runtime.h" + +ModestPairList * +modest_gnome_utils_get_protocols_pair_list (const gchar *tag) +{ + GSList *protos, *list, *iter; + ModestProtocolRegistry *registry; + + registry = modest_runtime_get_protocol_registry (); + protos = modest_protocol_registry_get_by_tag (registry, tag); + + /* This should never happen */ + g_return_val_if_fail (protos, NULL); + + list = NULL; + iter = protos; + while (iter) { + ModestProtocol *proto; + ModestPair *pair; + + proto = MODEST_PROTOCOL (iter->data); + pair = modest_pair_new (modest_protocol_get_type_id (proto), + modest_protocol_get_display_name (proto), + FALSE); + list = g_slist_append (list, pair); + + iter = g_slist_next (iter); + } + g_slist_free (protos); + + return (ModestPairList *) list; +} diff --git a/src/gnome/modest-gnome-utils.h b/src/gnome/modest-gnome-utils.h new file mode 100644 index 0000000..128dfc6 --- /dev/null +++ b/src/gnome/modest-gnome-utils.h @@ -0,0 +1,42 @@ +/* Copyright (c) 2006, Nokia Corporation + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * * Neither the name of the Nokia Corporation nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER + * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, + * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef __MODEST_GNOME_UTILS_H__ +#define __MODEST_GNOME_UTILS_H__ + +#include "modest-pair.h" + +G_BEGIN_DECLS + +ModestPairList *modest_gnome_utils_get_protocols_pair_list (const gchar *tag); + +G_END_DECLS + +#endif /* __MODEST_GNOME_UTILS_H__ */ + -- 1.7.9.5