aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/calendar.h
blob: a59fec7544b78c71d729b49f370279240b9a4f3b (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
#ifndef CALENDAR_H
#define CALENDAR_H

#include "calobj.h"

BEGIN_GNOME_DECLS

typedef struct {
    /* This calendar's title */
    char    *title;

    /* backing store for this calendar object */
    char    *filename;

    /* The list of events;  todo's and journal entries */
    GList   *events;
    GList   *todo;
    GList   *journal;

    /* Events that have a recurrence field are also present here */
    GList   *recur;

    /* Time at which the calendar was created */
    time_t  created;

    /* If the calendar was last modified */
    int     modified;
    void    *temp;
} Calendar;

Calendar *calendar_new                  (char *title);
void      calendar_load                 (Calendar *cal, char *fname);
void      calendar_add_object           (Calendar *cal, iCalObject *obj);
void      calendar_remove_object        (Calendar *cal, iCalObject *obj);
void      calendar_destroy              (Calendar *cal);
GList    *calendar_get_events_in_range  (Calendar *cal, time_t start, time_t end, GCompareFunc sort_func);
GList    *calendar_get_objects_in_range (GList *objects, time_t start, time_t end, GCompareFunc sort_func);
GList    *calendar_get_todo_in_range    (Calendar *cal, time_t start, time_t end, GCompareFunc sort_func);
GList    *calendar_get_journal_in_range (Calendar *cal, time_t start, time_t end, GCompareFunc sort_func);
gint      calendar_compare_by_dtstart   (gpointer a, gpointer b);

END_GNOME_DECLS

#endif