2da11a699dc87ac7043dfac5a5cfb9aac4dbca91
[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         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
24         protected bool swigCMemOwn;
25         /// <since_tizen> 3 </since_tizen>
26         public delegate void CallbackDelegate();
27
28         internal EventThreadCallback(global::System.IntPtr cPtr, bool cMemoryOwn)
29         {
30             swigCMemOwn = cMemoryOwn;
31             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
32         }
33
34         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(EventThreadCallback obj)
35         {
36             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
37         }
38
39         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
40         [EditorBrowsable(EditorBrowsableState.Never)]
41         protected override void Dispose(DisposeTypes type)
42         {
43             if (disposed)
44             {
45                 return;
46             }
47
48             //Release your own unmanaged resources here.
49             //You should not access any managed member here except static instance.
50             //because the execution order of Finalizes is non-deterministic.
51
52             if (swigCPtr.Handle != global::System.IntPtr.Zero)
53             {
54                 if (swigCMemOwn)
55                 {
56                     swigCMemOwn = false;
57                     //NDalicManualPINVOKE.delete_EventThreadCallback(swigCPtr);
58                 }
59                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
60             }
61
62             base.Dispose(type);
63         }
64
65         public EventThreadCallback(CallbackDelegate func) : this(Interop.EventThreadCallback.new_EventThreadCallback(func), true)
66         {
67             if (NDalicPINVOKE.SWIGPendingException.Pending)
68                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
69         }
70
71         public void Trigger()
72         {
73             if ((System.IntPtr)swigCPtr != global::System.IntPtr.Zero)
74             {
75                 Interop.EventThreadCallback.EventThreadCallback_Trigger(swigCPtr);
76             }
77
78             if (NDalicPINVOKE.SWIGPendingException.Pending)
79                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
80         }
81     }
82 }