Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.Common / Tizen.Applications / AppControlData.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 namespace Tizen.Applications
18 {
19     /// <summary>
20     /// Data of the AppControl.
21     /// </summary>
22     public static class AppControlData
23     {
24         /// <summary>
25         /// Subject
26         /// </summary>
27         public const string Subject = "http://tizen.org/appcontrol/data/subject";
28
29         /// <summary>
30         /// Recipients
31         /// </summary>
32         public const string To = "http://tizen.org/appcontrol/data/to";
33
34         /// <summary>
35         /// E-mail addresses that should be carbon copied
36         /// </summary>
37         public const string Cc = "http://tizen.org/appcontrol/data/cc";
38
39         /// <summary>
40         /// E-mail addresses that should be blind carbon copied
41         /// </summary>
42         public const string Bcc = "http://tizen.org/appcontrol/data/bcc";
43
44         /// <summary>
45         /// Text
46         /// </summary>
47         public const string Text = "http://tizen.org/appcontrol/data/text";
48
49         /// <summary>
50         /// Title
51         /// </summary>
52         public const string Title = "http://tizen.org/appcontrol/data/title";
53
54         /// <summary>
55         /// Selected items
56         /// </summary>
57         public const string Selected = "http://tizen.org/appcontrol/data/selected";
58
59         /// <summary>
60         /// Paths of items
61         /// </summary>
62         public const string Path = "http://tizen.org/appcontrol/data/path";
63
64         /// <summary>
65         /// Selection mode. ("single" or "multiple")
66         /// </summary>
67         public const string SectionMode = "http://tizen.org/appcontrol/data/selection_mode";
68
69         /// <summary>
70         /// All-day mode of event ("true" or "false")
71         /// </summary>
72         public const string AllDay = "http://tizen.org/appcontrol/data/calendar/all_day";
73
74         /// <summary>
75         /// Start time of event (format: YYYY-MM-DD HH:MM:SS)
76         /// </summary>
77         public const string StartTime = "http://tizen.org/appcontrol/data/calendar/start_time";
78
79         /// <summary>
80         /// End time of event (format: YYYY-MM-DD HH:MM:SS)
81         /// </summary>
82         public const string Endtime = "http://tizen.org/appcontrol/data/calendar/end_time";
83
84         /// <summary>
85         /// E-mail addressed
86         /// </summary>
87         public const string Email = "http://tizen.org/appcontrol/data/email";
88
89         /// <summary>
90         /// Phone numbers
91         /// </summary>
92         public const string Phone = "http://tizen.org/appcontrol/data/phone";
93
94         /// <summary>
95         /// URLs
96         /// </summary>
97         public const string Url = "http://tizen.org/appcontrol/data/url";
98
99         /// <summary>
100         /// IDs
101         /// </summary>
102         public const string Ids = "http://tizen.org/appcontrol/data/id";
103
104         /// <summary>
105         /// Type
106         /// </summary>
107         public const string Type = "http://tizen.org/appcontrol/data/type";
108
109         /// <summary>
110         /// Total count
111         /// </summary>
112         public const string TotalCount = "http://tizen.org/appcontrol/data/total_count";
113
114         /// <summary>
115         /// Total size (unit : bytes)
116         /// </summary>
117         public const string TotalSize = "http://tizen.org/appcontrol/data/total_size";
118
119         /// <summary>
120         /// Name
121         /// </summary>
122         public const string Name = "http://tizen.org/appcontrol/data/name";
123
124         /// <summary>
125         /// Location
126         /// </summary>
127         public const string Location = "http://tizen.org/appcontrol/data/location";
128
129         /// <summary>
130         /// Select the type of input method
131         /// </summary>
132         public const string InputType = "http://tizen.org/appcontrol/data/input_type";
133
134         /// <summary>
135         /// Send the pre inputted text such as "http://" in web
136         /// </summary>
137         public const string InputDefaultText = "http://tizen.org/appcontrol/data/input_default_text";
138
139         /// <summary>
140         /// Send guide text to show to user such as "Input user name"
141         /// </summary>
142         public const string InputGuideText = "http://tizen.org/appcontrol/data/input_guide_text";
143
144         /// <summary>
145         /// Send text to receive answer result from smart reply
146         /// </summary>
147         public const string InputPredictionHint = "http://tizen.org/appcontrol/data/input_prediction_hint";
148     }
149 }