diff options
author | Harish Krishnaswamy <kharish@src.gnome.org> | 2004-10-22 01:07:23 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2004-10-22 01:07:23 +0800 |
commit | 6c4af7d1fcc0b8ee246e2e00f82e16b26a47fd9e (patch) | |
tree | 9b137b62600a6f0b72de5f04ca3497ddc5c3239a /calendar/gui/e-cal-popup.h | |
parent | 5ad033037b080d22d66d8f8ca6e00da1ecf8f5ac (diff) | |
download | gsoc2013-evolution-6c4af7d1fcc0b8ee246e2e00f82e16b26a47fd9e.tar.gz gsoc2013-evolution-6c4af7d1fcc0b8ee246e2e00f82e16b26a47fd9e.tar.zst gsoc2013-evolution-6c4af7d1fcc0b8ee246e2e00f82e16b26a47fd9e.zip |
Add status bits to denote if the calendar source is available offline so
* gui/e-cal-popup.[ch]: (e_cal_popup_target_new_source):
Add status bits to denote if the calendar source is available offline
so that plugins to calendar popups can use the status qualifier to denote
their visibility preferences.
svn path=/trunk/; revision=27680
Diffstat (limited to 'calendar/gui/e-cal-popup.h')
-rw-r--r-- | calendar/gui/e-cal-popup.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/e-cal-popup.h b/calendar/gui/e-cal-popup.h index 1e7d7bc23a..a5043b1726 100644 --- a/calendar/gui/e-cal-popup.h +++ b/calendar/gui/e-cal-popup.h @@ -93,6 +93,8 @@ enum _e_cal_popup_target_source_t { E_CAL_POPUP_SOURCE_PRIMARY = 1<<0, E_CAL_POPUP_SOURCE_SYSTEM = 1<<1, /* system folder */ E_CAL_POPUP_SOURCE_USER = 1<<2, /* user folder (!system) */ + E_CAL_POPUP_SOURCE_OFFLINE = 1 <<3, + E_CAL_POPUP_SOURCE_NO_OFFLINE = 1 <<4 }; typedef struct _ECalPopupTargetSelect ECalPopupTargetSelect; |