5b48224e58beaf1427690e57d6feec67d542fb79
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / CustomActor.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 CustomActor : Animatable
21     {
22
23         internal CustomActor(global::System.IntPtr cPtr, bool cMemoryOwn) : base(Interop.CustomActorImpl.CustomActor_SWIGUpcast(cPtr), cMemoryOwn)
24         {
25         }
26
27         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(CustomActor 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.CustomActorImpl.delete_CustomActor(swigCPtr);
35         }
36
37         public CustomActor() : this(Interop.CustomActorImpl.new_CustomActor__SWIG_0(), true)
38         {
39             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
40         }
41
42         public static CustomActor DownCast(BaseHandle handle)
43         {
44             CustomActor ret = Registry.GetManagedBaseHandleFromNativePtr(handle) as CustomActor;
45             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
46             return ret;
47         }
48
49         public CustomActorImpl GetImplementation()
50         {
51             CustomActorImpl ret = new CustomActorImpl(Interop.CustomActorImpl.CustomActor_GetImplementation(swigCPtr), false);
52             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
53             return ret;
54         }
55
56         public CustomActor(CustomActorImpl implementation) : this(Interop.CustomActorImpl.new_CustomActor__SWIG_1(CustomActorImpl.getCPtr(implementation)), true)
57         {
58             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
59         }
60
61         public CustomActor(CustomActor copy) : this(Interop.CustomActorImpl.new_CustomActor__SWIG_2(CustomActor.getCPtr(copy)), true)
62         {
63             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
64         }
65
66         public CustomActor Assign(CustomActor rhs)
67         {
68             CustomActor ret = new CustomActor(Interop.CustomActorImpl.CustomActor_Assign(swigCPtr, CustomActor.getCPtr(rhs)), false);
69             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
70             return ret;
71         }
72     }
73 }