summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_box_flow.eo
blob: a9469988d601540e549428a8e38d906a66f1b38f (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
class Efl.Ui.Box_Flow (Efl.Ui.Box, Efl.Pack.Layout)
{
   [[A custom layout engine for @Efl.Ui.Box.]]
   methods {
      @property box_flow_homogenous {
      	 [[Box flow homogenous property]]
         set {}
         get {}
         values {
            val: bool; [[$true if the box flow layout is homogenous, $false otherwise]]
         }
      }
      @property box_flow_max_size {
      	 [[Box flow maximum size property]]
         set {}
         get {}
         values {
            val: bool; [[$true if the box flow layout has the maximal size, $false otherwise]]
         }
      }
   }
   implements {
      Efl.Pack.Layout.layout_update;
   }
}