Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / ElmSharp / Interop / Interop.Elementary.Table.cs
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
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 using System;
18 using System.Runtime.InteropServices;
19
20 internal static partial class Interop
21 {
22     internal static partial class Elementary
23     {
24
25         [DllImport(Libraries.Elementary)]
26         internal static extern IntPtr elm_table_add(IntPtr obj);
27
28         [DllImport(Libraries.Elementary)]
29         internal static extern void elm_table_homogeneous_set(IntPtr obj, bool homogeneous);
30
31         [DllImport(Libraries.Elementary)]
32         internal static extern bool elm_table_homogeneous_get(IntPtr obj);
33
34         [DllImport(Libraries.Elementary)]
35         internal static extern void elm_table_padding_set(IntPtr obj, int horizontal, int vertical);
36
37         [DllImport(Libraries.Elementary)]
38         internal static extern void elm_table_padding_get(IntPtr obj, out int horizontal, out int vertical);
39
40         [DllImport(Libraries.Elementary)]
41         internal static extern void elm_table_clear (IntPtr obj, bool clear);
42
43         [DllImport(Libraries.Elementary)]
44         internal static extern void elm_table_unpack (IntPtr obj, IntPtr subobj);
45
46         [DllImport(Libraries.Elementary)]
47         internal static extern void elm_table_pack(IntPtr obj, IntPtr subobj, int column, int row, int colspan, int rowspan);
48
49         [DllImport(Libraries.Elementary)]
50         internal static extern void elm_table_pack_set(IntPtr subobj, int col, int row, int colspan, int rowspan);
51
52         [DllImport(Libraries.Elementary)]
53         internal static extern void elm_table_pack_get(IntPtr subobj, out int col, out int row, out int colspan, out int rowspan);
54     }
55 }