summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_separator.eo
blob: 136311d02194909066771ed10b7fb6eb5dfe8308 (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.Object, Efl.Ui.Legacy)
{
   [[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;
      Efl.Ui.Widget.theme_apply;
   }
}