summaryrefslogtreecommitdiff
path: root/src/lib/ecore/efl_model_composite_selection.eo
blob: c122de5d823b9324f4b535cf7c8807b70f49c35f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
class Efl.Model.Composite.Selection (Efl.Model.Composite.Boolean)
{
   [[Efl model composite selection class]]
   methods {
      select {
         [[Select composition]]
         params {
           idx: int; [[Index]]
         }
         return: future<any_value>; [[Future on the selected composition]]
      }
      @property exclusive_selection {
         [[Exclusive Selection property]]
         values {
           exclusive: bool; [[$true is selection is exclusive, $flase otherwise]]
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Model.children_slice_get;
   }
}