Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Applications.RemoteView / Tizen.Applications / RemoteWindow.cs
1 /*
2  * Copyright (c) 2017 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 ElmSharp;
18 using System;
19
20 namespace Tizen.Applications
21 {
22     internal class RemoteWindow : Layout
23     {
24         private static IntPtr _handle;
25
26         private static EvasObject PrepareHandle(EvasObject parent, string widgetId, string content, double period)
27         {
28             _handle = Interop.WidgetViewerEvas.AddWidget(parent, widgetId, content, period);
29
30             int err = Internals.Errors.ErrorFacts.GetLastResult();
31             RemoteView.CheckException((Interop.WidgetViewerEvas.ErrorCode)err);
32
33             if (_handle == IntPtr.Zero)
34                 throw new InvalidOperationException("Return null pointer");
35
36             return parent;
37         }
38
39         internal RemoteWindow(EvasObject parent, string widgetId, string content, double period)
40             : base(PrepareHandle(parent, widgetId, content, period))
41         {
42         }
43
44         protected override IntPtr CreateHandle(EvasObject parent)
45         {
46             IntPtr handle = _handle;
47
48             _handle = IntPtr.Zero;
49             return handle;
50         }
51     }
52 }
53