Add check box for notification (#5342)
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.Notification / Tizen.Applications.Notifications / NotificationResponseEventType.cs
1 
2 using System.ComponentModel;
3
4 namespace Tizen.Applications.Notifications
5 {
6     /// <summary>
7     /// Enumeration for event type on notification.
8     /// </summary>
9     /// <since_tizen> 8 </since_tizen>
10     [EditorBrowsable(EditorBrowsableState.Never)]
11     public enum NotificationResponseEventType
12     {
13         /// <summary>
14         /// Event type : Click on button 1.
15         /// </summary>
16         ClickOnButton1 = 0,
17
18         /// <summary>
19         /// Event type : Click on button 2.
20         /// </summary>
21         ClickOnButton2,
22
23         /// <summary>
24         /// Event type : Click on button 3.
25         /// </summary>
26         ClickOnButton3,
27
28         /// <summary>
29         /// Event type : Click on text_input button.
30         /// </summary>
31         ClickOnReplyButton = 8,
32
33         /// <summary>
34         /// Event type : Hidden by user.
35         /// </summary>
36         HiddenByUser = 100,
37
38         /// <summary>
39         /// Event type : Deleted by timer.
40         /// </summary>
41         HiddenByTimeout = 101,
42
43         /// <summary>
44         /// Event type : Deleted by timer.
45         /// </summary>
46         HiddenByExternal = 102,
47
48         /// <summary>
49         /// Event type : Clicked by user.
50         /// </summary>
51         ClickOnNotification = 200,
52
53         /// <summary>
54         /// Event type : Deleted by user.
55         /// </summary>
56         DeleteNotification = 201,
57
58         /// <summary>
59         /// Event type : Do not show again.
60         /// </summary>
61         CheckBox = 300,
62     }
63 }