Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Uix.InputMethod / Tizen.Uix.InputMethod / OptionWindow.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 using Tizen;
18 using System;
19 using ElmSharp;
20 using static Interop.InputMethod;
21
22 namespace Tizen.Uix.InputMethod
23 {
24     /// <summary>
25     /// Option window Class
26     /// </summary>
27     public class OptionWindow : Window
28     {
29         internal static IntPtr _handle = IntPtr.Zero;
30         private IntPtr _realHandle = IntPtr.Zero;
31
32         internal OptionWindow():base("Option")
33         {
34             _realHandle = _handle;
35         }
36
37         protected override IntPtr CreateHandle(EvasObject parent)
38         {
39             return _handle;
40         }
41
42         /// <summary>
43         /// The type of option window
44         /// </summary>
45         public OptionWindowType Type
46         {
47             get;
48             internal set;
49         }
50     }
51 }