Changes after Set/Get synchronous behaviour of registered animatable & custom properties
[platform/core/uifw/dali-toolkit.git] / plugins / dali-swig / manual / cpp / event-thread-callback-wrap.cpp
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
18 #ifndef CSHARP_EVENT_THREAD_CALLBACK
19 #define CSHARP_EVENT_THREAD_CALLBACK
20 #endif
21
22 #include "common.h"
23 #include <dali/devel-api/adaptor-framework/event-thread-callback.h>
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 typedef void (SWIGSTDCALL* SWIG_CallbackMakeCallback)(void);
30
31 SWIGEXPORT void * SWIGSTDCALL CSharp_Dali_new_EventThreadCallback(SWIG_CallbackMakeCallback callbackOnMakeCallback) {
32   void * jresult ;
33   void (*arg1)(void) = (void (*)(void)) 0 ;
34   Dali::EventThreadCallback *result = 0 ;
35
36   arg1 = (void (*)(void))callbackOnMakeCallback;
37   {
38     try {
39       result = (Dali::EventThreadCallback *)new Dali::EventThreadCallback((Dali::CallbackBase *)Dali::MakeCallback(arg1));
40     } catch (std::out_of_range& e) {
41       {
42         SWIG_CSharpException(SWIG_IndexError, const_cast<char*>(e.what())); return 0;
43       };
44     } catch (std::exception& e) {
45       {
46         SWIG_CSharpException(SWIG_RuntimeError, const_cast<char*>(e.what())); return 0;
47       };
48     } catch (...) {
49       {
50         SWIG_CSharpException(SWIG_UnknownError, "unknown error"); return 0;
51       };
52     }
53   }
54   jresult = (void *)result;
55   return jresult;
56 }
57
58 SWIGEXPORT void SWIGSTDCALL CSharp_Dali_delete_EventThreadCallback(void * jarg1) {
59   Dali::EventThreadCallback *arg1 = (Dali::EventThreadCallback *) 0 ;
60
61   arg1 = (Dali::EventThreadCallback *)jarg1;
62   {
63     try {
64       delete arg1;
65     } catch (std::out_of_range& e) {
66       {
67         SWIG_CSharpException(SWIG_IndexError, const_cast<char*>(e.what())); return ;
68       };
69     } catch (std::exception& e) {
70       {
71         SWIG_CSharpException(SWIG_RuntimeError, const_cast<char*>(e.what())); return ;
72       };
73     } catch (...) {
74       {
75         SWIG_CSharpException(SWIG_UnknownError, "unknown error"); return ;
76       };
77     }
78   }
79 }
80
81
82 SWIGEXPORT void SWIGSTDCALL CSharp_Dali_EventThreadCallback_Trigger(void * jarg1) {
83   Dali::EventThreadCallback *arg1 = (Dali::EventThreadCallback *) 0 ;
84
85   arg1 = (Dali::EventThreadCallback *)jarg1;
86   {
87     try {
88       (arg1)->Trigger();
89     } catch (std::out_of_range& e) {
90       {
91         SWIG_CSharpException(SWIG_IndexError, const_cast<char*>(e.what())); return ;
92       };
93     } catch (std::exception& e) {
94       {
95         SWIG_CSharpException(SWIG_RuntimeError, const_cast<char*>(e.what())); return ;
96       };
97     } catch (...) {
98       {
99         SWIG_CSharpException(SWIG_UnknownError, "unknown error"); return ;
100       };
101     }
102   }
103 }
104
105 #ifdef __cplusplus
106 }
107 #endif //CSHARP_EVENT_THREAD_CALLBACK
108