~ubuntu-branches/ubuntu/quantal/evolution-data-server/quantal

« back to all changes in this revision

Viewing changes to calendar/libecal/e-cal-client-view.h

  • Committer: Package Import Robot
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2012-07-03 22:41:23 UTC
  • mfrom: (1.1.100)
  • Revision ID: package-import@ubuntu.com-20120703224123-90dydkyfyvff8s0s
Tags: 3.5.3.1-0ubuntu1
* New upstream release 3.5.3.1.
* debian/control:
  - Drop libgconf2-dev from Build-Depends.
  - Bump versions for glib, goa, and libsoup in Build-Depends.
  - Add a Build-Depends on libgcr-3-dev (>= 3.4)
  - Rename packages following upstream SONAME changes.
  - Add Depends on libgnome-keyring-dev to libedataserver1.2-dev.
* debian/rules:
  - Update mkshlibs arguments for libcamel-1.2-38 instead of -33; as it was
    renamed in control due to the soname change.
  - Strip out -Bsymbolic-functions from LDFLAGS.
* Renamed install files in debian/:
  - libcamel-1.2-33.install => libcamel-1.2-38.install
  - libebackend-1.2-2.install => libebackend-1.2-4.install
  - libebook-1.2-13.install => libebook-1.2-17.install
  - libecal-1.2-11.install => libecal-1.2-15.install
  - libedata-book-1.2-13.install => libedata-book-1.2-15.install
  - libedata-cal-1.2-15.install => libedata-cal-1.2-18.install
  - libedataserver-1.2-16.install => libedataserver-1.2-17.install
  - libedataserverui-3.0-1.install => libedataserverui-3.0-4.install
* debian/patches/google_tests_fpic.patch: build tests with -fPIC; otherwise
  build fails.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
19
 */
20
20
 
 
21
#if !defined (__LIBECAL_H_INSIDE__) && !defined (LIBECAL_COMPILATION)
 
22
#error "Only <libecal/libecal.h> should be included directly."
 
23
#endif
 
24
 
21
25
#ifndef E_CAL_CLIENT_VIEW_H
22
26
#define E_CAL_CLIENT_VIEW_H
23
27
 
38
42
struct _ECalClient;
39
43
 
40
44
/**
 
45
 * ECalClientViewFlags:
 
46
 * @E_CAL_CLIENT_VIEW_FLAGS_NONE:
 
47
 *   Symbolic value for no flags
 
48
 * @E_CAL_CLIENT_VIEW_FLAGS_NOTIFY_INITIAL:
 
49
 *   If this flag is set then all objects matching the view's query will
 
50
 *   be sent as notifications when starting the view, otherwise only future
 
51
 *   changes will be reported.  The default for a #ECalClientView is %TRUE.
 
52
 *
 
53
 * Flags that control the behaviour of an #ECalClientView.
 
54
 *
 
55
 * Since: 3.6
 
56
 */
 
57
typedef enum {
 
58
        E_CAL_CLIENT_VIEW_FLAGS_NONE           = 0,
 
59
        E_CAL_CLIENT_VIEW_FLAGS_NOTIFY_INITIAL = (1 << 0)
 
60
} ECalClientViewFlags;
 
61
 
 
62
/**
41
63
 * ECalClientView:
42
64
 *
43
65
 * Contains only private data that should be read and manipulated using the
70
92
void                    e_cal_client_view_set_fields_of_interest (ECalClientView *view, const GSList *fields_of_interest, GError **error);
71
93
void                    e_cal_client_view_start                 (ECalClientView *view, GError **error);
72
94
void                    e_cal_client_view_stop                  (ECalClientView *view, GError **error);
 
95
void                    e_cal_client_view_set_flags             (ECalClientView *view, ECalClientViewFlags flags, GError **error);
73
96
 
74
97
G_END_DECLS
75
98