Merge remote-tracking branch 'github/master' into tizen
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.AttachPanel / Tizen.Applications.AttachPanel / ContentCategory.cs
1 namespace Tizen.Applications.AttachPanel
2 {
3     /// <summary>
4     /// Enumeration for the attach panel content category.
5     /// </summary>
6     /// <since_tizen> 4 </since_tizen>
7     public enum ContentCategory
8     {
9         /// <summary>
10         /// Attaching images from the gallery.
11         /// </summary>
12         Image = 1,
13
14         /// <summary>
15         /// Taking pictures to attach.
16         /// </summary>
17         Camera,
18
19         /// <summary>
20         /// Taking a voice clip to attach.
21         /// </summary>
22         Voice,
23
24         /// <summary>
25         /// Attaching video from the gallery.
26         /// </summary>
27         Video,
28
29         /// <summary>
30         /// Attaching audio from my files.
31         /// </summary>
32         Audio,
33
34         /// <summary>
35         /// Attaching calendar data from the calendar.
36         /// </summary>
37         Calendar,
38
39         /// <summary>
40         /// Attaching contact data from the contacts.
41         /// </summary>
42         Contact,
43
44         /// <summary>
45         /// Attaching files data from my files.
46         /// </summary>
47         Myfiles,
48
49         /// <summary>
50         /// Taking a video clip to attach.
51         /// </summary>
52         VideoRecorder,
53
54         /// <summary>
55         /// Attaching files from the document list.
56         /// </summary>
57         Document,
58
59         /// <summary>
60         /// Launching apps to take pictures will be attached.
61         /// </summary>
62         TakePicture,
63
64         /// <summary>
65         /// Attaching memo data from the memo.
66         /// </summary>
67         Memo,
68     }
69 }