Manual binding for C# Actor APIs e.g. RaiseToTop, LowerBelow, etc.
[platform/core/uifw/dali-toolkit.git] / plugins / dali-swig / SWIG / dali.i
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 #if defined(SWIGCSHARP)
19 %module(directors="1") NDalic
20 #define DALI_EXPORT_API
21 #define DALI_IMPORT_API
22 #define DALI_INTERNAL
23 #else
24 %module Dali
25 #endif
26
27 %include exception.i
28 %include dali-gc.i
29
30 %exception {
31     try {
32         $action
33     } catch (std::out_of_range& e) {
34         SWIG_exception(SWIG_IndexError,const_cast<char*>(e.what()));
35     } catch (std::exception& e) {
36         SWIG_exception(SWIG_RuntimeError,const_cast<char*>(e.what()));
37     } catch (...) {
38         SWIG_exception(SWIG_UnknownError,"unknown error");
39     }
40 }
41
42 #if defined(SWIGCSHARP)
43 %{
44 #define SWIGSTDCALL
45 %}
46 #endif
47
48 %{
49 #include <dali/dali.h>
50 #include <dali-toolkit/dali-toolkit.h>
51
52 #include <dali/devel-api/actors/actor-devel.h>
53
54 #include <dali/public-api/math/matrix.h>
55 #include <dali/public-api/math/matrix3.h>
56 #include <dali/public-api/math/viewport.h>
57 #include <dali/public-api/object/property-key.h>
58 #include <dali/devel-api/object/csharp-type-info.h>
59 #include <dali/devel-api/object/csharp-type-registry.h>
60
61 #include <dali/public-api/adaptor-framework/timer.h>
62 #include <dali/public-api/adaptor-framework/window.h>
63 #include <dali/public-api/adaptor-framework/style-change.h>
64 #include <dali/devel-api/adaptor-framework/drag-and-drop-detector.h>
65 #include <dali/devel-api/adaptor-framework/application-extensions.h>
66
67 #include <dali/devel-api/images/nine-patch-image.h>
68
69 #include <dali-toolkit/devel-api/builder/builder.h>
70
71 #include <dali-toolkit/devel-api/focus-manager/keyinput-focus-manager.h>
72
73 #include <dali-toolkit/devel-api/controls/popup/popup.h>
74 #include <dali-toolkit/devel-api/controls/progress-bar/progress-bar.h>
75 #include <dali-toolkit/devel-api/controls/gaussian-blur-view/gaussian-blur-view.h>
76 #include <dali-toolkit/devel-api/controls/page-turn-view/page-factory.h>
77 #include <dali-toolkit/devel-api/controls/page-turn-view/page-turn-view.h>
78 #include <dali-toolkit/devel-api/controls/page-turn-view/page-turn-landscape-view.h>
79 #include <dali-toolkit/devel-api/controls/page-turn-view/page-turn-portrait-view.h>
80 #include <dali-toolkit/devel-api/controls/buttons/toggle-button.h>
81
82 #include <dali-toolkit/devel-api/visual-factory/visual-base.h>
83 #include <dali-toolkit/devel-api/visual-factory/visual-factory.h>
84 #include <dali-toolkit/devel-api/visual-factory/transition-data.h>
85
86 #include <dali-toolkit/devel-api/visuals/text-visual-properties.h>
87
88 #include <dali-toolkit/devel-api/controls/tooltip/tooltip-properties.h>
89
90 #include <dali-toolkit/public-api/controls/scrollable/item-view/item-view-declarations.h>
91
92 // add here SWIG version check
93
94 #if defined(_MSC_VER)         // Microsoft Visual C++ 6.0
95 // disable Swig-dependent warnings
96
97 // 'identifier1' has C-linkage specified,
98 // but returns UDT 'identifier2' which is incompatible with C
99 #pragma warning(disable: 4190)
100
101 // 'int' : forcing value to bool 'true' or 'false' (performance warning)
102 #pragma warning(disable: 4800)
103
104 // debug info too long etc etc
105 #pragma warning(disable: 4786)
106 #endif
107 %}
108
109 %include stl.i
110 %include exception.i
111 %include typemaps.i
112 %include std_common.i
113 %include carrays.i
114
115 %include cpointer.i
116 %pointer_class(float, floatp);
117 %pointer_class(int, intp);
118 %pointer_class(double, doublep);
119 %pointer_class(unsigned int, uintp);
120 %pointer_class(unsigned short, ushortp);
121 %pointer_cast(int, unsigned int, int_to_uint);
122
123 %apply unsigned char { uint8_t };
124 %apply unsigned short int { uint16_t };
125 %apply unsigned int { uint32_t };
126 %apply int { int32_t };
127
128 #if defined(SWIGCSHARP)
129
130 %typemap(ctype)  void * "void *"
131 %typemap(imtype) void * "System.IntPtr"
132 %typemap(cstype) void * "System.IntPtr"
133 %typemap(csin)   void * "$csinput"
134 %typemap(in)     void * %{ $1 = $input; %}
135 %typemap(out)    void * %{ $result = $1; %}
136 %typemap(csout)  void * { return $imcall; }
137
138 #endif
139
140 #if defined(SWIGCSHARP)
141
142 // string &
143 %typemap(ctype) std::string & "char**"
144 %typemap(imtype) std::string & "out string"
145 %typemap(cstype) std::string & "out string"
146
147 //C++
148 %typemap(in, canthrow=1) std::string &
149 %{
150   //typemap in
151   std::string temp;
152   $1 = &temp;
153 %}
154
155 %typemap(argout) std::string &
156 %{
157   //Typemap argout in c++ file.
158   //This will convert c++ string to c# string
159   *$input = SWIG_csharp_string_callback($1->c_str());
160 %}
161
162 %typemap(argout) const std::string &
163 %{
164   //argout typemap for const std::string&
165 %}
166
167 %typemap(csin) std::string & "out $csinput"
168
169 %typemap(throws, canthrow=1) string &
170 %{
171   SWIG_CSharpSetPendingException(SWIG_CSharpApplicationException, $1.c_str());
172   return $null;
173 %}
174
175
176
177
178 // Type registry type maps
179 %typemap(cstype) Dali::TypeInfo::CreateFunction "System.Delegate"
180 %typemap(csin, pre ="System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate($csinput); ")
181   Dali::TypeInfo::CreateFunction "new System.Runtime.InteropServices.HandleRef(null, ip)" // null was this
182
183 %typemap(cstype) Dali::CSharpTypeInfo::CreateFunction "System.Delegate"
184 %typemap(csin, pre ="System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate($csinput); ")
185    Dali::CSharpTypeInfo::CreateFunction "new System.Runtime.InteropServices.HandleRef(null, ip)" // null was this
186
187
188
189 %typemap(cstype) Dali::CSharpTypeInfo::SetPropertyFunction "System.Delegate"
190 %typemap(csin, pre ="System.IntPtr ip = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate($csinput); ")
191    Dali::CSharpTypeInfo::SetPropertyFunction "new System.Runtime.InteropServices.HandleRef(null, ip)" // null was this
192
193
194
195 %typemap(cstype) Dali::CSharpTypeInfo::GetPropertyFunction "System.Delegate"
196 %typemap(csin, pre ="System.IntPtr ip2 = System.Runtime.InteropServices.Marshal.GetFunctionPointerForDelegate($csinput); ")
197    Dali::CSharpTypeInfo::GetPropertyFunction "new System.Runtime.InteropServices.HandleRef(null, ip2)" // null was this
198
199
200
201
202
203
204
205 #endif
206
207
208
209 /**
210  * Extend the type registry to allow for registering of C# controls and custom properties
211  */
212 %extend Dali::TypeRegistration {
213
214
215    static void RegisterControl( const std::string& controlName, Dali::CSharpTypeInfo::CreateFunction createFunc )
216    {
217      Dali::CSharpTypeRegistry::RegisterType( controlName, typeid( Dali::Toolkit::Control), createFunc );
218    };
219
220
221    static void RegisterProperty( const std::string& controlName,
222                     const std::string& propertyName,
223                     int index,
224                     Property::Type type,
225                     Dali::CSharpTypeInfo::SetPropertyFunction setFunc,
226                     Dali::CSharpTypeInfo::GetPropertyFunction getFunc )
227    {
228      Dali::CSharpTypeRegistry::RegisterProperty( controlName, propertyName, index, type, setFunc, getFunc );
229    };
230
231 };
232
233
234 %ignore operator<<;
235 %ignore *::GetImplementation();
236 %ignore *::GetImplementation(Dali::BaseHandle&);
237
238 %{
239 using namespace Dali;
240 using namespace Dali::Toolkit;
241 %}
242
243 %feature("director") Dali::Toolkit::Internal::Control;
244 %feature("notabstract") Dali::Toolkit::FixedRuler;
245 %feature("notabstract") Dali::Toolkit::DefaultRuler;
246
247 // Note... all the typemap declarations have to be included before the DALi C++ head files are include otherwise
248 // they have no effect.
249
250 %include signal-parameters.i
251 %include signals.i
252
253 %include doxygen.i
254
255 %include events/actor-event.i
256 %include events/accessibilitymanager-event.i
257 %include events/application-event.i
258 %include events/animation-event.i
259 %include events/button-event.i
260 %include events/builder-event.i
261 %include events/control-event.i
262 %include events/gaussian-blur-view-event.i
263 %include events/image-event.i
264 %include events/itemview-event.i
265 %include events/objectregistry-event.i
266 %include events/popup-event.i
267 %include events/pinchgesture-event.i
268 %include events/pageturnview-event.i
269 %include events/pangesture-event.i
270 %include events/progress-bar-event.i
271 %include events/propertynotification-event.i
272 %include events/longpressgesture-event.i
273 %include events/rectangle.i
274 %include events/padding.i
275 %include events/resourceimage-event.i
276 %include events/scrollable-event.i
277 %include events/scrollbar-event.i
278 %include events/scrollview-event.i
279 %include events/slider-event.i
280 %include events/stage-event.i
281 %include events/stylemanager-event.i
282 %include events/tapgesture-event.i
283 %include events/texteditor-event.i
284 %include events/textfield-event.i
285 %include events/timer-event.i
286 %include events/videoview-event.i
287
288 %include alphafunction.i
289 %include rotation.i
290 %include name-changed.i
291 %include property-value.i
292 %include dali-operator.i
293 %include devel-properties.i
294
295 %include gestures/hover.i
296 %include gestures/gesture.i
297 %include gestures/long-press-gesture.i
298 %include gestures/pan-gesture.i
299 %include gestures/tap-gesture.i
300 %include gestures/pinch-gesture.i
301 %include gestures/wheel.i
302 %include gestures/touch.i
303 %include gestures/key.i
304
305 %include dali-core.i
306 %include dali-adaptor.i
307 %include dali-toolkit.i
308