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 / flexContainer.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 FLEXCONTAINER_PROPERTIES_HELPER(NameSpace, ClassName)
19 %typemap(cscode) NameSpace::ClassName %{
20
21 /* Properties earlier added by Ruby Script */
22
23   public int ContentDirection
24   {
25     get
26     {
27       int temp = 0;
28       GetProperty( FlexContainer.Property.CONTENT_DIRECTION).Get( ref temp );
29       return temp;
30     }
31     set
32     {
33       SetProperty( FlexContainer.Property.CONTENT_DIRECTION, new Dali.Property.Value( value ) );
34     }
35   }
36   public int FlexDirection
37   {
38     get
39     {
40       int temp = 0;
41       GetProperty( FlexContainer.Property.FLEX_DIRECTION).Get( ref temp );
42       return temp;
43     }
44     set
45     {
46       SetProperty( FlexContainer.Property.FLEX_DIRECTION, new Dali.Property.Value( value ) );
47     }
48   }
49   public int FlexWrap
50   {
51     get
52     {
53       int temp = 0;
54       GetProperty( FlexContainer.Property.FLEX_WRAP).Get( ref temp );
55       return temp;
56     }
57     set
58     {
59       SetProperty( FlexContainer.Property.FLEX_WRAP, new Dali.Property.Value( value ) );
60     }
61   }
62   public int JustifyContent
63   {
64     get
65     {
66       int temp = 0;
67       GetProperty( FlexContainer.Property.JUSTIFY_CONTENT).Get( ref temp );
68       return temp;
69     }
70     set
71     {
72       SetProperty( FlexContainer.Property.JUSTIFY_CONTENT, new Dali.Property.Value( value ) );
73     }
74   }
75   public int AlignItems
76   {
77     get
78     {
79       int temp = 0;
80       GetProperty( FlexContainer.Property.ALIGN_ITEMS).Get( ref temp );
81       return temp;
82     }
83     set
84     {
85       SetProperty( FlexContainer.Property.ALIGN_ITEMS, new Dali.Property.Value( value ) );
86     }
87   }
88   public int AlignContent
89   {
90     get
91     {
92       int temp = 0;
93       GetProperty( FlexContainer.Property.ALIGN_CONTENT).Get( ref temp );
94       return temp;
95     }
96     set
97     {
98       SetProperty( FlexContainer.Property.ALIGN_CONTENT, new Dali.Property.Value( value ) );
99     }
100   }
101
102 /* Properties ends */
103
104 %}
105 %enddef
106
107 namespace Dali
108 {
109   FLEXCONTAINER_PROPERTIES_HELPER(Dali::Toolkit, FlexContainer);
110 }
111
112