/usr/include/evolution-data-server/libebook/e-book.h is in libebook1.2-dev 3.18.5-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 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 | /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* The Evolution addressbook client object.
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
* 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.
*
* 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, see <http://www.gnu.org/licenses/>.
*
* Authors: Chris Toshok (toshok@ximian.com)
*/
#if !defined (__LIBEBOOK_H_INSIDE__) && !defined (LIBEBOOK_COMPILATION)
#error "Only <libebook/libebook.h> should be included directly."
#endif
#ifndef EDS_DISABLE_DEPRECATED
/* Do not generate bindings. */
#ifndef __GI_SCANNER__
#ifndef __E_BOOK_H__
#define __E_BOOK_H__
#include <libedataserver/libedataserver.h>
#include <libebook-contacts/libebook-contacts.h>
#include <libebook/e-book-view.h>
#include <libebook/e-book-types.h>
#define E_TYPE_BOOK (e_book_get_type ())
#define E_BOOK(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_TYPE_BOOK, EBook))
#define E_BOOK_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), E_TYPE_BOOK, EBookClass))
#define E_IS_BOOK(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TYPE_BOOK))
#define E_IS_BOOK_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_TYPE_BOOK))
#define E_BOOK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), E_TYPE_BOOK, EBookClass))
G_BEGIN_DECLS
typedef struct _EBook EBook;
typedef struct _EBookClass EBookClass;
typedef struct _EBookPrivate EBookPrivate;
typedef void (*EBookCallback) (EBook *book, EBookStatus status, gpointer closure);
/**
* EBookAsyncCallback:
* @book: an #EBook
* @error: a #GError or %NULL
* @closure: the callback closure
*
* Since: 2.32
*
* Deprecated: 3.2: Use #EBookClient instead
**/
typedef void (*EBookAsyncCallback) (EBook *book, const GError *error, gpointer closure);
/**
* EBookOpenProgressCallback:
* @book: an #EBook
* @status_message: a status message
* @percent: percent complete (0 - 100)
* @closure: the callback closure
*
* Since: 2.32
*
* Deprecated: 3.2: Use #EBookClient instead
**/
typedef void (*EBookOpenProgressCallback) (EBook *book,
const gchar *status_message,
gshort percent,
gpointer closure);
typedef void (*EBookIdCallback) (EBook *book, EBookStatus status, const gchar *id, gpointer closure);
typedef void (*EBookContactCallback) (EBook *book, EBookStatus status, EContact *contact, gpointer closure);
typedef void (*EBookListCallback) (EBook *book, EBookStatus status, GList *list, gpointer closure);
typedef void (*EBookBookViewCallback) (EBook *book, EBookStatus status, EBookView *book_view, gpointer closure);
typedef void (*EBookEListCallback) (EBook *book, EBookStatus status, EList *list, gpointer closure);
/**
* EBookIdAsyncCallback:
* @book: an #EBook
* @error: a #GError or %NULL
* @id: a contact ID
* @closure: the callback closure
*
* Since: 2.32
*
* Deprecated: 3.2: Use #EBookClient instead
**/
typedef void (*EBookIdAsyncCallback) (EBook *book, const GError *error, const gchar *id, gpointer closure);
/**
* EBookContactAsyncCallback:
* @book: an #EBook
* @error: a #GError or %NULL
* @contact: an #EContact or %NULL
* @closure: the callback closure
*
* Since: 2.32
*
* Deprecated: 3.2: Use #EBookClient instead
**/
typedef void (*EBookContactAsyncCallback) (EBook *book, const GError *error, EContact *contact, gpointer closure);
/**
* EBookListAsyncCallback:
* @book: an #EBook
* @error: a #GError or %NULL
* @list: a #GList of results
* @closure: the callback closure
*
* Since: 2.32
*
* Deprecated: 3.2: Use #EBookClient instead
**/
typedef void (*EBookListAsyncCallback) (EBook *book, const GError *error, GList *list, gpointer closure);
/**
* EBookBookViewAsyncCallback:
* @book: an #EBook
* @error: a #GError or %NULL
* @book_view: an #EBookView
* @closure: the callback closure
*
* Since: 2.32
*
* Deprecated: 3.2: Use #EBookClient instead
**/
typedef void (*EBookBookViewAsyncCallback) (EBook *book, const GError *error, EBookView *book_view, gpointer closure);
/**
* EBookEListAsyncCallback:
* @book: an #EBook
* @error: a #GError or %NULL
* @list: an #EList of results
* @closure: the callback closure
*
* Since: 2.32
*
* Deprecated: 3.2: Use #EBookClient instead
**/
typedef void (*EBookEListAsyncCallback) (EBook *book, const GError *error, EList *list, gpointer closure);
/**
* EBook:
*
* The deprecated API for accessing the addressbook
*
* Since: 2.32
*
* Deprecated: 3.2: Use #EBookClient instead
*/
struct _EBook {
/*< private >*/
GObject parent;
EBookPrivate *priv;
};
/**
* EBookClass:
* @writable_status: deprecated
* @connection_status: deprecated
* @backend_died: deprecated
*
* Class structure for the deprecated API for accessing the addressbook
*
* Since: 2.32
*
* Deprecated: 3.2: Use #EBookClient instead
*/
struct _EBookClass {
/*< private >*/
GObjectClass parent;
/*< public >*/
/*
* Signals.
*/
void (* writable_status) (EBook *book, gboolean writable);
void (* connection_status) (EBook *book, gboolean connected);
void (* backend_died) (EBook *book);
/*< private >*/
/* Padding for future expansion */
void (*_ebook_reserved0) (void);
void (*_ebook_reserved1) (void);
void (*_ebook_reserved2) (void);
void (*_ebook_reserved3) (void);
void (*_ebook_reserved4) (void);
};
/* Creating a new addressbook. */
EBook *e_book_new (ESource *source, GError **error);
/* loading addressbooks */
gboolean e_book_open (EBook *book,
gboolean only_if_exists,
GError **error);
gboolean e_book_async_open (EBook *book,
gboolean only_if_exists,
EBookCallback open_response,
gpointer closure);
gboolean e_book_open_async (EBook *book,
gboolean only_if_exists,
EBookAsyncCallback open_response,
gpointer closure);
gboolean e_book_remove (EBook *book,
GError **error);
gboolean e_book_async_remove (EBook *book,
EBookCallback cb,
gpointer closure);
gboolean e_book_remove_async (EBook *book,
EBookAsyncCallback cb,
gpointer closure);
gboolean e_book_get_required_fields (EBook *book,
GList **fields,
GError **error);
gboolean e_book_async_get_required_fields (EBook *book,
EBookEListCallback cb,
gpointer closure);
gboolean e_book_get_required_fields_async (EBook *book,
EBookEListAsyncCallback cb,
gpointer closure);
gboolean e_book_get_supported_fields (EBook *book,
GList **fields,
GError **error);
gboolean e_book_async_get_supported_fields (EBook *book,
EBookEListCallback cb,
gpointer closure);
gboolean e_book_get_supported_fields_async (EBook *book,
EBookEListAsyncCallback cb,
gpointer closure);
gboolean e_book_get_supported_auth_methods (EBook *book,
GList **auth_methods,
GError **error);
gboolean e_book_async_get_supported_auth_methods (EBook *book,
EBookEListCallback cb,
gpointer closure);
gboolean e_book_get_supported_auth_methods_async (EBook *book,
EBookEListAsyncCallback cb,
gpointer closure);
/* Fetching contacts. */
gboolean e_book_get_contact (EBook *book,
const gchar *id,
EContact **contact,
GError **error);
gboolean e_book_async_get_contact (EBook *book,
const gchar *id,
EBookContactCallback cb,
gpointer closure);
gboolean e_book_get_contact_async (EBook *book,
const gchar *id,
EBookContactAsyncCallback cb,
gpointer closure);
/* Deleting contacts. */
gboolean e_book_remove_contact (EBook *book,
const gchar *id,
GError **error);
gboolean e_book_async_remove_contact (EBook *book,
EContact *contact,
EBookCallback cb,
gpointer closure);
gboolean e_book_async_remove_contact_by_id (EBook *book,
const gchar *id,
EBookCallback cb,
gpointer closure);
gboolean e_book_remove_contact_async (EBook *book,
EContact *contact,
EBookAsyncCallback cb,
gpointer closure);
gboolean e_book_remove_contact_by_id_async (EBook *book,
const gchar *id,
EBookAsyncCallback cb,
gpointer closure);
gboolean e_book_remove_contacts (EBook *book,
GList *ids,
GError **error);
gboolean e_book_async_remove_contacts (EBook *book,
GList *ids,
EBookCallback cb,
gpointer closure);
gboolean e_book_remove_contacts_async (EBook *book,
GList *ids,
EBookAsyncCallback cb,
gpointer closure);
/* Adding contacts. */
gboolean e_book_add_contact (EBook *book,
EContact *contact,
GError **error);
gboolean e_book_async_add_contact (EBook *book,
EContact *contact,
EBookIdCallback cb,
gpointer closure);
gboolean e_book_add_contact_async (EBook *book,
EContact *contact,
EBookIdAsyncCallback cb,
gpointer closure);
/* Modifying contacts. */
gboolean e_book_commit_contact (EBook *book,
EContact *contact,
GError **error);
gboolean e_book_async_commit_contact (EBook *book,
EContact *contact,
EBookCallback cb,
gpointer closure);
gboolean e_book_commit_contact_async (EBook *book,
EContact *contact,
EBookAsyncCallback cb,
gpointer closure);
/* Returns a live view of a query. */
gboolean e_book_get_book_view (EBook *book,
EBookQuery *query,
GList *requested_fields,
gint max_results,
EBookView **book_view,
GError **error);
gboolean e_book_async_get_book_view (EBook *book,
EBookQuery *query,
GList *requested_fields,
gint max_results,
EBookBookViewCallback cb,
gpointer closure);
gboolean e_book_get_book_view_async (EBook *book,
EBookQuery *query,
GList *requested_fields,
gint max_results,
EBookBookViewAsyncCallback cb,
gpointer closure);
/* Returns a static snapshot of a query. */
gboolean e_book_get_contacts (EBook *book,
EBookQuery *query,
GList **contacts,
GError **error);
gboolean e_book_async_get_contacts (EBook *book,
EBookQuery *query,
EBookListCallback cb,
gpointer closure);
gboolean e_book_get_contacts_async (EBook *book,
EBookQuery *query,
EBookListAsyncCallback cb,
gpointer closure);
/* Needed for syncing */
gboolean e_book_get_changes (EBook *book,
const gchar *changeid,
GList **changes,
GError **error);
gboolean e_book_async_get_changes (EBook *book,
const gchar *changeid,
EBookListCallback cb,
gpointer closure);
gboolean e_book_get_changes_async (EBook *book,
const gchar *changeid,
EBookListAsyncCallback cb,
gpointer closure);
void e_book_free_change_list (GList *change_list);
ESource *e_book_get_source (EBook *book);
const gchar *e_book_get_static_capabilities (EBook *book,
GError **error);
gboolean e_book_check_static_capability (EBook *book,
const gchar *cap);
gboolean e_book_is_opened (EBook *book);
gboolean e_book_is_writable (EBook *book);
gboolean e_book_is_online (EBook *book);
/* Cancel a pending operation. */
gboolean e_book_cancel (EBook *book,
GError **error);
gboolean e_book_cancel_async_op (EBook *book,
GError **error);
/* Identity */
gboolean e_book_get_self (ESourceRegistry *registry, EContact **contact, EBook **book, GError **error);
gboolean e_book_set_self (EBook *book, EContact *contact, GError **error);
gboolean e_book_is_self (EContact *contact);
GType e_book_get_type (void);
G_END_DECLS
#endif /* __E_BOOK_H__ */
#endif /* __GI_SCANNER__ */
#endif /* EDS_DISABLE_DEPRECATED */
|