Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.Common / Tizen.Applications / AppControlOperations.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     /// Operations of the AppControl.
21     /// </summary>
22     public static class AppControlOperations
23     {
24         /// <summary>
25         /// An explicit launch for a homescreen application.
26         /// </summary>
27         public const string Main = "http://tizen.org/appcontrol/operation/main";
28
29         /// <summary>
30         /// An explicit launch for an application that excludes a homescreen application.
31         /// </summary>
32         public const string Default = "http://tizen.org/appcontrol/operation/default";
33
34         /// <summary>
35         /// Provides an editable access to the given data.
36         /// </summary>
37         public const string Edit = "http://tizen.org/appcontrol/operation/edit";
38
39         /// <summary>
40         /// Displays the data.
41         /// </summary>
42         public const string View = "http://tizen.org/appcontrol/operation/view";
43
44         /// <summary>
45         /// Picks items.
46         /// </summary>
47         public const string Pick = "http://tizen.org/appcontrol/operation/pick";
48
49         /// <summary>
50         /// Creates contents.
51         /// </summary>
52         public const string CreateContent = "http://tizen.org/appcontrol/operation/create_content";
53
54         /// <summary>
55         /// Performs a call to someone.
56         /// </summary>
57         public const string Call = "http://tizen.org/appcontrol/operation/call";
58
59         /// <summary>
60         /// Delivers some data to someone else.
61         /// </summary>
62         public const string Send = "http://tizen.org/appcontrol/operation/send";
63
64         /// <summary>
65         /// Delivers text data to someone else.
66         /// </summary>
67         public const string SendText = "http://tizen.org/appcontrol/operation/send_text";
68
69         /// <summary>
70         /// Shares an item with someone else.
71         /// </summary>
72         public const string Share = "http://tizen.org/appcontrol/operation/share";
73
74         /// <summary>
75         /// Shares multiple items with someone else.
76         /// </summary>
77         public const string MultiShare = "http://tizen.org/appcontrol/operation/multi_share";
78
79         /// <summary>
80         /// Shares text data with someone else.
81         /// </summary>
82         public const string ShareText = "http://tizen.org/appcontrol/operation/share_text";
83
84         /// <summary>
85         /// Dials a number. This shows a UI with the number to be dialed, allowing the user to explicitly initiate the call.
86         /// </summary>
87         public const string Dial = "http://tizen.org/appcontrol/operation/dial";
88
89         /// <summary>
90         /// Performs a search.
91         /// </summary>
92         public const string Search = "http://tizen.org/appcontrol/operation/search";
93
94         /// <summary>
95         /// Downloads items.
96         /// </summary>
97         public const string Download = "http://tizen.org/appcontrol/operation/download";
98
99         /// <summary>
100         /// Prints contents.
101         /// </summary>
102         public const string Print = "http://tizen.org/appcontrol/operation/print";
103
104         /// <summary>
105         /// Composes a message.
106         /// </summary>
107         public const string Compose = "http://tizen.org/appcontrol/operation/compose";
108
109         /// <summary>
110         /// Can be launched by interested System-Event.
111         /// </summary>
112         public const string LaunchOnEvent = "http://tizen.org/appcontrol/operation/launch_on_event";
113
114         /// <summary>
115         /// Adds an item.
116         /// </summary>
117         public const string Add = "http://tizen.org/appcontrol/operation/add";
118
119         /// <summary>
120         /// Captures images by camera applications.
121         /// </summary>
122         public const string ImageCapture = "http://tizen.org/appcontrol/operation/image_capture";
123
124         /// <summary>
125         /// Captures videos by camera applications.
126         /// </summary>
127         public const string VideoCapture = "http://tizen.org/appcontrol/operation/video_capture";
128
129         /// <summary>
130         /// Shows system settings.
131         /// </summary>
132         public const string Setting = "http://tizen.org/appcontrol/operation/setting";
133
134         /// <summary>
135         /// Shows settings to enable Bluetooth.
136         /// </summary>
137         public const string SettingBluetoothEnable = "http://tizen.org/appcontrol/operation/setting/bt_enable";
138
139         /// <summary>
140         /// Shows settings to configure Bluetooth visibility.
141         /// </summary>
142         public const string SettingBluetoothVisibility = "http://tizen.org/appcontrol/operation/setting/bt_visibility";
143
144         /// <summary>
145         /// Shows settings to allow configuration of current location sources.
146         /// </summary>
147         public const string SettingLocation = "http://tizen.org/appcontrol/operation/setting/location";
148
149         /// <summary>
150         /// Shows NFC settings.
151         /// </summary>
152         public const string SettingNfc = "http://tizen.org/appcontrol/operation/setting/nfc";
153
154         /// <summary>
155         /// Shows settings to allow configuration of Wi-Fi.
156         /// </summary>
157         public const string SettingWifi = "http://tizen.org/appcontrol/operation/setting/wifi";
158     }
159 }