summaryrefslogtreecommitdiff
path: root/Tizen.Applications.Common/Tizen.Applications/AppControlData.cs
blob: fddfd0903dc3f52d23e56dd49e9fd4c40c7a7f4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*
 * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
 *
 * Licensed under the Apache License, Version 2.0 (the License);
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an AS IS BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

namespace Tizen.Applications
{
    /// <summary>
    /// Data of the AppControl.
    /// </summary>
    public static class AppControlData
    {
        /// <summary>
        /// Subject
        /// </summary>
        public const string Subject = "http://tizen.org/appcontrol/data/subject";

        /// <summary>
        /// Recipients
        /// </summary>
        public const string To = "http://tizen.org/appcontrol/data/to";

        /// <summary>
        /// E-mail addresses that should be carbon copied
        /// </summary>
        public const string Cc = "http://tizen.org/appcontrol/data/cc";

        /// <summary>
        /// E-mail addresses that should be blind carbon copied
        /// </summary>
        public const string Bcc = "http://tizen.org/appcontrol/data/bcc";

        /// <summary>
        /// Text
        /// </summary>
        public const string Text = "http://tizen.org/appcontrol/data/text";

        /// <summary>
        /// Title
        /// </summary>
        public const string Title = "http://tizen.org/appcontrol/data/title";

        /// <summary>
        /// Selected items
        /// </summary>
        public const string Selected = "http://tizen.org/appcontrol/data/selected";

        /// <summary>
        /// Paths of items
        /// </summary>
        public const string Path = "http://tizen.org/appcontrol/data/path";

        /// <summary>
        /// Selection mode. ("single" or "multiple")
        /// </summary>
        public const string SectionMode = "http://tizen.org/appcontrol/data/selection_mode";

        /// <summary>
        /// All-day mode of event ("true" or "false")
        /// </summary>
        public const string AllDay = "http://tizen.org/appcontrol/data/calendar/all_day";

        /// <summary>
        /// Start time of event (format: YYYY-MM-DD HH:MM:SS)
        /// </summary>
        public const string StartTime = "http://tizen.org/appcontrol/data/calendar/start_time";

        /// <summary>
        /// End time of event (format: YYYY-MM-DD HH:MM:SS)
        /// </summary>
        public const string Endtime = "http://tizen.org/appcontrol/data/calendar/end_time";

        /// <summary>
        /// E-mail addressed
        /// </summary>
        public const string Email = "http://tizen.org/appcontrol/data/email";

        /// <summary>
        /// Phone numbers
        /// </summary>
        public const string Phone = "http://tizen.org/appcontrol/data/phone";

        /// <summary>
        /// URLs
        /// </summary>
        public const string Url = "http://tizen.org/appcontrol/data/url";

        /// <summary>
        /// IDs
        /// </summary>
        public const string Ids = "http://tizen.org/appcontrol/data/id";

        /// <summary>
        /// Type
        /// </summary>
        public const string Type = "http://tizen.org/appcontrol/data/type";

        /// <summary>
        /// Total count
        /// </summary>
        public const string TotalCount = "http://tizen.org/appcontrol/data/total_count";

        /// <summary>
        /// Total size (unit : bytes)
        /// </summary>
        public const string TotalSize = "http://tizen.org/appcontrol/data/total_size";

        /// <summary>
        /// Name
        /// </summary>
        public const string Name = "http://tizen.org/appcontrol/data/name";

        /// <summary>
        /// Location
        /// </summary>
        public const string Location = "http://tizen.org/appcontrol/data/location";

        /// <summary>
        /// Select the type of input method
        /// </summary>
        public const string InputType = "http://tizen.org/appcontrol/data/input_type";

        /// <summary>
        /// Send the pre inputted text such as "http://" in web
        /// </summary>
        public const string InputDefaultText = "http://tizen.org/appcontrol/data/input_default_text";

        /// <summary>
        /// Send guide text to show to user such as "Input user name"
        /// </summary>
        public const string InputGuideText = "http://tizen.org/appcontrol/data/input_guide_text";

        /// <summary>
        /// Send text to receive answer result from smart reply
        /// </summary>
        public const string InputPredictionHint = "http://tizen.org/appcontrol/data/input_prediction_hint";
    }
}