diff options
author | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-04-14 12:42:29 +0800 |
---|---|---|
committer | Danielle Madeley <danielle.madeley@collabora.co.uk> | 2011-10-21 06:40:24 +0800 |
commit | e6c2a6706880dad768b5a442d350e6c0d8e0f975 (patch) | |
tree | 884fcc5c8ac89c9375ac42e1b18b39ad8464874d /libempathy/empathy-contactinfo-utils.h | |
parent | d4b219993118e76fdf25a609839e1c334e26182f (diff) | |
download | gsoc2013-empathy-e6c2a6706880dad768b5a442d350e6c0d8e0f975.tar gsoc2013-empathy-e6c2a6706880dad768b5a442d350e6c0d8e0f975.tar.gz gsoc2013-empathy-e6c2a6706880dad768b5a442d350e6c0d8e0f975.tar.bz2 gsoc2013-empathy-e6c2a6706880dad768b5a442d350e6c0d8e0f975.tar.lz gsoc2013-empathy-e6c2a6706880dad768b5a442d350e6c0d8e0f975.tar.xz gsoc2013-empathy-e6c2a6706880dad768b5a442d350e6c0d8e0f975.tar.zst gsoc2013-empathy-e6c2a6706880dad768b5a442d350e6c0d8e0f975.zip |
Abstract common contactinfo code into empathy-contactinfo-utils
This handles things like sorting fields and converting field names to human
readable names.
Diffstat (limited to 'libempathy/empathy-contactinfo-utils.h')
-rw-r--r-- | libempathy/empathy-contactinfo-utils.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/libempathy/empathy-contactinfo-utils.h b/libempathy/empathy-contactinfo-utils.h new file mode 100644 index 000000000..059085c84 --- /dev/null +++ b/libempathy/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__ */ |