aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-calendar-view.h
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@src.gnome.org>2003-08-20 18:17:18 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-08-20 18:17:18 +0800
commit4ad72d24ee36553c85c1bbf21b22c46f77c2ac82 (patch)
tree048f40b08f5a0e42df0f2a5567158174b228bdea /calendar/gui/e-calendar-view.h
parentba861603f446ca0fd9b4cf72f0f8357c306ce953 (diff)
downloadgsoc2013-evolution-4ad72d24ee36553c85c1bbf21b22c46f77c2ac82.tar
gsoc2013-evolution-4ad72d24ee36553c85c1bbf21b22c46f77c2ac82.tar.gz
gsoc2013-evolution-4ad72d24ee36553c85c1bbf21b22c46f77c2ac82.tar.bz2
gsoc2013-evolution-4ad72d24ee36553c85c1bbf21b22c46f77c2ac82.tar.lz
gsoc2013-evolution-4ad72d24ee36553c85c1bbf21b22c46f77c2ac82.tar.xz
gsoc2013-evolution-4ad72d24ee36553c85c1bbf21b22c46f77c2ac82.tar.zst
gsoc2013-evolution-4ad72d24ee36553c85c1bbf21b22c46f77c2ac82.zip
Merged from calendar-views-with-model branch
svn path=/trunk/; revision=22308
Diffstat (limited to 'calendar/gui/e-calendar-view.h')
-rw-r--r--calendar/gui/e-calendar-view.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/calendar/gui/e-calendar-view.h b/calendar/gui/e-calendar-view.h
index b957ad0e2d..ea7c11a00d 100644
--- a/calendar/gui/e-calendar-view.h
+++ b/calendar/gui/e-calendar-view.h
@@ -25,6 +25,7 @@
#include <cal-client/cal-client.h>
#include <gtk/gtktable.h>
+#include "e-cal-model.h"
#include "gnome-cal.h"
G_BEGIN_DECLS
@@ -49,8 +50,8 @@ typedef enum {
#define E_CAL_VIEW_EVENT_FIELDS \
GnomeCanvasItem *canvas_item; \
- CalClient *client; \
- CalComponent *comp; \
+ ECalModelComponent *comp_data; \
+ gboolean allocated_comp_data; \
time_t start; \
time_t end; \
guint16 start_minute; \
@@ -91,10 +92,8 @@ GType e_cal_view_get_type (void);
GnomeCalendar *e_cal_view_get_calendar (ECalView *cal_view);
void e_cal_view_set_calendar (ECalView *cal_view, GnomeCalendar *calendar);
-CalClient *e_cal_view_get_cal_client (ECalView *cal_view);
-void e_cal_view_set_cal_client (ECalView *cal_view, CalClient *client);
-const gchar *e_cal_view_get_query (ECalView *cal_view);
-void e_cal_view_set_query (ECalView *cal_view, const gchar *sexp);
+ECalModel *e_cal_view_get_model (ECalView *cal_view);
+void e_cal_view_set_model (ECalView *cal_view, ECalModel *model);
icaltimezone *e_cal_view_get_timezone (ECalView *cal_view);
void e_cal_view_set_timezone (ECalView *cal_view, icaltimezone *zone);