bbdb9bc6d87577b8c9f8ddf9806df8ff91b6b67a
[platform/core/uifw/dali-toolkit.git] / plugins / dali-swig / SWIG / progressBar.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 PROGRESSBAR_PROPERTIES_HELPER(NameSpace, ClassName)
19 %typemap(cscode) NameSpace::ClassName %{
20
21 /* Properties earlier added by Ruby Script */
22
23   public float ProgressValue
24   {
25     get
26     {
27       float temp = 0.0f;
28       GetProperty( ProgressBar.Property.PROGRESS_VALUE).Get( ref temp );
29       return temp;
30     }
31     set
32     {
33       SetProperty( ProgressBar.Property.PROGRESS_VALUE, new Dali.Property.Value( value ) );
34     }
35   }
36   public Dali.Property.Map TrackVisual
37   {
38     get
39     {
40       Dali.Property.Map temp = new Dali.Property.Map();
41       GetProperty( ProgressBar.Property.TRACK_VISUAL).Get(  temp );
42       return temp;
43     }
44     set
45     {
46       SetProperty( ProgressBar.Property.TRACK_VISUAL, new Dali.Property.Value( value ) );
47     }
48   }
49   public Dali.Property.Map ProgressVisual
50   {
51     get
52     {
53       Dali.Property.Map temp = new Dali.Property.Map();
54       GetProperty( ProgressBar.Property.PROGRESS_VISUAL).Get(  temp );
55       return temp;
56     }
57     set
58     {
59       SetProperty( ProgressBar.Property.PROGRESS_VISUAL, new Dali.Property.Value( value ) );
60     }
61   }
62
63 /* Properties ends */
64
65 %}
66 %enddef
67
68 namespace Dali
69 {
70   PROGRESSBAR_PROPERTIES_HELPER(Dali::Toolkit, ProgressBar);
71 }