diff options
author | Damon Chaplin <damon@helixcode.com> | 2000-05-06 18:56:58 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2000-05-06 18:56:58 +0800 |
commit | c827b0e2b1199d1808fef231e2f79af75dac1234 (patch) | |
tree | c76a2d6ba32216e3fbc6f8ad51b331fb62f20a9c /calendar/gui/gncal-day-view.h | |
parent | ab3408927461d33221119be8f7cb2884f0b0eb05 (diff) | |
download | gsoc2013-evolution-c827b0e2b1199d1808fef231e2f79af75dac1234.tar.gz gsoc2013-evolution-c827b0e2b1199d1808fef231e2f79af75dac1234.tar.zst gsoc2013-evolution-c827b0e2b1199d1808fef231e2f79af75dac1234.zip |
removed old calendar view files.
2000-05-06 Damon Chaplin <damon@helixcode.com>
* gui/gncal-day-panel.[hc]:
* gui/gncal-day-view.[hc]:
* gui/gncal-full-day.[hc]:
* gui/gncal-week-view.[hc]:
* gui/layout.[hc]:
* gui/view-utils.[hc]: removed old calendar view files.
svn path=/trunk/; revision=2825
Diffstat (limited to 'calendar/gui/gncal-day-view.h')
-rw-r--r-- | calendar/gui/gncal-day-view.h | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/calendar/gui/gncal-day-view.h b/calendar/gui/gncal-day-view.h deleted file mode 100644 index dae1897fb6..0000000000 --- a/calendar/gui/gncal-day-view.h +++ /dev/null @@ -1,56 +0,0 @@ -/* Day view widget for gncal - * - * Copyright (C) 1998 The Free Software Foundation - * - * Author: Federico Mena <quartic@gimp.org> - */ - -#ifndef GNCAL_DAY_VIEW_H -#define GNCAL_DAY_VIEW_H - - -#include <gtk/gtkwidget.h> -#include <libgnome/gnome-defs.h> -#include "gnome-cal.h" - -BEGIN_GNOME_DECLS - - -#define GNCAL_DAY_VIEW(obj) GTK_CHECK_CAST (obj, gncal_day_view_get_type (), GncalDayView) -#define GNCAL_DAY_VIEW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gncal_day_view_get_type (), GncalDayViewClass) -#define GNCAL_IS_DAY_VIEW(obj) GTK_CHECK_TYPE (obj, gncal_day_view_get_type ()) - - -typedef struct _GncalDayView GncalDayView; -typedef struct _GncalDayViewClass GncalDayViewClass; - -struct _GncalDayView { - GtkWidget widget; - - GnomeCalendar *calendar;/* the calendar we are associated to */ - - time_t lower; /* lower and upper times to display */ - time_t upper; /* these include the full day */ - - char *day_str; /* what day is it? */ - GList *events; /* the events for the this day */ - GtkShadowType shadow_type; -}; - -struct _GncalDayViewClass { - GtkWidgetClass parent_class; -}; - - -guint gncal_day_view_get_type (void); -GtkWidget *gncal_day_view_new (GnomeCalendar *calendar, time_t lower, time_t upper); - -void gncal_day_view_update (GncalDayView *dview, iCalObject *ico, int flags); -void gncal_day_view_set_bounds (GncalDayView *dview, time_t lower, time_t upper); - -void gncal_day_view_set_shadow (GncalDayView *dview, GtkShadowType shadow_type); - - -END_GNOME_DECLS - -#endif |