summaryrefslogtreecommitdiff
path: root/include/notification_type.h
diff options
context:
space:
mode:
authorKyuho Jo <kyuho.jo@samsung.com>2015-04-30 18:48:37 +0900
committerKyuho Jo <kyuho.jo@samsung.com>2015-04-30 18:50:42 +0900
commit0bb7953ff37b994224745d92dd044cc44b728c91 (patch)
tree6c7326d01e568a97c9fcf95453225775860b8895 /include/notification_type.h
parent956ddf2e3c442282f1076cfebd3a72d8d520fc42 (diff)
downloadnotification-0bb7953ff37b994224745d92dd044cc44b728c91.tar.gz
notification-0bb7953ff37b994224745d92dd044cc44b728c91.tar.bz2
notification-0bb7953ff37b994224745d92dd044cc44b728c91.zip
1. New API set for notification settings.
2. notification_set_event_handler/notification_get_event_handler are implemented. Change-Id: I63ae26521a3bee757551b581316267fdf322ef86 Signed-off-by: Kyuho Jo <kyuho.jo@samsung.com>
Diffstat (limited to 'include/notification_type.h')
-rwxr-xr-xinclude/notification_type.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/include/notification_type.h b/include/notification_type.h
index b606c46..6e94002 100755
--- a/include/notification_type.h
+++ b/include/notification_type.h
@@ -79,14 +79,15 @@ typedef enum _notification_launch_option_type {
* @since_tizen 2.4
*/
typedef enum _notification_event_type {
- NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_1 = 1, /** < Event type : Click on button 1 */
- NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_2 = 2, /** < Event type : Click on button 2 */
- NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_3 = 3, /** < Event type : Click on button 3 */
- NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_4 = 4, /** < Event type : Click on button 4 */
- NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_5 = 5, /** < Event type : Click on button 5 */
- NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_6 = 6, /** < Event type : Click on button 6 */
- NOTIFICATION_EVENT_TYPE_CLICK_ON_ICON = 5, /** < Event type : Click on icon */
- NOTIFICATION_EVENT_TYPE_CLICK_ON_THUMBNAIL = 6, /** < Event type : Click on thumbnail */
+ NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_1 = 0, /** < Event type : Click on button 1 */
+ NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_2 = 1, /** < Event type : Click on button 2 */
+ NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_3 = 2, /** < Event type : Click on button 3 */
+ NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_4 = 3, /** < Event type : Click on button 4 */
+ NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_5 = 4, /** < Event type : Click on button 5 */
+ NOTIFICATION_EVENT_TYPE_CLICK_ON_BUTTON_6 = 5, /** < Event type : Click on button 6 */
+ NOTIFICATION_EVENT_TYPE_CLICK_ON_ICON = 6, /** < Event type : Click on icon */
+ NOTIFICATION_EVENT_TYPE_CLICK_ON_THUMBNAIL = 7, /** < Event type : Click on thumbnail */
+ NOTIFICATION_EVENT_TYPE_MAX,
} notification_event_type_e;
/**