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 / tableView.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 TableView_PROPERTIES_HELPER(NameSpace, ClassName)
19 %typemap(cscode) NameSpace::ClassName %{
20
21 /* Properties earlier added by Ruby Script */
22
23   public int Rows
24   {
25     get
26     {
27       int temp = 0;
28       GetProperty( TableView.Property.ROWS).Get( ref temp );
29       return temp;
30     }
31     set
32     {
33       SetProperty( TableView.Property.ROWS, new Dali.Property.Value( value ) );
34     }
35   }
36   public int Columns
37   {
38     get
39     {
40       int temp = 0;
41       GetProperty( TableView.Property.COLUMNS).Get( ref temp );
42       return temp;
43     }
44     set
45     {
46       SetProperty( TableView.Property.COLUMNS, new Dali.Property.Value( value ) );
47     }
48   }
49   public Dali.CSharp.Size CellPadding
50   {
51     get
52     {
53       Vector2 temp = new Vector2(0.0f,0.0f);
54       GetProperty( TableView.Property.CELL_PADDING).Get(  temp );
55       Dali.CSharp.Size ret = new Dali.CSharp.Size(temp.x, temp.y);
56       return ret;
57     }
58     set
59     {
60       SetProperty( TableView.Property.CELL_PADDING, new Dali.Property.Value( value ) );
61     }
62   }
63   public Dali.Property.Map LayoutRows
64   {
65     get
66     {
67       Dali.Property.Map temp = new Dali.Property.Map();
68       GetProperty( TableView.Property.LAYOUT_ROWS).Get(  temp );
69       return temp;
70     }
71     set
72     {
73       SetProperty( TableView.Property.LAYOUT_ROWS, new Dali.Property.Value( value ) );
74     }
75   }
76   public Dali.Property.Map LayoutColumns
77   {
78     get
79     {
80       Dali.Property.Map temp = new Dali.Property.Map();
81       GetProperty( TableView.Property.LAYOUT_COLUMNS).Get(  temp );
82       return temp;
83     }
84     set
85     {
86       SetProperty( TableView.Property.LAYOUT_COLUMNS, new Dali.Property.Value( value ) );
87     }
88   }
89
90 /* Properties ends */
91 %}
92 %enddef
93
94 namespace Dali
95 {
96   TableView_PROPERTIES_HELPER(Dali::Toolkit, TableView);
97 }