]> git.0d.be Git - empathy.git/blob - libempathy/empathy-utils.h
Updated Galician translations
[empathy.git] / libempathy / empathy-utils.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * Copyright (C) 2003-2007 Imendio AB
4  * Copyright (C) 2007-2008 Collabora Ltd.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA  02110-1301  USA
20  *
21  * Authors: Richard Hult <richard@imendio.com>
22  *          Martyn Russell <martyn@imendio.com>
23  *          Xavier Claessens <xclaesse@gmail.com>
24  */
25
26 #ifndef __EMPATHY_UTILS_H__
27 #define __EMPATHY_UTILS_H__
28
29 #include <glib.h>
30 #include <glib-object.h>
31
32 #include <libxml/parser.h>
33 #include <libxml/tree.h>
34 #include <folks/folks.h>
35 #include <telepathy-glib/account-manager.h>
36
37 #include "empathy-contact.h"
38
39 #define EMPATHY_GET_PRIV(obj,type) ((type##Priv *) ((type *) obj)->priv)
40 #define EMP_STR_EMPTY(x) ((x) == NULL || (x)[0] == '\0')
41
42 G_BEGIN_DECLS
43
44 void         empathy_init                           (void);
45 /* Strings */
46 gchar *      empathy_substring                      (const gchar     *str,
47                                                     gint             start,
48                                                     gint             end);
49 gint         empathy_strcasecmp                     (const gchar     *s1,
50                                                     const gchar     *s2);
51 gint         empathy_strncasecmp                    (const gchar     *s1,
52                                                     const gchar     *s2,
53                                                     gsize            n);
54
55 /* XML */
56 gboolean     empathy_xml_validate                   (xmlDoc          *doc,
57                                                     const gchar     *dtd_filename);
58 xmlNodePtr   empathy_xml_node_get_child             (xmlNodePtr       node,
59                                                     const gchar     *child_name);
60 xmlChar *    empathy_xml_node_get_child_content     (xmlNodePtr       node,
61                                                     const gchar     *child_name);
62 xmlNodePtr   empathy_xml_node_find_child_prop_value (xmlNodePtr       node,
63                                                     const gchar     *prop_name,
64                                                     const gchar     *prop_value);
65
66 /* Others */
67 const gchar * empathy_presence_get_default_message  (TpConnectionPresenceType presence);
68 const gchar * empathy_presence_to_str               (TpConnectionPresenceType presence);
69 TpConnectionPresenceType empathy_presence_from_str  (const gchar     *str);
70 gchar *       empathy_file_lookup                   (const gchar     *filename,
71                                                      const gchar     *subdir);
72 gboolean     empathy_proxy_equal                    (gconstpointer    a,
73                                                      gconstpointer    b);
74 guint        empathy_proxy_hash                     (gconstpointer    key);
75 gboolean     empathy_check_available_state          (void);
76 gint        empathy_uint_compare                    (gconstpointer a,
77                                                      gconstpointer b);
78 const gchar * empathy_status_reason_get_default_message (TpConnectionStatusReason reason);
79
80 gchar *empathy_protocol_icon_name (const gchar *protocol);
81 const gchar *empathy_protocol_name_to_display_name (const gchar *proto_name);
82
83 #define EMPATHY_ARRAY_TYPE_OBJECT (empathy_type_dbus_ao ())
84 GType empathy_type_dbus_ao (void);
85
86 TpAccount * empathy_get_account_for_connection (TpConnection *connection);
87
88 gboolean empathy_account_manager_get_accounts_connected (gboolean *connecting);
89
90 void empathy_connect_new_account (TpAccount *account,
91     TpAccountManager *account_manager);
92
93 TpConnectionPresenceType empathy_folks_presence_type_to_tp (FolksPresenceType type);
94 gboolean empathy_folks_individual_contains_contact (FolksIndividual *individual);
95 EmpathyContact * empathy_contact_dup_from_folks_individual (FolksIndividual *individual);
96 TpChannelGroupChangeReason tp_chanel_group_change_reason_from_folks_groups_change_reason (FolksGroupsChangeReason reason);
97
98 G_END_DECLS
99
100 #endif /*  __EMPATHY_UTILS_H__ */