aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/gncal-week-view.h
diff options
context:
space:
mode:
authorDamon Chaplin <damon@helixcode.com>2000-05-06 18:56:58 +0800
committerDamon Chaplin <damon@src.gnome.org>2000-05-06 18:56:58 +0800
commitc827b0e2b1199d1808fef231e2f79af75dac1234 (patch)
treec76a2d6ba32216e3fbc6f8ad51b331fb62f20a9c /calendar/gui/gncal-week-view.h
parentab3408927461d33221119be8f7cb2884f0b0eb05 (diff)
downloadgsoc2013-evolution-c827b0e2b1199d1808fef231e2f79af75dac1234.tar
gsoc2013-evolution-c827b0e2b1199d1808fef231e2f79af75dac1234.tar.gz
gsoc2013-evolution-c827b0e2b1199d1808fef231e2f79af75dac1234.tar.bz2
gsoc2013-evolution-c827b0e2b1199d1808fef231e2f79af75dac1234.tar.lz
gsoc2013-evolution-c827b0e2b1199d1808fef231e2f79af75dac1234.tar.xz
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-week-view.h')
-rw-r--r--calendar/gui/gncal-week-view.h57
1 files changed, 0 insertions, 57 deletions
diff --git a/calendar/gui/gncal-week-view.h b/calendar/gui/gncal-week-view.h
deleted file mode 100644
index ab06161844..0000000000
--- a/calendar/gui/gncal-week-view.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/* Week view composite widget for gncal
- *
- * Copyright (C) 1998 The Free Software Foundation
- *
- * Author: Federico Mena <quartic@gimp.org>
- */
-
-#ifndef WEEK_VIEW_H
-#define WEEK_VIEW_H
-
-
-#include <gtk/gtkvbox.h>
-#include <gtk/gtktable.h>
-#include <gtk/gtkvbox.h>
-#include <libgnome/gnome-defs.h>
-#include "gnome-cal.h"
-#include "gncal-day-view.h"
-
-BEGIN_GNOME_DECLS
-
-
-#define GNCAL_WEEK_VIEW(obj) GTK_CHECK_CAST (obj, gncal_week_view_get_type (), GncalWeekView)
-#define GNCAL_WEEK_VIEW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gncal_week_view_get_type (), GncalWeekViewClass)
-#define GNCAL_IS_WEEK_VIEW(obj) GTK_CHECK_TYPE (obj, gncal_week_view_get_type ())
-
-
-typedef struct _GncalWeekView GncalWeekView;
-typedef struct _GncalWeekViewClass GncalWeekViewClass;
-
-struct _GncalWeekView {
- GtkVBox box;
-
- GnomeCalendar *calendar; /* the calendar we are associated to */
-
- struct tm start_of_week;
-
- GncalDayView *days[7]; /* the day view widgets */
- GtkCalendar *gtk_calendar; /* At least for now; see the FIXME comments in the .c file */
- GtkWidget *label;
-};
-
-struct _GncalWeekViewClass {
- GtkVBoxClass parent_class;
-};
-
-
-guint gncal_week_view_get_type (void);
-GtkWidget *gncal_week_view_new (GnomeCalendar *calendar, time_t start_of_week);
-
-void gncal_week_view_update (GncalWeekView *wview, iCalObject *ico, int flags);
-void gncal_week_view_set (GncalWeekView *wview, time_t start_of_week);
-void gncal_week_view_time_format_changed (GncalWeekView *wview);
-
-
-END_GNOME_DECLS
-
-#endif