summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_layout_part_table.eo
blob: a408128105e53ec55dbeb11fb006c5e725cd1f72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
class Efl.Ui.Layout.Part.Table (Efl.Object, Efl.Pack.Table)
{
   [[Represents a Table created as part of a layout.

     Cannot be deleted. This is only a representation of an internal object
     of an EFL layout.
   ]]
   data: Efl_Ui_Layout_Table_Data;
   methods {
      /* FIXME: Remove this. */
      @property real_part @protected {
      	 [[Real part property]]
         set {}
         values {
            layout: Efl.Object; [[Real part object]]
            part: string; [[Real part name]]
         }
      }
   }
   implements {
      Efl.Object.destructor;
      Efl.Container.content_iterate;
      Efl.Container.content_count;
      Efl.Container.content_remove;
      Efl.Pack.pack_clear;
      Efl.Pack.unpack_all;
      Efl.Pack.unpack;
      Efl.Pack.Table.pack_table;
      Efl.Pack.Table.table_content_get;
      Efl.Pack.Table.table_contents_get;
      Efl.Pack.Table.table_position { get; }
      Efl.Pack.Table.table_size { get; }
      Efl.Pack.Table.table_columns { get; }
      Efl.Pack.Table.table_rows { get; }
   }
}