diff options
author | nobody <nobody@localhost> | 1998-08-05 07:56:12 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1998-08-05 07:56:12 +0800 |
commit | 05dfb3cf4cf1b0c36287e022229e722024cd96fb (patch) | |
tree | f5136c736af4416ea990304d7741218ce61e9a75 /calendar/gncal-week-view.h | |
parent | 6c3c0efea6680f8ea5d8108a48ced777d3c72536 (diff) | |
download | gsoc2013-evolution-0_25.tar gsoc2013-evolution-0_25.tar.gz gsoc2013-evolution-0_25.tar.bz2 gsoc2013-evolution-0_25.tar.lz gsoc2013-evolution-0_25.tar.xz gsoc2013-evolution-0_25.tar.zst gsoc2013-evolution-0_25.zip |
This commit was manufactured by cvs2svn to create tag 'V0_25'.V0_25
svn path=/tags/V0_25/; revision=300
Diffstat (limited to 'calendar/gncal-week-view.h')
-rw-r--r-- | calendar/gncal-week-view.h | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/calendar/gncal-week-view.h b/calendar/gncal-week-view.h deleted file mode 100644 index 1514890504..0000000000 --- a/calendar/gncal-week-view.h +++ /dev/null @@ -1,55 +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/gtktable.h> -#include <libgnome/gnome-defs.h> -#include <libgnomeui/gtkcalendar.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); - - -END_GNOME_DECLS - -#endif |