DALi C# binding - Write pure C# Color & Position classes and use typemaps to do the...
[platform/core/uifw/dali-toolkit.git] / plugins / dali-swig / SWIG / model3DView.i
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
18 %define MODEL3DVIEW_PROPERTIES_HELPER(NameSpace, ClassName)
19 %typemap(cscode) NameSpace::ClassName %{
20
21 /* Properties earlier added by Ruby Script */
22
23   public string GeometryUrl
24   {
25     get
26     {
27       string temp;
28       GetProperty( Model3dView.Property.GEOMETRY_URL).Get( out temp );
29       return temp;
30     }
31     set
32     {
33       SetProperty( Model3dView.Property.GEOMETRY_URL, new Dali.Property.Value( value ) );
34     }
35   }
36   public string MaterialUrl
37   {
38     get
39     {
40       string temp;
41       GetProperty( Model3dView.Property.MATERIAL_URL).Get( out temp );
42       return temp;
43     }
44     set
45     {
46       SetProperty( Model3dView.Property.MATERIAL_URL, new Dali.Property.Value( value ) );
47     }
48   }
49   public string ImagesUrl
50   {
51     get
52     {
53       string temp;
54       GetProperty( Model3dView.Property.IMAGES_URL).Get( out temp );
55       return temp;
56     }
57     set
58     {
59       SetProperty( Model3dView.Property.IMAGES_URL, new Dali.Property.Value( value ) );
60     }
61   }
62   public int IlluminationType
63   {
64     get
65     {
66       int temp = 0;
67       GetProperty( Model3dView.Property.ILLUMINATION_TYPE).Get( ref temp );
68       return temp;
69     }
70     set
71     {
72       SetProperty( Model3dView.Property.ILLUMINATION_TYPE, new Dali.Property.Value( value ) );
73     }
74   }
75   public string Texture0Url
76   {
77     get
78     {
79       string temp;
80       GetProperty( Model3dView.Property.TEXTURE0_URL).Get( out temp );
81       return temp;
82     }
83     set
84     {
85       SetProperty( Model3dView.Property.TEXTURE0_URL, new Dali.Property.Value( value ) );
86     }
87   }
88   public string Texture1Url
89   {
90     get
91     {
92       string temp;
93       GetProperty( Model3dView.Property.TEXTURE1_URL).Get( out temp );
94       return temp;
95     }
96     set
97     {
98       SetProperty( Model3dView.Property.TEXTURE1_URL, new Dali.Property.Value( value ) );
99     }
100   }
101   public string Texture2Url
102   {
103     get
104     {
105       string temp;
106       GetProperty( Model3dView.Property.TEXTURE2_URL).Get( out temp );
107       return temp;
108     }
109     set
110     {
111       SetProperty( Model3dView.Property.TEXTURE2_URL, new Dali.Property.Value( value ) );
112     }
113   }
114   public Dali.CSharp.Position LightPosition
115   {
116     get
117     {
118       Vector3 temp = new Vector3(0.0f,0.0f,0.0f);
119       GetProperty( Model3dView.Property.LIGHT_POSITION).Get(  temp );
120       Dali.CSharp.Position ret = new Dali.CSharp.Position(temp.x, temp.y, temp.z);
121       return ret;
122     }
123     set
124     {
125       SetProperty( Model3dView.Property.LIGHT_POSITION, new Dali.Property.Value( value ) );
126     }
127   }
128
129 /* Properties ends */
130
131 %}
132 %enddef
133
134 namespace Dali
135 {
136   MODEL3DVIEW_PROPERTIES_HELPER(Dali::Toolkit, Model3dView);
137 }