4aea081f41c7666fda772bbf986933d83ae4cde2
[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
31         /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API.
32         [EditorBrowsable(EditorBrowsableState.Never)]
33         protected override void ReleaseSwigCPtr(System.Runtime.InteropServices.HandleRef swigCPtr)
34         {
35             //NDalicManualPINVOKE.DeleteEventThreadCallback(swigCPtr);
36         }
37
38         public EventThreadCallback(CallbackDelegate func) : this(Interop.EventThreadCallback.NewEventThreadCallback(func), true)
39         {
40             if (NDalicPINVOKE.SWIGPendingException.Pending)
41                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
42         }
43
44         public void Trigger()
45         {
46             if ((System.IntPtr)swigCPtr != global::System.IntPtr.Zero)
47             {
48                 Interop.EventThreadCallback.Trigger(swigCPtr);
49             }
50
51             if (NDalicPINVOKE.SWIGPendingException.Pending)
52                 throw NDalicPINVOKE.SWIGPendingException.Retrieve();
53         }
54     }
55 }