summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_layout_internal_box.eo
blob: f9451570b272423b01680688a0e92a76b5695c4e (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
37
38
39
class Efl.Ui.Layout_Internal.Box (Eo.Base, Efl.Pack.Linear,
                                  Efl.Orientation)
{
   [[Represents a Box created as part of a layout.

     Can not be deleted, this is only a representation of an internal object
     of an EFL layout.
   ]]
   data: Efl_Ui_Layout_Table_Data;
   methods {
      @property real_part @protected {
         set {}
         values {
            layout: Eo.Base;
            pack: Eo.Base;
            part: string;
         }
      }
   }
   implements {
      Eo.Base.destructor;
      Efl.Container.content_iterate;
      Efl.Container.content_count;
      Efl.Container.content_remove;
      Efl.Orientation.orientation.get;
      Efl.Pack.pack_clear;
      Efl.Pack.unpack_all;
      Efl.Pack.unpack;
      Efl.Pack.pack;
      Efl.Pack.Linear.pack_begin;
      Efl.Pack.Linear.pack_end;
      Efl.Pack.Linear.pack_before;
      Efl.Pack.Linear.pack_after;
      Efl.Pack.Linear.pack_at;
      Efl.Pack.Linear.pack_content_get;
      Efl.Pack.Linear.pack_unpack_at;
      Efl.Pack.Linear.pack_index_get;
   }
}