summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_separator.eo
blob: 835f2e308506b02610b421d331cd9c0c67b9b799 (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
class Elm.Separator (Efl.Ui.Layout)
{
   [[Elementary separator class]]
   legacy_prefix: elm_separator;
   eo_prefix: elm_obj_separator;
   methods {
      @property horizontal {
         set {
            [[Set the horizontal mode of a separator object]]
         }
         get {
            [[Get the horizontal mode of a separator object]]
         }
         values {
            horizontal: bool; [[If true, the separator is horizontal]]
         }
      }
   }
   implements {
      class.constructor;
      Efl.Object.constructor;
      Elm.Widget.theme_apply;
   }
}