Added two missing files
authorSergio Villar Senin <svillar@igalia.com>
Thu, 5 Mar 2009 19:16:09 +0000 (19:16 +0000)
committerSergio Villar Senin <svillar@igalia.com>
Thu, 5 Mar 2009 19:16:09 +0000 (19:16 +0000)
pmo-trunk-r7805

src/gnome/modest-gnome-utils.c [new file with mode: 0644]
src/gnome/modest-gnome-utils.h [new file with mode: 0644]

diff --git a/src/gnome/modest-gnome-utils.c b/src/gnome/modest-gnome-utils.c
new file mode 100644 (file)
index 0000000..f936a8e
--- /dev/null
@@ -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 (file)
index 0000000..128dfc6
--- /dev/null
@@ -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__ */
+