aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gnome-cal.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1999-02-10 22:37:29 +0800
committernobody <nobody@localhost>1999-02-10 22:37:29 +0800
commit2a94e8c933d11e0f9c76e3a66129f304394ceb2d (patch)
tree08d16d9ea7f02dada397acf9dab7ea485cd364ea /calendar/gnome-cal.h
parent27660c1d472b5a182170def1510ab70cde116fcd (diff)
downloadgsoc2013-evolution-0_99_8.tar
gsoc2013-evolution-0_99_8.tar.gz
gsoc2013-evolution-0_99_8.tar.bz2
gsoc2013-evolution-0_99_8.tar.lz
gsoc2013-evolution-0_99_8.tar.xz
gsoc2013-evolution-0_99_8.tar.zst
gsoc2013-evolution-0_99_8.zip
This commit was manufactured by cvs2svn to create tag 'V0_99_8'.V0_99_8
svn path=/tags/V0_99_8/; revision=661
Diffstat (limited to 'calendar/gnome-cal.h')
-rw-r--r--calendar/gnome-cal.h74
1 files changed, 0 insertions, 74 deletions
diff --git a/calendar/gnome-cal.h b/calendar/gnome-cal.h
deleted file mode 100644
index ab4f5ff304..0000000000
--- a/calendar/gnome-cal.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * GnomeCalendar widget
- * Copyright (C) 1998 the Free Software Foundation
- *
- * Author: Miguel de Icaza (miguel@kernel.org)
- */
-
-#ifndef GNOME_CALENDAR_APP_H
-#define GNOME_CALENDAR_APP_H
-
-#include <gnome.h>
-
-#include "calendar.h"
-
-BEGIN_GNOME_DECLS
-
-#define GNOME_CALENDAR(obj) GTK_CHECK_CAST(obj, gnome_calendar_get_type(), GnomeCalendar)
-#define GNOME_CALENDAR_CLASS(class) GTK_CHECK_CAST_CLASS(class, gnome_calendar_get_type(), GnomeCalendarClass)
-#define GNOME_IS_CALENDAR(obj) GTK_CHECK_TYPE(obj, gnome_calendar_get_type())
-
-typedef struct {
- GnomeApp gnome_app;
- Calendar *cal;
- time_t current_display;
-
- GtkWidget *notebook;
- GtkWidget *day_view;
- GtkWidget *week_view;
- GtkWidget *month_view;
- GtkWidget *year_view;
- void *event_editor;
-} GnomeCalendar;
-
-typedef struct {
- GnomeAppClass parent_class;
-} GnomeCalendarClass;
-
-guint gnome_calendar_get_type (void);
-GtkWidget *gnome_calendar_new (char *title);
-int gnome_calendar_load (GnomeCalendar *gcal,
- char *file);
-void gnome_calendar_add_object (GnomeCalendar *gcal,
- iCalObject *obj);
-void gnome_calendar_remove_object (GnomeCalendar *gcal,
- iCalObject *obj);
-void gnome_calendar_next (GnomeCalendar *gcal);
-void gnome_calendar_previous (GnomeCalendar *gcal);
-void gnome_calendar_goto (GnomeCalendar *gcal,
- time_t new_time);
-void gnome_calendar_dayjump (GnomeCalendar *gcal,
- time_t time);
-/* Jumps to the current day */
-void gnome_calendar_goto_today (GnomeCalendar *gcal);
-void gnome_calendar_tag_calendar (GnomeCalendar *cal,
- GtkCalendar *gtk_cal);
-char *gnome_calendar_get_current_view_name (GnomeCalendar *gcal);
-void gnome_calendar_set_view (GnomeCalendar *gcal,
- char *page_name);
-
-/* Flags is a bitmask of CalObjectChange values */
-void gnome_calendar_object_changed (GnomeCalendar *gcal,
- iCalObject *obj,
- int flags);
-
-/* Notifies the calendar that the time format has changed and it must update all its views */
-void gnome_calendar_time_format_changed (GnomeCalendar *gcal);
-
-/* Notifies the calendar that the colors have changed and it must update all its views */
-void gnome_calendar_colors_changed (GnomeCalendar *gcal);
-
-
-END_GNOME_DECLS
-
-#endif