aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook/e-book-types.h
blob: 4ca69bd5167505ef698b656332b7d8d6e0c76ca2 (plain) (blame)
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * A client-side GObject which exposes the
 * Evolution:BookListener interface.
 *
 * Author:
 *   Nat Friedman (nat@ximian.com)
 *
 * Copyright 2000, Ximian, Inc.
 */

#ifndef __E_BOOK_TYPES_H__
#define __E_BOOK_TYPES_H__

#include <glib.h>

G_BEGIN_DECLS

#define E_BOOK_ERROR e_book_error_quark()

GQuark e_book_error_quark (void) G_GNUC_CONST;

typedef enum {
    E_BOOK_ERROR_OK,
    E_BOOK_ERROR_INVALID_ARG,
    E_BOOK_ERROR_BUSY,
    E_BOOK_ERROR_REPOSITORY_OFFLINE,
    E_BOOK_ERROR_NO_SUCH_BOOK,
    E_BOOK_ERROR_URI_NOT_LOADED,
    E_BOOK_ERROR_URI_ALREADY_LOADED,
    E_BOOK_ERROR_PERMISSION_DENIED,
    E_BOOK_ERROR_CONTACT_NOT_FOUND,
    E_BOOK_ERROR_CONTACT_ID_ALREADY_EXISTS,
    E_BOOK_ERROR_PROTOCOL_NOT_SUPPORTED,
    E_BOOK_ERROR_CANCELLED,
    E_BOOK_ERROR_COULD_NOT_CANCEL,
    E_BOOK_ERROR_AUTHENTICATION_FAILED,
    E_BOOK_ERROR_AUTHENTICATION_REQUIRED,
    E_BOOK_ERROR_TLS_NOT_AVAILABLE,
    E_BOOK_ERROR_CORBA_EXCEPTION,
    E_BOOK_ERROR_OTHER_ERROR
} EBookStatus;


typedef enum {
    E_BOOK_VIEW_STATUS_OK,
    E_BOOK_VIEW_STATUS_TIME_LIMIT_EXCEEDED,
    E_BOOK_VIEW_STATUS_SIZE_LIMIT_EXCEEDED,
    E_BOOK_VIEW_ERROR_INVALID_QUERY,
    E_BOOK_VIEW_ERROR_QUERY_REFUSED,
    E_BOOK_VIEW_ERROR_OTHER_ERROR
} EBookViewStatus;

typedef enum {
    E_BOOK_CHANGE_CARD_ADDED,
    E_BOOK_CHANGE_CARD_DELETED,
    E_BOOK_CHANGE_CARD_MODIFIED
} EBookChangeType;

typedef struct {
    EBookChangeType  change_type;
    char            *vcard; /* used in the ADDED/MODIFIED case */
    char            *id;    /* used in the DELETED case */
} EBookChange;

G_END_DECLS

#endif /* ! __E_BOOK_TYPES_H__ */