diff options
author | nobody <nobody@localhost> | 1999-12-06 06:13:49 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-12-06 06:13:49 +0800 |
commit | ddffe844c9775cd94be7c12086f7e5a21a2694db (patch) | |
tree | 1ccf57237d944e7088bd598f9ab0c5f6f859be2d /calendar/week-view.h | |
parent | d9c655cd489e0c2989669005b5fa5415c92f8097 (diff) | |
download | gsoc2013-evolution-GTK_HTML_BEFORE_EDITING.tar gsoc2013-evolution-GTK_HTML_BEFORE_EDITING.tar.gz gsoc2013-evolution-GTK_HTML_BEFORE_EDITING.tar.bz2 gsoc2013-evolution-GTK_HTML_BEFORE_EDITING.tar.lz gsoc2013-evolution-GTK_HTML_BEFORE_EDITING.tar.xz gsoc2013-evolution-GTK_HTML_BEFORE_EDITING.tar.zst gsoc2013-evolution-GTK_HTML_BEFORE_EDITING.zip |
This commit was manufactured by cvs2svn to create tagGTK_HTML_BEFORE_EDITING
'GTK_HTML_BEFORE_EDITING'.
svn path=/tags/GTK_HTML_BEFORE_EDITING/; revision=1470
Diffstat (limited to 'calendar/week-view.h')
-rw-r--r-- | calendar/week-view.h | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/calendar/week-view.h b/calendar/week-view.h deleted file mode 100644 index 1bf6a4ed02..0000000000 --- a/calendar/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 |