[NUI] TCSACR-226 code change (#1032)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / ConnectionTrackerInterface.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 using System;
18 using System.Runtime.InteropServices;
19 using System.ComponentModel;
20
21 namespace Tizen.NUI
22 {
23     internal class ConnectionTrackerInterface : SignalObserver
24     {
25         private global::System.Runtime.InteropServices.HandleRef swigCPtr;
26
27         internal ConnectionTrackerInterface(global::System.IntPtr cPtr, bool cMemoryOwn) : base(Interop.ConnectionTracker.ConnectionTrackerInterface_SWIGUpcast(cPtr), cMemoryOwn)
28         {
29             swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
30         }
31
32         internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ConnectionTrackerInterface obj)
33         {
34             return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
35         }
36
37         /// <summary>
38         /// Dispose
39         /// </summary>
40         /// <since_tizen> 4 </since_tizen>
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                     Interop.ConnectionTracker.delete_ConnectionTrackerInterface(swigCPtr);
58                 }
59                 swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
60             }
61
62             base.Dispose(type);
63         }
64
65         /// <summary>
66         /// Called when a signal is connected.
67         /// </summary>
68         /// <param name="slotObserver">The slot observer i.e. a signal. Ownership is not passed</param>
69         /// <param name="callback">The call back. Ownership is not passed</param>
70         /// <since_tizen> 4 </since_tizen>
71         public virtual void SignalConnected(SlotObserver slotObserver, SWIGTYPE_p_CallbackBase callback)
72         {
73             Interop.ConnectionTracker.ConnectionTrackerInterface_SignalConnected(swigCPtr, SlotObserver.getCPtr(slotObserver), SWIGTYPE_p_CallbackBase.getCPtr(callback));
74             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
75         }
76     }
77 }