aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contactinfo-utils.h
diff options
context:
space:
mode:
authorDanielle Madeley <danielle.madeley@collabora.co.uk>2011-09-08 11:11:22 +0800
committerDanielle Madeley <danielle.madeley@collabora.co.uk>2011-10-21 06:42:21 +0800
commitcf23dd409cc36a8f692bf0db4f28e505da8633f8 (patch)
tree5d29fe7b658fe3c39a76a76056c4432303d6bf13 /libempathy-gtk/empathy-contactinfo-utils.h
parent06e665213df9b95a74f317da82a8f9537e2e3c87 (diff)
downloadgsoc2013-empathy-cf23dd409cc36a8f692bf0db4f28e505da8633f8.tar
gsoc2013-empathy-cf23dd409cc36a8f692bf0db4f28e505da8633f8.tar.gz
gsoc2013-empathy-cf23dd409cc36a8f692bf0db4f28e505da8633f8.tar.bz2
gsoc2013-empathy-cf23dd409cc36a8f692bf0db4f28e505da8633f8.tar.lz
gsoc2013-empathy-cf23dd409cc36a8f692bf0db4f28e505da8633f8.tar.xz
gsoc2013-empathy-cf23dd409cc36a8f692bf0db4f28e505da8633f8.tar.zst
gsoc2013-empathy-cf23dd409cc36a8f692bf0db4f28e505da8633f8.zip
Move empathy-contactinfo-utils to libempathy-gtk
Why do we still have this annoying split? Rebasing this work will pull in a dependency on empathy-string-parser, which is part of libempathy-gtk. Hence the move.
Diffstat (limited to 'libempathy-gtk/empathy-contactinfo-utils.h')
-rw-r--r--libempathy-gtk/empathy-contactinfo-utils.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/libempathy-gtk/empathy-contactinfo-utils.h b/libempathy-gtk/empathy-contactinfo-utils.h
new file mode 100644
index 000000000..059085c84
--- /dev/null
+++ b/libempathy-gtk/empathy-contactinfo-utils.h
@@ -0,0 +1,41 @@
+/*
+ * Copyright (C) 2011 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: Danielle Madeley <danielle.madeley@collabora.co.uk>
+ */
+
+#ifndef __EMPATHY_CONTACTINFO_UTILS_H__
+#define __EMPATHY_CONTACTINFO_UTILS_H__
+
+#include <glib.h>
+#include <telepathy-glib/connection.h>
+
+G_BEGIN_DECLS
+
+gboolean empathy_contact_info_lookup_field (const gchar *field_name,
+ const gchar **title, gboolean *linkify);
+char *empathy_contact_info_field_label (const char *field_name,
+ GStrv parameters);
+
+gint empathy_contact_info_field_cmp (TpContactInfoField *field1,
+ TpContactInfoField *field2);
+gint empathy_contact_info_field_spec_cmp (TpContactInfoFieldSpec *spec1,
+ TpContactInfoFieldSpec *spec2);
+
+G_END_DECLS
+
+#endif /* __EMPATHY_UTILS_H__ */