aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/pas/pas-backend-summary.h
blob: 8feac7733984b1a23b2d65912f27fa9c781a5e8c (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* 
 * pas-backend-summary.h
 * Copyright 2000, 2001, Ximian, Inc.
 *
 * Authors:
 *   Chris Toshok <toshok@ximian.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License, version 2, 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */

#ifndef __PAS_BACKEND_SUMMARY_H__
#define __PAS_BACKEND_SUMMARY_H__

#include <gtk/gtk.h>

typedef struct _PASBackendSummaryPrivate PASBackendSummaryPrivate;

typedef struct {
    GtkObject parent_object;
    PASBackendSummaryPrivate *priv;
} PASBackendSummary;

typedef struct {
    GtkObjectClass parent_class;
} PASBackendSummaryClass;

PASBackendSummary* pas_backend_summary_new              (const char *db_path, int flush_timeout_millis);
GtkType            pas_backend_summary_get_type         (void);

/* returns FALSE if the load fails for any reason (including that the
   summary is out of date), TRUE if it succeeds */
gboolean           pas_backend_summary_load             (PASBackendSummary *summary);
/* returns FALSE if the save fails, TRUE if it succeeds (or isn't required due to no changes) */
gboolean           pas_backend_summary_save             (PASBackendSummary *summary);

void               pas_backend_summary_add_card         (PASBackendSummary *summary, const char *vcard);
void               pas_backend_summary_remove_card      (PASBackendSummary *summary, const char *id);

void               pas_backend_summary_touch            (PASBackendSummary *summary);

gboolean           pas_backend_summary_is_summary_query (PASBackendSummary *summary, const char *query);
GPtrArray*         pas_backend_summary_search           (PASBackendSummary *summary, const char *query);

#define PAS_BACKEND_SUMMARY_TYPE        (pas_backend_summary_get_type ())
#define PAS_BACKEND_SUMMARY(o)          (GTK_CHECK_CAST ((o), PAS_BACKEND_SUMMARY_TYPE, PASBackendSummary))
#define PAS_BACKEND_SUMMARY_CLASS(k)    (GTK_CHECK_CLASS_CAST((k), PAS_BACKEND_TYPE, PASBackendSummaryClass))
#define PAS_IS_BACKEND_SUMMARY(o)       (GTK_CHECK_TYPE ((o), PAS_BACKEND_SUMMARY_TYPE))
#define PAS_IS_BACKEND_SUMMARY_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), PAS_BACKEND_SUMMARY_TYPE))

#endif /* __PAS_BACKEND_SUMMARY_H__ */