Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Uix.InputMethod / Tizen.Uix.InputMethod / EditorWindow.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     /// The Editor window class
26     /// </summary>
27     public class EditorWindow : Window
28     {
29         internal static IntPtr _handle = IntPtr.Zero;
30         private IntPtr _realHandle = IntPtr.Zero;
31
32         internal EditorWindow():base("Edit")
33         {
34             _realHandle = _handle;
35         }
36
37         protected override IntPtr CreateHandle(EvasObject parent)
38         {
39             return _handle;
40         }
41
42         public IntPtr GetHandle()
43         {
44             return _handle;
45         }
46
47         /// <summary>
48         /// This API updates the input panel window's size information.
49         /// </summary>
50         /// <privilege>
51         /// http://tizen.org/privilege/ime
52         /// </privilege>
53         /// <param name="portraitWidth">The width in portrait mode</param>
54         /// <param name="portraitHeight">The height in portrait mode</param>
55         /// <param name="landscapeWidth">The width in landscape mode</param>
56         /// <param name="landscapeHeight">The height in landscape mode</param>
57         /// <exception cref="InvalidOperationException">
58         /// This can occur due to the following reasons:
59         /// 1) The application does not have the privilege to call this function
60         /// 2) IME main loop isn't started yet
61         /// </exception>
62         public static void SetSize(int portraitWidth, int portraitHeight, int landscapeWidth, int landscapeHeight)
63         {
64             ErrorCode error = ImeSetSize(portraitWidth, portraitHeight, landscapeWidth, landscapeHeight);
65             if (error != ErrorCode.None)
66             {
67                 Log.Error(LogTag, "SetSize Failed with error " + error);
68                 throw InputMethodExceptionFactory.CreateException(error);
69             }
70         }
71     }
72 }