diff options
author | nobody <nobody@localhost> | 1998-06-14 10:20:25 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1998-06-14 10:20:25 +0800 |
commit | b8e52acac2b9fc5414a7795a73c74f7ee4eeb71f (patch) | |
tree | 04ddcbf2b25cee3f50643e4a40c08feb14b2b94f /calendar/year-view.h | |
parent | 74afb1d19025c0353bacd0bac571e4a46c27ecde (diff) | |
download | gsoc2013-evolution-GRPM-02.tar gsoc2013-evolution-GRPM-02.tar.gz gsoc2013-evolution-GRPM-02.tar.bz2 gsoc2013-evolution-GRPM-02.tar.lz gsoc2013-evolution-GRPM-02.tar.xz gsoc2013-evolution-GRPM-02.tar.zst gsoc2013-evolution-GRPM-02.zip |
This commit was manufactured by cvs2svn to create tag 'GRPM-02'.GRPM-02
svn path=/tags/GRPM-02/; revision=264
Diffstat (limited to 'calendar/year-view.h')
-rw-r--r-- | calendar/year-view.h | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/calendar/year-view.h b/calendar/year-view.h deleted file mode 100644 index f31d5ae4a3..0000000000 --- a/calendar/year-view.h +++ /dev/null @@ -1,56 +0,0 @@ -/* Week view composite widget for gncal - * - * Copyright (C) 1998 The Free Software Foundation - * - * Author: Arturo Espinosa <arturo@nuclecu.unam.mx> - * - * Heavily based on Federico Mena's week view. - * - */ - -#ifndef YEAR_VIEW_H -#define YEAR_VIEW_H - -#include <time.h> -#include <gtk/gtktable.h> -#include <libgnome/gnome-defs.h> -#include <libgnomeui/gtkcalendar.h> - -#include "gnome-cal.h" - -BEGIN_GNOME_DECLS - - -#define GNCAL_YEAR_VIEW(obj) GTK_CHECK_CAST (obj, gncal_year_view_get_type (), GncalYearView) -#define GNCAL_YEAR_VIEW_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gncal_year_view_get_type (), GncalYearViewClass) -#define GNCAL_IS_YEAR_VIEW(obj) GTK_CHECK_TYPE (obj, gncal_year_view_get_type ()) - - -typedef struct _GncalYearView GncalYearView; -typedef struct _GncalYearViewClass GncalYearViewClass; - -struct _GncalYearView { - GtkTable table; - - GnomeCalendar *gcal; /* The calendar we are associated to */ - GtkWidget *calendar[12]; /* one calendar per month */ - guint handler[12]; /* for (un)blocking the calendars */ - - GtkWidget *year_label; - gint year; -}; - -struct _GncalYearViewClass { - GtkTableClass parent_class; -}; - - -guint gncal_year_view_get_type (void); -GtkWidget *gncal_year_view_new (GnomeCalendar *calendar, time_t date); -void gncal_year_view_set (GncalYearView *yview, time_t date); -void gncal_year_view_update (GncalYearView *yview, iCalObject *ico, int flags); - - -END_GNOME_DECLS - -#endif |