1ad53813477f437fb1f39b0a91b43e892a63a12a
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / RenderTaskList.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     internal class RenderTaskList : BaseHandle
21     {
22
23         internal RenderTaskList(global::System.IntPtr cPtr, bool cMemoryOwn) : base(Interop.RenderTask.RenderTaskListSwigUpcast(cPtr), cMemoryOwn)
24         {
25         }
26
27         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(RenderTaskList obj)
28         {
29             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
30         }
31
32         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
33         {
34             Interop.RenderTask.DeleteRenderTaskList(swigCPtr);
35         }
36
37         public RenderTaskList() : this(Interop.RenderTask.NewRenderTaskListSwig0(), true)
38         {
39             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
40         }
41
42         public static RenderTaskList DownCast(BaseHandle handle)
43         {
44             RenderTaskList ret =  Registry.GetManagedBaseHandleFromNativePtr(handle) as RenderTaskList;
45             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
46             return ret;
47         }
48
49         public RenderTaskList(RenderTaskList handle) : this(Interop.RenderTask.NewRenderTaskListSwig1(RenderTaskList.getCPtr(handle)), true)
50         {
51             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
52         }
53
54         public RenderTaskList Assign(RenderTaskList rhs)
55         {
56             RenderTaskList ret = new RenderTaskList(Interop.RenderTask.RenderTaskListAssign(swigCPtr, RenderTaskList.getCPtr(rhs)), false);
57             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
58             return ret;
59         }
60
61         public RenderTask CreateTask()
62         {
63             RenderTask ret = new RenderTask(Interop.RenderTask.RenderTaskListCreateTask(swigCPtr), true);
64             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
65             return ret;
66         }
67
68         public void RemoveTask(RenderTask task)
69         {
70             Interop.RenderTask.RenderTaskListRemoveTask(swigCPtr, RenderTask.getCPtr(task));
71             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
72         }
73
74         public uint GetTaskCount()
75         {
76             uint ret = Interop.RenderTask.RenderTaskListGetTaskCount(swigCPtr);
77             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
78             return ret;
79         }
80
81         public RenderTask GetTask(uint index)
82         {
83             RenderTask ret = new RenderTask(Interop.RenderTask.RenderTaskListGetTask(swigCPtr, index), true);
84             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
85             return ret;
86         }
87     }
88 }