Calculate a new height when text was changed.
[platform/core/uifw/dali-toolkit.git] / plugins / dali-sharp / sharp / internal / Model3dView.cs
1 /** Copyright (c) 2017 Samsung Electronics Co., Ltd.
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 *
15 */
16 // This File has been auto-generated by SWIG and then modified using DALi Ruby Scripts
17 //------------------------------------------------------------------------------
18 // <auto-generated />
19 //
20 // This file was automatically generated by SWIG (http://www.swig.org).
21 // Version 3.0.10
22 //
23 // Do not make changes to this file unless you know what you are doing--modify
24 // the SWIG interface file instead.
25 //------------------------------------------------------------------------------
26
27 namespace Dali {
28
29 internal class Model3dView : View {
30   private global::System.Runtime.InteropServices.HandleRef swigCPtr;
31
32   internal Model3dView(global::System.IntPtr cPtr, bool cMemoryOwn) : base(NDalicPINVOKE.Model3dView_SWIGUpcast(cPtr), cMemoryOwn) {
33     swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
34   }
35
36   internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Model3dView obj) {
37     return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
38   }
39
40   ~Model3dView() {
41     DisposeQueue.Instance.Add(this);
42   }
43
44   public override void Dispose() {
45     if (!Window.IsInstalled()) {
46       DisposeQueue.Instance.Add(this);
47       return;
48     }
49
50     lock(this) {
51       if (swigCPtr.Handle != global::System.IntPtr.Zero) {
52         if (swigCMemOwn) {
53           swigCMemOwn = false;
54           NDalicPINVOKE.delete_Model3dView(swigCPtr);
55         }
56         swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
57       }
58       global::System.GC.SuppressFinalize(this);
59       base.Dispose();
60     }
61   }
62
63
64   public class Property : global::System.IDisposable {
65     private global::System.Runtime.InteropServices.HandleRef swigCPtr;
66     protected bool swigCMemOwn;
67   
68     internal Property(global::System.IntPtr cPtr, bool cMemoryOwn) {
69       swigCMemOwn = cMemoryOwn;
70       swigCPtr = new global::System.Runtime.InteropServices.HandleRef(this, cPtr);
71     }
72   
73     internal static global::System.Runtime.InteropServices.HandleRef getCPtr(Property obj) {
74       return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr;
75     }
76   
77     ~Property() {
78       Dispose();
79     }
80   
81     public virtual void Dispose() {
82       lock(this) {
83         if (swigCPtr.Handle != global::System.IntPtr.Zero) {
84           if (swigCMemOwn) {
85             swigCMemOwn = false;
86             NDalicPINVOKE.delete_Model3dView_Property(swigCPtr);
87           }
88           swigCPtr = new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero);
89         }
90         global::System.GC.SuppressFinalize(this);
91       }
92     }
93   
94     public Property() : this(NDalicPINVOKE.new_Model3dView_Property(), true) {
95       if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
96     }
97   
98     public static readonly int GEOMETRY_URL = NDalicPINVOKE.Model3dView_Property_GEOMETRY_URL_get();
99     public static readonly int MATERIAL_URL = NDalicPINVOKE.Model3dView_Property_MATERIAL_URL_get();
100     public static readonly int IMAGES_URL = NDalicPINVOKE.Model3dView_Property_IMAGES_URL_get();
101     public static readonly int ILLUMINATION_TYPE = NDalicPINVOKE.Model3dView_Property_ILLUMINATION_TYPE_get();
102     public static readonly int TEXTURE0_URL = NDalicPINVOKE.Model3dView_Property_TEXTURE0_URL_get();
103     public static readonly int TEXTURE1_URL = NDalicPINVOKE.Model3dView_Property_TEXTURE1_URL_get();
104     public static readonly int TEXTURE2_URL = NDalicPINVOKE.Model3dView_Property_TEXTURE2_URL_get();
105     public static readonly int LIGHT_POSITION = NDalicPINVOKE.Model3dView_Property_LIGHT_POSITION_get();
106   
107   }
108
109   public Model3dView () : this (NDalicPINVOKE.Model3dView_New__SWIG_0(), true) {
110       if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
111
112   }
113   public Model3dView (string objUrl, string mtlUrl, string imagesUrl) : this (NDalicPINVOKE.Model3dView_New__SWIG_1(objUrl, mtlUrl, imagesUrl), true) {
114       if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
115
116   }
117   public Model3dView(Model3dView model3dView) : this(NDalicPINVOKE.new_Model3dView__SWIG_1(Model3dView.getCPtr(model3dView)), true) {
118     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
119   }
120
121   public Model3dView Assign(Model3dView model3dView) {
122     Model3dView ret = new Model3dView(NDalicPINVOKE.Model3dView_Assign(swigCPtr, Model3dView.getCPtr(model3dView)), false);
123     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
124     return ret;
125   }
126
127   public new static Model3dView DownCast(BaseHandle handle) {
128     Model3dView ret = new Model3dView(NDalicPINVOKE.Model3dView_DownCast(BaseHandle.getCPtr(handle)), true);
129     if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
130     return ret;
131   }
132
133   public enum IluminationTypeEnum {
134     DIFFUSE,
135     DIFFUSE_WITH_TEXTURE,
136     DIFFUSE_WITH_NORMAL_MAP
137   }
138
139   public string GeometryUrl
140   {
141     get
142     {
143       string temp;
144       GetProperty( Model3dView.Property.GEOMETRY_URL).Get( out temp );
145       return temp;
146     }
147     set
148     {
149       SetProperty( Model3dView.Property.GEOMETRY_URL, new Dali.Property.Value( value ) );
150     }
151   }
152   public string MaterialUrl
153   {
154     get
155     {
156       string temp;
157       GetProperty( Model3dView.Property.MATERIAL_URL).Get( out temp );
158       return temp;
159     }
160     set
161     {
162       SetProperty( Model3dView.Property.MATERIAL_URL, new Dali.Property.Value( value ) );
163     }
164   }
165   public string ImagesUrl
166   {
167     get
168     {
169       string temp;
170       GetProperty( Model3dView.Property.IMAGES_URL).Get( out temp );
171       return temp;
172     }
173     set
174     {
175       SetProperty( Model3dView.Property.IMAGES_URL, new Dali.Property.Value( value ) );
176     }
177   }
178   public int IlluminationType
179   {
180     get
181     {
182       int temp = 0;
183       GetProperty( Model3dView.Property.ILLUMINATION_TYPE).Get( out temp );
184       return temp;
185     }
186     set
187     {
188       SetProperty( Model3dView.Property.ILLUMINATION_TYPE, new Dali.Property.Value( value ) );
189     }
190   }
191   public string Texture0Url
192   {
193     get
194     {
195       string temp;
196       GetProperty( Model3dView.Property.TEXTURE0_URL).Get( out temp );
197       return temp;
198     }
199     set
200     {
201       SetProperty( Model3dView.Property.TEXTURE0_URL, new Dali.Property.Value( value ) );
202     }
203   }
204   public string Texture1Url
205   {
206     get
207     {
208       string temp;
209       GetProperty( Model3dView.Property.TEXTURE1_URL).Get( out temp );
210       return temp;
211     }
212     set
213     {
214       SetProperty( Model3dView.Property.TEXTURE1_URL, new Dali.Property.Value( value ) );
215     }
216   }
217   public string Texture2Url
218   {
219     get
220     {
221       string temp;
222       GetProperty( Model3dView.Property.TEXTURE2_URL).Get( out temp );
223       return temp;
224     }
225     set
226     {
227       SetProperty( Model3dView.Property.TEXTURE2_URL, new Dali.Property.Value( value ) );
228     }
229   }
230   public Vector3 LightPosition
231   {
232     get
233     {
234       Vector3 temp = new Vector3(0.0f,0.0f,0.0f);
235       GetProperty( Model3dView.Property.LIGHT_POSITION).Get(  temp );
236       return temp;
237     }
238     set
239     {
240       SetProperty( Model3dView.Property.LIGHT_POSITION, new Dali.Property.Value( value ) );
241     }
242   }
243
244 }
245
246 }