diff options
author | Milan Crha <mcrha@redhat.com> | 2009-01-19 22:14:56 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2009-01-19 22:14:56 +0800 |
commit | d63754acb1a37037ce09251c00fefa5e689f780b (patch) | |
tree | fd94473f060473b0918700d0e457b85903b6a3c5 /calendar/gui/calendar-config-keys.h | |
parent | 2be7cd3b2ab50047820da4a1e873785b53f41acd (diff) | |
download | gsoc2013-evolution-d63754acb1a37037ce09251c00fefa5e689f780b.tar gsoc2013-evolution-d63754acb1a37037ce09251c00fefa5e689f780b.tar.gz gsoc2013-evolution-d63754acb1a37037ce09251c00fefa5e689f780b.tar.bz2 gsoc2013-evolution-d63754acb1a37037ce09251c00fefa5e689f780b.tar.lz gsoc2013-evolution-d63754acb1a37037ce09251c00fefa5e689f780b.tar.xz gsoc2013-evolution-d63754acb1a37037ce09251c00fefa5e689f780b.tar.zst gsoc2013-evolution-d63754acb1a37037ce09251c00fefa5e689f780b.zip |
** Part of fix for bug #260853
2009-01-19 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #260853
* gui/calendar-config-keys.h:
* gui/calendar-config.h:
(calendar_config_get_ba_reminder), (calendar_config_set_ba_reminder):
* gui/calendar-config.c:
(calendar_config_get_ba_reminder), (calendar_config_set_ba_reminder),
(string_to_units), (calendar_config_get_default_reminder_units):
* gui/dialogs/cal-prefs-dialog.glade:
* gui/dialogs/cal-prefs-dialog.h: (struct _CalendarPrefsDialog):
* gui/dialogs/cal-prefs-dialog.c: (ba_reminder_toggled),
(ba_reminder_interval_changed), (ba_reminder_units_changed),
(setup_changes), (show_config), (calendar_prefs_dialog_construct):
User interface and related function to allow use change setup of
the alarm for Birthdays and Anniversaries calendar.
svn path=/trunk/; revision=37098
Diffstat (limited to 'calendar/gui/calendar-config-keys.h')
-rw-r--r-- | calendar/gui/calendar-config-keys.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/calendar/gui/calendar-config-keys.h b/calendar/gui/calendar-config-keys.h index 6706c65cdc..05feb18d00 100644 --- a/calendar/gui/calendar-config-keys.h +++ b/calendar/gui/calendar-config-keys.h @@ -96,6 +96,11 @@ G_BEGIN_DECLS #define CALENDAR_CONFIG_TEMPLATE CALENDAR_CONFIG_PREFIX"/publish/template" #define CALENDAR_CONFIG_SAVE_DIR CALENDAR_CONFIG_PREFIX"/audio_dir" + +/* Birthday & Anniversary reminder */ +#define CALENDAR_CONFIG_BA_REMINDER CALENDAR_CONFIG_PREFIX "/other/use_ba_reminder" +#define CALENDAR_CONFIG_BA_REMINDER_INTERVAL CALENDAR_CONFIG_PREFIX "/other/ba_reminder_interval" +#define CALENDAR_CONFIG_BA_REMINDER_UNITS CALENDAR_CONFIG_PREFIX "/other/ba_reminder_units" G_END_DECLS #endif |