[NUI] Fix Svace issue (#949)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / NUIEventType.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 using Tizen.Applications.CoreBackend;
19
20 namespace Tizen.NUI
21 {
22     /// <summary>
23     /// Class that represents the type of NUI event for backends. This class can be converted from string type.
24     /// </summary>
25     /// <since_tizen> 4 </since_tizen>
26     public class NUIEventType : EventType
27     {
28         /// <summary>
29         /// Initializes the EventType class.
30         /// </summary>
31         /// <param name="name">The name of event type.</param>
32         /// <since_tizen> 4 </since_tizen>
33         public NUIEventType(string name) : base(name)
34         {
35         }
36
37         /// <summary>
38         /// Pre-defined event type. "TimeTick"
39         /// </summary>
40         /// <since_tizen> 4 </since_tizen>
41         public static readonly NUIEventType TimeTick = "TimeTick";
42
43         /// <summary>
44         /// Pre-defined event type. "AmbientTick"
45         /// </summary>
46         /// <since_tizen> 4 </since_tizen>
47         public static readonly NUIEventType AmbientTick = "AmbientTick";
48
49         /// <summary>
50         /// Pre-defined event type. "AmbientChanged"
51         /// </summary>
52         /// <since_tizen> 4 </since_tizen>
53         public static readonly NUIEventType AmbientChanged = "AmbientChanged";
54
55         /// <summary>
56         /// Converts a string to NUIEventType instance.
57         /// </summary>
58         /// <since_tizen> 4 </since_tizen>
59         public static implicit operator NUIEventType(string value)
60         {
61             return new NUIEventType(value);
62         }
63     }
64 }