[NUI] Fix build warning & clean code [CA1051]
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / GLWindowResizedSignal.cs
1 /*
2  * Copyright(c) 2020 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 GLWindowResizedSignal : Disposable
21     {
22
23         internal GLWindowResizedSignal(global::System.IntPtr cPtr, bool cMemoryOwn) : base(cPtr, cMemoryOwn)
24         {
25         }
26
27         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
28         {
29             Interop.GLWindowResizedSignal.GlWindowDeleteResizedSignal(swigCPtr);
30         }
31
32         public bool Empty()
33         {
34             bool ret = Interop.GLWindowResizedSignal.GlWindowResizedSignalEmpty(SwigCPtr);
35             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
36             return ret;
37         }
38
39         public uint GetConnectionCount()
40         {
41             uint ret = Interop.GLWindowResizedSignal.GlWindowResizedSignalGetConnectionCount(SwigCPtr);
42             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
43             return ret;
44         }
45
46         public void Connect(System.Delegate func)
47         {
48             System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate<System.Delegate>(func);
49             {
50                 Interop.GLWindowResizedSignal.GlWindowResizedSignalConnect(SwigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip));
51                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
52             }
53         }
54
55         public void Disconnect(System.Delegate func)
56         {
57             System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate<System.Delegate>(func);
58             {
59                 Interop.GLWindowResizedSignal.GlWindowResizedSignalDisconnect(SwigCPtr, new System.Runtime.InteropServices.HandleRef(this, ip));
60                 if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
61             }
62         }
63
64         public void Emit(Size2D arg)
65         {
66             Interop.GLWindowResizedSignal.GlWindowResizedSignalEmit(SwigCPtr, Size2D.getCPtr(arg));
67             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
68         }
69
70         public GLWindowResizedSignal() : this(Interop.GLWindowResizedSignal.NewGlWindowResizedSignal(), true)
71         {
72             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
73         }
74     }
75 }