efl/src/lib/elementary/elm_separator.eo

28 lines
649 B
Plaintext
Raw Normal View History

class Elm.Separator (Elm.Layout)
2014-03-26 02:30:53 -07:00
{
eo_prefix: elm_obj_separator;
2015-05-07 09:32:53 -07:00
methods {
@property horizontal {
2014-03-26 02:30:53 -07:00
set {
2015-07-03 07:55:11 -07:00
[[Set the horizontal mode of a separator object]]
2014-03-26 02:30:53 -07:00
}
get {
2015-07-03 07:55:11 -07:00
[[Get the horizontal mode of a separator object]]
2014-03-26 02:30:53 -07:00
}
values {
2015-07-03 07:55:11 -07:00
horizontal: bool; [[If true, the separator is horizontal]]
2014-03-26 02:30:53 -07:00
}
}
}
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;
2014-03-26 02:30:53 -07:00
}
}