diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-07-17 20:00:40 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-07-17 20:00:40 +0800 |
commit | ce6939b848eb228ec705aac4c8de6cfec16ecd10 (patch) | |
tree | 045f620b4d4c22352cba5568b697c688ed8c5a10 /calendar/gui/e-day-view.h | |
parent | e05eb7f89e180a734a07ee6576f56b8bfa84fc17 (diff) | |
download | gsoc2013-evolution-ce6939b848eb228ec705aac4c8de6cfec16ecd10.tar.gz gsoc2013-evolution-ce6939b848eb228ec705aac4c8de6cfec16ecd10.tar.zst gsoc2013-evolution-ce6939b848eb228ec705aac4c8de6cfec16ecd10.zip |
new base class for calendar views.
2003-07-17 Rodrigo Moya <rodrigo@ximian.com>
* gui/e-cal-view.[ch]: new base class for calendar views.
* gui/e-day-view.[ch]:
* gui/e-week-view.[ch]: base these classes on ECalView.
* gui/Makefile.am: added new files.
svn path=/trunk/; revision=21854
Diffstat (limited to 'calendar/gui/e-day-view.h')
-rw-r--r-- | calendar/gui/e-day-view.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/calendar/gui/e-day-view.h b/calendar/gui/e-day-view.h index 6485102fc7..f8889ac26b 100644 --- a/calendar/gui/e-day-view.h +++ b/calendar/gui/e-day-view.h @@ -26,9 +26,11 @@ #include <time.h> #include <gtk/gtktable.h> +#include <gtk/gtktooltips.h> #include <libgnomecanvas/gnome-canvas.h> #include <gal/widgets/e-popup-menu.h> +#include "e-cal-view.h" #include "gnome-cal.h" #include "evolution-activity-client.h" @@ -222,7 +224,7 @@ typedef struct _EDayViewClass EDayViewClass; struct _EDayView { - GtkTable table; + ECalView cal_view; /* The top canvas where the dates and long appointments are shown. */ GtkWidget *top_canvas; @@ -505,7 +507,7 @@ struct _EDayView struct _EDayViewClass { - GtkTableClass parent_class; + ECalViewClass parent_class; /* Notification signals */ void (* selection_changed) (EDayView *day_view); |