aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/gncal-day-view.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-02-10 22:37:29 +0800
committernobody <nobody@localhost>1999-02-10 22:37:29 +0800
commit2a94e8c933d11e0f9c76e3a66129f304394ceb2d (patch)
tree08d16d9ea7f02dada397acf9dab7ea485cd364ea /calendar/gui/gncal-day-view.h
parent27660c1d472b5a182170def1510ab70cde116fcd (diff)
downloadgsoc2013-evolution-0_99_8.tar
gsoc2013-evolution-0_99_8.tar.gz
gsoc2013-evolution-0_99_8.tar.bz2
gsoc2013-evolution-0_99_8.tar.lz
gsoc2013-evolution-0_99_8.tar.xz
gsoc2013-evolution-0_99_8.tar.zst
gsoc2013-evolution-0_99_8.zip
This commit was manufactured by cvs2svn to create tag 'V0_99_8'.V0_99_8
svn path=/tags/V0_99_8/; revision=661
Diffstat (limited to 'calendar/gui/gncal-day-view.h')
-rw-r--r--calendar/gui/gncal-day-view.h56
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