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/gui/gnome-cal.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/gui/gnome-cal.h')
-rw-r--r-- | calendar/gui/gnome-cal.h | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/calendar/gui/gnome-cal.h b/calendar/gui/gnome-cal.h deleted file mode 100644 index 513bf88ad3..0000000000 --- a/calendar/gui/gnome-cal.h +++ /dev/null @@ -1,55 +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 <libgnome/gnome-defs.h> -#include <libgnomeui/gnome-app.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 *year_view; - GtkWidget *task_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); -void gnome_calendar_tag_calendar (GnomeCalendar *cal, GtkCalendar *gtk_cal); - -/* Flags is a bitmask of CalObjectChange values */ -void gnome_calendar_object_changed (GnomeCalendar *gcal, iCalObject *obj, int flags); - -END_GNOME_DECLS - -#endif |