summaryrefslogtreecommitdiff
path: root/src/lib/elm_separator.eo
blob: 3e6e2f5fbec6d3b37756eb55f948c26db1da218b (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
class Elm_Separator (Elm_Layout)
{
   eo_prefix: elm_obj_separator;
   properties {
      horizontal {
         set {
            /*@
            @brief Set the horizontal mode of a separator object

            @ingroup Separator */
         }
         get {
            /*@
            @brief Get the horizontal mode of a separator object

            @return If true, the separator is horizontal

            @see elm_separator_horizontal_set()

            @ingroup Separator */
         }
         values {
            Eina_Bool horizontal; /*@ If true, the separator is horizontal */
         }
      }
   }
   implements {
      class.constructor;
      Eo_Base.constructor;
      Evas_Object_Smart.add;
      Elm_Widget.focus_next_manager_is;
      Elm_Widget.focus_direction_manager_is;
      Elm_Widget.theme_apply;
      Elm_Layout.sizing_eval;
   }

}