diff options
author | nobody <nobody@localhost> | 1999-01-13 09:21:51 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 1999-01-13 09:21:51 +0800 |
commit | 6bab944cc124348b755231f1a7c32eb4a29049ff (patch) | |
tree | 9fc85f6f2906bcfe200e7bc45252a9e9c28562c9 /calendar/gui/eventedit.h | |
parent | b360846792c7ade453c2638c0aaaf857163ef1a1 (diff) | |
download | gsoc2013-evolution-0-17.tar gsoc2013-evolution-0-17.tar.gz gsoc2013-evolution-0-17.tar.bz2 gsoc2013-evolution-0-17.tar.lz gsoc2013-evolution-0-17.tar.xz gsoc2013-evolution-0-17.tar.zst gsoc2013-evolution-0-17.zip |
This commit was manufactured by cvs2svn to create tag 'v0-17'.v0-17
svn path=/tags/v0-17/; revision=602
Diffstat (limited to 'calendar/gui/eventedit.h')
-rw-r--r-- | calendar/gui/eventedit.h | 83 |
1 files changed, 0 insertions, 83 deletions
diff --git a/calendar/gui/eventedit.h b/calendar/gui/eventedit.h deleted file mode 100644 index 15ef540333..0000000000 --- a/calendar/gui/eventedit.h +++ /dev/null @@ -1,83 +0,0 @@ -/* - * EventEditor widget - * Copyright (C) 1998 the Free Software Foundation - * - * Author: Miguel de Icaza (miguel@kernel.org) - */ - -#ifndef EVENT_EDITOR_H -#define EVENT_EDITOR_H - -#include "gnome-cal.h" -#include <libgnomeui/gnome-dialog.h> - -BEGIN_GNOME_DECLS - - -#define EVENT_EDITOR(obj) GTK_CHECK_CAST(obj, event_editor_get_type(), EventEditor) -#define EVENT_EDITOR_CLASS(class) GTK_CHECK_CAST_CLASS(class, event_editor_get_type(), EventEditorClass) -#define IS_EVENT_EDITOR(obj) GTK_CHECK_TYPE(obj, event_editor_get_type()) - - -typedef struct { - GnomeDialog dialog; - GtkWidget *notebook; - - GtkWidget *general; - GtkWidget *general_table; - GtkWidget *general_time_table; - GtkWidget *general_allday; - GtkWidget *general_owner; - GtkWidget *general_summary; - GtkWidget *start_time, *end_time; - GtkWidget *general_radios; - - GtkWidget *recur_page_label; - GtkWidget *recur_vbox; - GtkWidget *recur_hbox; - - GSList *recur_rr_group; - GtkWidget *recur_rr_notebook; - GtkWidget *recur_rr_day_period; - GtkWidget *recur_rr_week_period; - GtkWidget *recur_rr_week_days [7]; - GtkWidget *recur_rr_month_date; - GtkWidget *recur_rr_month_date_label; - GtkWidget *recur_rr_month_day; - GtkWidget *recur_rr_month_weekday; - GtkWidget *recur_rr_month_period; - GtkWidget *recur_rr_year_period; - - GSList *recur_ed_group; - GtkWidget *recur_ed_end_on; - GtkWidget *recur_ed_end_after; - - GtkWidget *recur_ex_date; - GtkWidget *recur_ex_vbox; - GtkWidget *recur_ex_clist; - - /* The associated ical object */ - iCalObject *ical; - - /* The calendar owner of this event */ - GnomeCalendar *gnome_cal; -} EventEditor; - -typedef struct { - GnomeDialogClass parent_class; -} EventEditorClass; - - -guint event_editor_get_type (void); -GtkWidget *event_editor_new (GnomeCalendar *owner, iCalObject *); - -/* Convenience function to create and show a new event editor for an event that goes from day_begin - * to day_end of the specified day. - */ -void event_editor_new_whole_day (GnomeCalendar *owner, time_t day); - - - -END_GNOME_DECLS - -#endif |