summaryrefslogtreecommitdiff
path: root/src/lib/edje/efl_canvas_layout_internal_box.eo
blob: 48284b901ad7300dc8fb9e74dfc750e517b07046 (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
class Efl.Canvas.Layout_Internal.Box (Eo.Base, Efl.Pack.Linear)
{
   [[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: Edje_Box_Data;
   methods {
      @property real_part @protected {
         set {}
         values {
            ed: void*;
            rp: void*;
            part: const(char)*;
         }
      }
   }
   implements {
      Eo.Base.finalize;
      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.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;
      Efl.Pack.Linear.pack_direction.get;
   }
}