summaryrefslogtreecommitdiff
path: root/include/notification_type.h
diff options
context:
space:
mode:
authorKyuho Jo <kyuho.jo@samsung.com>2015-02-27 21:41:21 +0900
committerKyuho Jo <kyuho.jo@samsung.com>2015-03-03 16:49:09 +0900
commitcb3d9ab07ff8a8ce86ebeba974dbf51f0b0ce87a (patch)
treeae1b15775c6ad7d322c863da9e37387c080200ab /include/notification_type.h
parent38029c2c98efc814e245158342def51306724490 (diff)
downloadnotification-cb3d9ab07ff8a8ce86ebeba974dbf51f0b0ce87a.tar.gz
notification-cb3d9ab07ff8a8ce86ebeba974dbf51f0b0ce87a.tar.bz2
notification-cb3d9ab07ff8a8ce86ebeba974dbf51f0b0ce87a.zip
New API set for 'heads-up notification'
Change-Id: I196652a01bfec0681630f68b2b7ec97225de21b9
Diffstat (limited to 'include/notification_type.h')
-rwxr-xr-xinclude/notification_type.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/notification_type.h b/include/notification_type.h
index 1fcd343..366fb32 100755
--- a/include/notification_type.h
+++ b/include/notification_type.h
@@ -75,6 +75,19 @@ typedef enum _notification_launch_option_type {
} notification_launch_option_type;
/**
+ * @brief Enumeration for event type on notification.
+ * @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_ICON = 5, /** < Event type : Click on icon */
+ NOTIFICATION_EVENT_TYPE_CLICK_ON_THUMBNAIL = 6, /** < Event type : Click on thumbnail */
+} notification_event_type_e;
+
+/**
* @brief Enumeration for notification sound type.
* @since_tizen 2.3
*/
@@ -290,6 +303,7 @@ enum _notificaton_display_applist {
NOTIFICATION_DISPLAY_APP_LOCK = 0x00000004,
/**< Lock screen */
NOTIFICATION_DISPLAY_APP_INDICATOR = 0x00000008,/**< Indicator */
+ NOTIFICATION_DISPLAY_APP_HEADS_UP = 0x00000010,/**< Heads-up notification */
NOTIFICATION_DISPLAY_APP_ALL = 0xffffffff,
/**< All display application */
};