diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-08-18 21:50:17 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-08-19 00:33:00 +0800 |
commit | 6ec3b5ae147cdf552c323ea66a0f22b753c6970f (patch) | |
tree | 344b135a472a388cac7fe6f16bf5f758366c040e /modules/calendar/e-cal-shell-content.h | |
parent | e1f45e288a00334bc52844f6656cf0f7bb54ddd7 (diff) | |
download | gsoc2013-evolution-6ec3b5ae147cdf552c323ea66a0f22b753c6970f.tar.gz gsoc2013-evolution-6ec3b5ae147cdf552c323ea66a0f22b753c6970f.tar.zst gsoc2013-evolution-6ec3b5ae147cdf552c323ea66a0f22b753c6970f.zip |
Add cal_shell_content_check_state().
Diffstat (limited to 'modules/calendar/e-cal-shell-content.h')
-rw-r--r-- | modules/calendar/e-cal-shell-content.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/modules/calendar/e-cal-shell-content.h b/modules/calendar/e-cal-shell-content.h index 906fe80bc0..21e971b159 100644 --- a/modules/calendar/e-cal-shell-content.h +++ b/modules/calendar/e-cal-shell-content.h @@ -59,15 +59,12 @@ typedef struct _ECalShellContentPrivate ECalShellContentPrivate; enum { E_CAL_SHELL_CONTENT_SELECTION_SINGLE = 1 << 0, E_CAL_SHELL_CONTENT_SELECTION_MULTIPLE = 1 << 1, - E_CAL_SHELL_CONTENT_SELECTION_IS_ASSIGNABLE = 1 << 2, - E_CAL_SHELL_CONTENT_SELECTION_IS_COMPLETE = 1 << 3, - E_CAL_SHELL_CONTENT_SELECTION_IS_EDITABLE = 1 << 4, - E_CAL_SHELL_CONTENT_SELECTION_IS_MEETING = 1 << 5, - E_CAL_SHELL_CONTENT_SELECTION_IS_ORGANIZER = 1 << 6, - E_CAL_SHELL_CONTENT_SELECTION_IS_RECURRING = 1 << 7, - E_CAL_SHELL_CONTENT_SELECTION_CAN_ACCEPT = 1 << 8, - E_CAL_SHELL_CONTENT_SELECTION_CAN_DELEGATE = 1 << 9, - E_CAL_SHELL_CONTENT_SELECTION_CAN_SAVE = 1 << 10 + E_CAL_SHELL_CONTENT_SELECTION_IS_EDITABLE = 1 << 2, + E_CAL_SHELL_CONTENT_SELECTION_IS_INSTANCE = 1 << 3, + E_CAL_SHELL_CONTENT_SELECTION_IS_MEETING = 1 << 4, + E_CAL_SHELL_CONTENT_SELECTION_IS_ORGANIZER = 1 << 5, + E_CAL_SHELL_CONTENT_SELECTION_IS_RECURRING = 1 << 6, + E_CAL_SHELL_CONTENT_SELECTION_CAN_DELEGATE = 1 << 7 }; struct _ECalShellContent { |