aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/eventedit.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@nuclecu.unam.mx>1998-04-18 07:22:50 +0800
committerArturo Espinosa <unammx@src.gnome.org>1998-04-18 07:22:50 +0800
commit4b926012c0cae01569d71d178dc651d9e4b2c8e8 (patch)
tree0e8bb67d40b658bd6b867b15e909db1846d76908 /calendar/gui/eventedit.h
parent470866a2577773301742e2c1c83413c83249328a (diff)
downloadgsoc2013-evolution-4b926012c0cae01569d71d178dc651d9e4b2c8e8.tar
gsoc2013-evolution-4b926012c0cae01569d71d178dc651d9e4b2c8e8.tar.gz
gsoc2013-evolution-4b926012c0cae01569d71d178dc651d9e4b2c8e8.tar.bz2
gsoc2013-evolution-4b926012c0cae01569d71d178dc651d9e4b2c8e8.tar.lz
gsoc2013-evolution-4b926012c0cae01569d71d178dc651d9e4b2c8e8.tar.xz
gsoc2013-evolution-4b926012c0cae01569d71d178dc651d9e4b2c8e8.tar.zst
gsoc2013-evolution-4b926012c0cae01569d71d178dc651d9e4b2c8e8.zip
The event dialog is beautified, recurrences are saner.
1998-04-17 Federico Mena Quintero <federico@nuclecu.unam.mx> * eventedit.c (ee_init_recurrence_page): New function that creates the recurrence page in the toplevel notebook. (ee_store_recur_values_to_ical): Now we can also store the recurrences. svn path=/trunk/; revision=151
Diffstat (limited to 'calendar/gui/eventedit.h')
-rw-r--r--calendar/gui/eventedit.h35
1 files changed, 21 insertions, 14 deletions
diff --git a/calendar/gui/eventedit.h b/calendar/gui/eventedit.h
index b1af11060f..ccb2224450 100644
--- a/calendar/gui/eventedit.h
+++ b/calendar/gui/eventedit.h
@@ -24,7 +24,7 @@ typedef struct {
GtkWidget *vbox;
GtkWidget *general;
- GtkTable *general_table;
+ GtkWidget *general_table;
GtkWidget *general_time_table;
GtkWidget *general_allday;
GtkWidget *general_recur;
@@ -33,21 +33,28 @@ typedef struct {
GtkWidget *start_time, *end_time;
GtkWidget *general_radios;
+ GtkWidget *recur_page_label;
GtkWidget *recur_table;
- GSList *recur_group;
- GtkWidget *recur_content;
- GtkWidget *recur_day_period; /* GtkEntry */
-
- GtkWidget *recur_week_period; /* GtkEntry */
- GtkWidget *recur_week_days [7];
-
- GtkWidget *recur_month_date;
- GtkWidget *recur_month_day;
- GtkWidget *recur_month_weekday;
- GtkWidget *recur_month_period; /* GtkEntry */
-
- GtkWidget *recur_year_period; /* GtkEntry */
+ 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;