aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/eventedit.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>1998-08-25 03:30:06 +0800
committernobody <nobody@localhost>1998-08-25 03:30:06 +0800
commit6f8dd17dcdc11ee3a3f6ad2c2c862f3c10b48c1c (patch)
treeaba63c4563f2746447a962ed2cce62c6412adda5 /calendar/eventedit.h
parentabdba7c651a0a04809c8a8a20c72188fbd62d2b9 (diff)
downloadgsoc2013-evolution-V_0_00_01.tar
gsoc2013-evolution-V_0_00_01.tar.gz
gsoc2013-evolution-V_0_00_01.tar.bz2
gsoc2013-evolution-V_0_00_01.tar.lz
gsoc2013-evolution-V_0_00_01.tar.xz
gsoc2013-evolution-V_0_00_01.tar.zst
gsoc2013-evolution-V_0_00_01.zip
This commit was manufactured by cvs2svn to create tag 'V_0_00_01'.V_0_00_01
svn path=/tags/V_0_00_01/; revision=335
Diffstat (limited to 'calendar/eventedit.h')
-rw-r--r--calendar/eventedit.h77
1 files changed, 0 insertions, 77 deletions
diff --git a/calendar/eventedit.h b/calendar/eventedit.h
deleted file mode 100644
index 9cb80e3912..0000000000
--- a/calendar/eventedit.h
+++ /dev/null
@@ -1,77 +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 *);
-
-
-END_GNOME_DECLS
-
-#endif