diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-11-15 02:19:13 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-11-15 02:19:13 +0800 |
commit | 79efc40b19f513570d800d2b3fa6293ea794a28d (patch) | |
tree | 23a9b14de06c78c6bf815591c91c697561edc2f1 /calendar/gui/calendar-config.h | |
parent | b5e2c8cb04ca6b58723a9afe6c8c1e395ced2bbb (diff) | |
download | gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.tar.gz gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.tar.zst gsoc2013-evolution-79efc40b19f513570d800d2b3fa6293ea794a28d.zip |
UI changes for the event editor.
svn path=/trunk/; revision=30613
Diffstat (limited to 'calendar/gui/calendar-config.h')
-rw-r--r-- | calendar/gui/calendar-config.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/calendar/gui/calendar-config.h b/calendar/gui/calendar-config.h index 132e4af3ce..e1dcf70544 100644 --- a/calendar/gui/calendar-config.h +++ b/calendar/gui/calendar-config.h @@ -112,6 +112,28 @@ gboolean calendar_config_get_24_hour_format (void); void calendar_config_set_24_hour_format (gboolean use_24_hour); guint calendar_config_add_notification_24_hour_format (GConfClientNotifyFunc func, gpointer data); +/* Fields to show/hide */ +gboolean calendar_config_get_show_attendee (void); +void calendar_config_set_show_attendee (gboolean status); + +gboolean calendar_config_get_show_role (void); +void calendar_config_set_show_role (gboolean status); + +gboolean calendar_config_get_show_status (void); +void calendar_config_set_show_status (gboolean status); + +gboolean calendar_config_get_show_type (void); +void calendar_config_set_show_type (gboolean status); + +gboolean calendar_config_get_show_rsvp (void); +void calendar_config_set_show_rsvp (gboolean status); + +gboolean calendar_config_get_show_timezone (void); +void calendar_config_set_show_timezone (gboolean status); + +gboolean calendar_config_get_show_categories (void); +void calendar_config_set_show_categories (gboolean status); + /* The time divisions in the Day/Work-Week view in minutes (5/10/15/30/60). */ gint calendar_config_get_time_divisions (void); void calendar_config_set_time_divisions (gint divisions); |