aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/week-view.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-09-27 11:12:05 +0800
committernobody <nobody@localhost>1999-09-27 11:12:05 +0800
commit9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6 (patch)
tree0d7145e4b9fee9d06c7154a788e02811bb1fc20b /calendar/gui/week-view.h
parentea421e8d5838d758418aa3e6fddafe593badb15f (diff)
downloadgsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar.gz
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar.bz2
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar.lz
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar.xz
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.tar.zst
gsoc2013-evolution-9ebed998dbb0afd30bb8ba9ee38e77b6d30988b6.zip
This commit was manufactured by cvs2svn to create tagGNOME_LIBS_1_0_42
'GNOME_LIBS_1_0_42'. svn path=/tags/GNOME_LIBS_1_0_42/; revision=1259
Diffstat (limited to 'calendar/gui/week-view.h')
-rw-r--r--calendar/gui/week-view.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/calendar/gui/week-view.h b/calendar/gui/week-view.h
deleted file mode 100644
index 1bf6a4ed02..0000000000
--- a/calendar/gui/week-view.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/* Week view display for gncal
- *
- * Copyright (C) 1998 The Free Software Foundation
- *
- * Author: Federico Mena <federico@nuclecu.unam.mx>
- */
-
-#ifndef WEEK_VIEW_H
-#define WEEK_VIEW_H
-
-#include <libgnome/gnome-defs.h>
-#include "gnome-cal.h"
-
-BEGIN_GNOME_DECLS
-
-
-#define TYPE_WEEK_VIEW (week_view_get_type ())
-#define WEEK_VIEW(obj) (GTK_CHECK_CAST ((obj), TYPE_WEEK_VIEW, WeekView))
-#define WEEK_VIEW_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), TYPE_WEEK_VIEW, WeekViewClass))
-#define IS_WEEK_VIEW(obj) (GTK_CHECK_TYPE ((obj), TYPE_WEEK_VIEW))
-#define IS_WEEK_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), TYPE_WEEK_VIEW))
-
-
-typedef struct _WeekView WeekView;
-typedef struct _WeekViewClass WeekViewClass;
-
-struct _WeekView {
- GnomeCanvas canvas;
-
- GnomeCalendar *calendar; /* The calendar we are associated to */
-
- time_t week; /* Start of the week we are viewing */
-
- GnomeCanvasItem *title; /* The title of the week view */
-};
-
-struct _WeekViewClass {
- GnomeCanvasClass parent_class;
-};
-
-
-/* Standard Gtk function */
-GtkType week_view_get_type (void);
-
-/* Creates a new week view associated to the specified calendar */
-GtkWidget *week_view_new (GnomeCalendar *calendar, time_t week);
-
-/* Notifies the week view that a calendar object has changed */
-void week_view_update (WeekView *wv, iCalObject *ico, int flags);
-
-/* Notifies the week view about a change of date */
-void week_view_set (WeekView *wv, time_t week);
-
-/* Notifies the week view that the time format has changed */
-void week_view_time_format_changed (WeekView *wv);
-
-/* Notifies the week view that the colors have changed */
-void week_view_colors_changed (WeekView *wv);
-
-
-END_GNOME_DECLS
-
-#endif