/usr/include/telepathy-1.0/telepathy-glib/connection.h is in libtelepathy-glib-dev 0.18.0-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 | /*
* connection.h - proxy for a Telepathy connection
*
* Copyright (C) 2007 Collabora Ltd. <http://www.collabora.co.uk/>
* Copyright (C) 2007 Nokia Corporation
*
* 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
*/
#ifndef __TP_CONNECTION_H__
#define __TP_CONNECTION_H__
#include <telepathy-glib/capabilities.h>
#include <telepathy-glib/defs.h>
#include <telepathy-glib/enums.h>
#include <telepathy-glib/handle.h>
#include <telepathy-glib/proxy.h>
G_BEGIN_DECLS
typedef struct _TpContactInfoFieldSpec TpContactInfoFieldSpec;
struct _TpContactInfoFieldSpec
{
/*<public>*/
gchar *name;
GStrv parameters;
TpContactInfoFieldFlags flags;
guint max;
/*<private>*/
gpointer priv;
};
#define TP_TYPE_CONTACT_INFO_FIELD_SPEC (tp_contact_info_field_spec_get_type ())
GType tp_contact_info_field_spec_get_type (void);
TpContactInfoFieldSpec *tp_contact_info_field_spec_copy (
const TpContactInfoFieldSpec *self);
void tp_contact_info_field_spec_free (TpContactInfoFieldSpec *self);
#define TP_TYPE_CONTACT_INFO_SPEC_LIST (tp_contact_info_spec_list_get_type ())
GType tp_contact_info_spec_list_get_type (void);
GList *tp_contact_info_spec_list_copy (GList *list);
void tp_contact_info_spec_list_free (GList *list);
typedef struct _TpContactInfoField TpContactInfoField;
struct _TpContactInfoField
{
/*<public>*/
gchar *field_name;
GStrv parameters;
GStrv field_value;
/*<private>*/
gpointer priv;
};
#define TP_TYPE_CONTACT_INFO_FIELD (tp_contact_info_field_get_type ())
GType tp_contact_info_field_get_type (void);
TpContactInfoField *tp_contact_info_field_new (const gchar *field_name,
GStrv parameters, GStrv field_value);
TpContactInfoField *tp_contact_info_field_copy (const TpContactInfoField *self);
void tp_contact_info_field_free (TpContactInfoField *self);
#define TP_TYPE_CONTACT_INFO_LIST (tp_contact_info_list_get_type ())
GType tp_contact_info_list_get_type (void);
GList *tp_contact_info_list_copy (GList *list);
void tp_contact_info_list_free (GList *list);
/* forward declaration, see contact.h for the rest */
typedef struct _TpContact TpContact;
/* forward declaration, see account.h for the rest */
typedef struct _TpAccount TpAccount;
typedef struct _TpConnection TpConnection;
typedef struct _TpConnectionPrivate TpConnectionPrivate;
typedef struct _TpConnectionClass TpConnectionClass;
struct _TpConnectionClass {
TpProxyClass parent_class;
/*<private>*/
GCallback _1;
GCallback _2;
GCallback _3;
GCallback _4;
};
struct _TpConnection {
/*<private>*/
TpProxy parent;
TpConnectionPrivate *priv;
};
GType tp_connection_get_type (void);
#define TP_ERRORS_DISCONNECTED (tp_errors_disconnected_quark ())
GQuark tp_errors_disconnected_quark (void);
#define TP_UNKNOWN_CONNECTION_STATUS ((TpConnectionStatus) -1)
/* TYPE MACROS */
#define TP_TYPE_CONNECTION \
(tp_connection_get_type ())
#define TP_CONNECTION(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj), TP_TYPE_CONNECTION, \
TpConnection))
#define TP_CONNECTION_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass), TP_TYPE_CONNECTION, \
TpConnectionClass))
#define TP_IS_CONNECTION(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj), TP_TYPE_CONNECTION))
#define TP_IS_CONNECTION_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE((klass), TP_TYPE_CONNECTION))
#define TP_CONNECTION_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TYPE_CONNECTION, \
TpConnectionClass))
TpConnection *tp_connection_new (TpDBusDaemon *dbus, const gchar *bus_name,
const gchar *object_path, GError **error) G_GNUC_WARN_UNUSED_RESULT;
TpAccount *tp_connection_get_account (TpConnection *self);
TpConnectionStatus tp_connection_get_status (TpConnection *self,
TpConnectionStatusReason *reason);
const gchar *tp_connection_get_connection_manager_name (TpConnection *self);
const gchar *tp_connection_get_protocol_name (TpConnection *self);
TpHandle tp_connection_get_self_handle (TpConnection *self);
TpContact *tp_connection_get_self_contact (TpConnection *self);
TpCapabilities * tp_connection_get_capabilities (TpConnection *self);
TpContactInfoFlags tp_connection_get_contact_info_flags (TpConnection *self);
GList *tp_connection_get_contact_info_supported_fields (TpConnection *self);
void tp_connection_set_contact_info_async (TpConnection *self,
GList *info, GAsyncReadyCallback callback,
gpointer user_data);
gboolean tp_connection_set_contact_info_finish (TpConnection *self,
GAsyncResult *result, GError **error);
#ifndef TP_DISABLE_DEPRECATED
gboolean tp_connection_is_ready (TpConnection *self)
_TP_GNUC_DEPRECATED_FOR (tp_proxy_is_prepared);
gboolean tp_connection_run_until_ready (TpConnection *self,
gboolean connect, GError **error,
GMainLoop **loop) _TP_GNUC_DEPRECATED;
typedef void (*TpConnectionWhenReadyCb) (TpConnection *connection,
const GError *error, gpointer user_data);
void tp_connection_call_when_ready (TpConnection *self,
TpConnectionWhenReadyCb callback,
gpointer user_data) _TP_GNUC_DEPRECATED_FOR (tp_proxy_prepare_async);
#endif
typedef void (*TpConnectionNameListCb) (const gchar * const *names,
gsize n, const gchar * const *cms, const gchar * const *protocols,
const GError *error, gpointer user_data,
GObject *weak_object);
void tp_list_connection_names (TpDBusDaemon *bus_daemon,
TpConnectionNameListCb callback,
gpointer user_data, GDestroyNotify destroy,
GObject *weak_object);
void tp_connection_init_known_interfaces (void);
gint tp_connection_presence_type_cmp_availability (TpConnectionPresenceType p1,
TpConnectionPresenceType p2);
gboolean tp_connection_parse_object_path (TpConnection *self, gchar **protocol,
gchar **cm_name);
const gchar *tp_connection_get_detailed_error (TpConnection *self,
const GHashTable **details);
void tp_connection_add_client_interest (TpConnection *self,
const gchar *interested_in);
void tp_connection_add_client_interest_by_id (TpConnection *self,
GQuark interested_in);
gboolean tp_connection_has_immortal_handles (TpConnection *self);
#define TP_CONNECTION_FEATURE_CORE \
(tp_connection_get_feature_quark_core ())
GQuark tp_connection_get_feature_quark_core (void) G_GNUC_CONST;
#define TP_CONNECTION_FEATURE_CONNECTED \
(tp_connection_get_feature_quark_connected ())
GQuark tp_connection_get_feature_quark_connected (void) G_GNUC_CONST;
#define TP_CONNECTION_FEATURE_CAPABILITIES \
(tp_connection_get_feature_quark_capabilities ())
GQuark tp_connection_get_feature_quark_capabilities (void) G_GNUC_CONST;
#define TP_CONNECTION_FEATURE_CONTACT_INFO \
(tp_connection_get_feature_quark_contact_info ())
GQuark tp_connection_get_feature_quark_contact_info (void) G_GNUC_CONST;
/* connection-handles.c */
typedef void (*TpConnectionHoldHandlesCb) (TpConnection *connection,
TpHandleType handle_type, guint n_handles, const TpHandle *handles,
const GError *error, gpointer user_data, GObject *weak_object);
void tp_connection_hold_handles (TpConnection *self, gint timeout_ms,
TpHandleType handle_type, guint n_handles, const TpHandle *handles,
TpConnectionHoldHandlesCb callback,
gpointer user_data, GDestroyNotify destroy, GObject *weak_object);
typedef void (*TpConnectionRequestHandlesCb) (TpConnection *connection,
TpHandleType handle_type,
guint n_handles, const TpHandle *handles, const gchar * const *ids,
const GError *error, gpointer user_data, GObject *weak_object);
void tp_connection_request_handles (TpConnection *self, gint timeout_ms,
TpHandleType handle_type, const gchar * const *ids,
TpConnectionRequestHandlesCb callback,
gpointer user_data, GDestroyNotify destroy, GObject *weak_object);
void tp_connection_unref_handles (TpConnection *self,
TpHandleType handle_type, guint n_handles, const TpHandle *handles);
/* connection-avatars.c */
typedef struct _TpAvatarRequirements TpAvatarRequirements;
struct _TpAvatarRequirements
{
/*<public>*/
GStrv supported_mime_types;
guint minimum_width;
guint minimum_height;
guint recommended_width;
guint recommended_height;
guint maximum_width;
guint maximum_height;
guint maximum_bytes;
/*<private>*/
gpointer _1;
gpointer _2;
gpointer _3;
gpointer _4;
};
#define TP_TYPE_AVATAR_REQUIREMENTS (tp_avatar_requirements_get_type ())
GType tp_avatar_requirements_get_type (void);
TpAvatarRequirements * tp_avatar_requirements_new (GStrv supported_mime_types,
guint minimum_width,
guint minimum_height,
guint recommended_width,
guint recommended_height,
guint maximum_width,
guint maximum_height,
guint maximum_bytes);
TpAvatarRequirements * tp_avatar_requirements_copy (
const TpAvatarRequirements *self);
void tp_avatar_requirements_destroy (TpAvatarRequirements *self);
#define TP_CONNECTION_FEATURE_AVATAR_REQUIREMENTS \
(tp_connection_get_feature_quark_avatar_requirements ())
GQuark tp_connection_get_feature_quark_avatar_requirements (void) G_GNUC_CONST;
TpAvatarRequirements * tp_connection_get_avatar_requirements (
TpConnection *self);
#define TP_CONNECTION_FEATURE_ALIASING \
(tp_connection_get_feature_quark_aliasing ())
GQuark tp_connection_get_feature_quark_aliasing (void) G_GNUC_CONST;
gboolean tp_connection_can_set_contact_alias (TpConnection *self);
#define TP_CONNECTION_FEATURE_BALANCE \
(tp_connection_get_feature_quark_balance ())
GQuark tp_connection_get_feature_quark_balance (void) G_GNUC_CONST;
gboolean tp_connection_get_balance (TpConnection *self,
gint *balance, guint *scale, const gchar **currency);
const gchar * tp_connection_get_balance_uri (TpConnection *self);
void tp_connection_disconnect_async (TpConnection *self,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean tp_connection_disconnect_finish (TpConnection *self,
GAsyncResult *result,
GError **error);
G_END_DECLS
#include <telepathy-glib/_gen/tp-cli-connection.h>
G_BEGIN_DECLS
/* connection-handles.c again - this has to come after the auto-generated
* stuff because it uses an auto-generated typedef */
void tp_connection_get_contact_attributes (TpConnection *self,
gint timeout_ms, guint n_handles, const TpHandle *handles,
const gchar * const *interfaces, gboolean hold,
tp_cli_connection_interface_contacts_callback_for_get_contact_attributes callback,
gpointer user_data, GDestroyNotify destroy, GObject *weak_object);
void tp_connection_get_contact_list_attributes (TpConnection *self,
gint timeout_ms, const gchar * const *interfaces, gboolean hold,
tp_cli_connection_interface_contacts_callback_for_get_contact_attributes callback,
gpointer user_data, GDestroyNotify destroy, GObject *weak_object);
GBinding *tp_connection_bind_connection_status_to_property (TpConnection *self,
gpointer target, const char *target_property, gboolean invert);
G_END_DECLS
#endif
|