[NUI] TCSACR-226 code change (#1032)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / DaliEventHandler.cs
1 /*
2  * Copyright (c) 2016 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
20 namespace Tizen.NUI
21 {
22     /// <summary>
23     /// [UnmanagedFunctionPointer(CallingConvention.StdCall)]
24     /// </summary>
25     /// <since_tizen> 3 </since_tizen>
26     [UnmanagedFunctionPointer(CallingConvention.StdCall)]
27     public delegate R DaliEventHandlerWithReturnType<T, U, R>(T source, U e);
28
29     /// <summary>
30     /// [UnmanagedFunctionPointer(CallingConvention.StdCall)]
31     /// </summary>
32     /// <since_tizen> 3 </since_tizen>
33     [UnmanagedFunctionPointer(CallingConvention.StdCall)]
34     internal delegate void EventCallbackDelegateType0();
35
36     [UnmanagedFunctionPointer(CallingConvention.StdCall)]
37     internal delegate void EventCallbackDelegateType1(IntPtr arg1);
38
39     /// <summary>
40     /// [UnmanagedFunctionPointer(CallingConvention.StdCall)]
41     /// this should be removed with EventHandler from .NET
42     /// </summary>
43     /// <since_tizen> 3 </since_tizen>
44     [UnmanagedFunctionPointer(CallingConvention.StdCall)]
45     public delegate void DaliEventHandler<T, U>(T source, U e);
46
47     /// <summary>
48     /// [UnmanagedFunctionPointer(CallingConvention.StdCall)]
49     /// </summary>
50     /// <since_tizen> 3 </since_tizen>
51     [UnmanagedFunctionPointer(CallingConvention.StdCall)]
52     public delegate R EventHandlerWithReturnType<T, U, R>(T source, U e);
53 }