Release 4.0.0-preview1-00301
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / Type.cs
1 /*
2  * Copyright(c) 2017 Samsung Electronics Co., Ltd.
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
18 namespace Tizen.NUI
19 {
20     /// <summary>
21     /// An enum of Device Class types.
22     /// </summary>
23     /// <since_tizen> 3 </since_tizen>
24     public enum Type
25     {
26         /// <summary>
27         /// Not a device.
28         /// </summary>
29         /// <since_tizen> 3 </since_tizen>
30         NONE,
31         /// <summary>
32         /// The user/seat (the user themselves).
33         /// </summary>
34         /// <since_tizen> 3 </since_tizen>
35         USER,
36         /// <summary>
37         /// A regular keyboard, numberpad or attached buttons.
38         /// </summary>
39         /// <since_tizen> 3 </since_tizen>
40         KEYBOARD,
41         /// <summary>
42         /// A mouse, trackball or touchpad relative motion device.
43         /// </summary>
44         /// <since_tizen> 3 </since_tizen>
45         MOUSE,
46         /// <summary>
47         /// A touchscreen with fingers or stylus.
48         /// </summary>
49         /// <since_tizen> 3 </since_tizen>
50         TOUCH,
51         /// <summary>
52         /// A special pen device.
53         /// </summary>
54         /// <since_tizen> 3 </since_tizen>
55         PEN,
56         /// <summary>
57         /// A pointing device based on laser, infrared or similar technology.
58         /// </summary>
59         /// <since_tizen> 3 </since_tizen>
60         POINTER,
61         /// <summary>
62         /// A gamepad controller or joystick.
63         /// </summary>
64         /// <since_tizen> 3 </since_tizen>
65         GAMEPAD
66     }
67
68 }