aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/month-view.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1998-10-01 16:56:39 +0800
committernobody <nobody@localhost>1998-10-01 16:56:39 +0800
commitaae3a37cb11759f99268f86e0c37fd72ef5be232 (patch)
tree23e6dba03d3654ee9649835b0486dadab49110c5 /calendar/month-view.h
parente94162c0a48defcaa3869dc9b82638170a62bab2 (diff)
downloadgsoc2013-evolution-WITHXMHTML.tar
gsoc2013-evolution-WITHXMHTML.tar.gz
gsoc2013-evolution-WITHXMHTML.tar.bz2
gsoc2013-evolution-WITHXMHTML.tar.lz
gsoc2013-evolution-WITHXMHTML.tar.xz
gsoc2013-evolution-WITHXMHTML.tar.zst
gsoc2013-evolution-WITHXMHTML.zip
This commit was manufactured by cvs2svn to create tag 'WITHXMHTML'.WITHXMHTML
svn path=/tags/WITHXMHTML/; revision=422
Diffstat (limited to 'calendar/month-view.h')
-rw-r--r--calendar/month-view.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/calendar/month-view.h b/calendar/month-view.h
deleted file mode 100644
index 70476c82f2..0000000000
--- a/calendar/month-view.h
+++ /dev/null
@@ -1,64 +0,0 @@
-/* Month view display for gncal
- *
- * Copyright (C) 1998 Red Hat Software, Inc.
- *
- * Author: Federico Mena <federico@nuclecu.unam.mx>
- */
-
-#ifndef MONTH_VIEW_H
-#define MONTH_VIEW_H
-
-#include <libgnome/gnome-defs.h>
-#include "gnome-cal.h"
-#include "gnome-month-item.h"
-
-
-BEGIN_GNOME_DECLS
-
-
-#define TYPE_MONTH_VIEW (month_view_get_type ())
-#define MONTH_VIEW(obj) (GTK_CHECK_CAST ((obj), TYPE_MONTH_VIEW, MonthView))
-#define MONTH_VIEW_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), TYPE_MONTH_VIEW, MonthViewClass))
-#define IS_MONTH_VIEW(obj) (GTK_CHECK_TYPE ((obj), TYPE_MONTH_VIEW))
-#define IS_MONTH_VIEW_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), TYPE_MONTH_VIEW))
-
-
-typedef struct _MonthView MonthView;
-typedef struct _MonthViewClass MonthViewClass;
-
-struct _MonthView {
- GnomeCanvas canvas;
-
- GnomeCalendar *calendar; /* The calendar we are associated to */
-
- GnomeCanvasItem *title; /* The title heading with the month/year */
- GnomeCanvasItem *mitem; /* The canvas month item used by this month view */
-};
-
-struct _MonthViewClass {
- GnomeCanvasClass parent_class;
-};
-
-
-/* Standard Gtk function */
-GtkType month_view_get_type (void);
-
-/* Creates a new month view widget associated to the specified calendar */
-GtkWidget *month_view_new (GnomeCalendar *calendar, time_t month);
-
-/* Notifies the month view that a calendar object has changed */
-void month_view_update (MonthView *mv, iCalObject *ico, int flags);
-
-/* Notifies the month view about a change of date */
-void month_view_set (MonthView *mv, time_t month);
-
-/* Notifies the month view that the time format has changed */
-void month_view_time_format_changed (MonthView *mv);
-
-/* Notifies the month view that the colors have changed */
-void month_view_colors_changed (MonthView *mv);
-
-
-END_GNOME_DECLS
-
-#endif