[NUI] Refactor dispose pattern to reduce duplication (#1112)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / EventThreadCallback.cs
1 /*
2  * Copyright (c) 2019 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 using System.ComponentModel;
18
19 namespace Tizen.NUI
20 {
21     internal class EventThreadCallback : Disposable
22     {
23         /// <since_tizen> 3 </since_tizen>
24         public delegate void CallbackDelegate();
25
26         internal EventThreadCallback(global::System.IntPtr cPtr, bool cMemoryOwn) : base(cPtr, cMemoryOwn)
27         {
28         }
29
30         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(EventThreadCallback obj)
31         {
32             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
33         }
34
35         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
36         [EditorBrowsable(EditorBrowsableState.Never)]
37         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
38         {
39             //NDalicManualPINVOKE.delete_EventThreadCallback(swigCPtr);
40         }
41
42         public EventThreadCallback(CallbackDelegate func) : this(Interop.EventThreadCallback.new_EventThreadCallback(func), true)
43         {
44             if (NDalicPINVOKE.SWIGPendingException.Pending)
45                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
46         }
47
48         public void Trigger()
49         {
50             if ((System.IntPtr)swigCPtr != global::System.IntPtr.Zero)
51             {
52                 Interop.EventThreadCallback.EventThreadCallback_Trigger(swigCPtr);
53             }
54
55             if (NDalicPINVOKE.SWIGPendingException.Pending)
56                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
57         }
58     }
59 }