efl/src/lib/elementary/elm_frame.eo

67 lines
2.0 KiB
Plaintext

class Elm.Frame (Elm.Layout, Efl.Ui.Clickable)
{
legacy_prefix: elm_frame;
eo_prefix: elm_obj_frame;
event_prefix: elm_frame;
methods {
@property collapse {
set {
[[Manually collapse a frame without animations
Use this to toggle the collapsed state of a frame, bypassing animations.
]]
}
get {
[[Determine the collapse state of a frame
Use this to determine the collapse state of a frame.
]]
}
values {
collapse: bool; [[$true to collapse, $false to expand.]]
}
}
@property autocollapse {
set {
[[Toggle autocollapsing of a frame
When $enable is $true, clicking a frame's label will collapse the frame
vertically, shrinking it to the height of the label.
By default, this is DISABLED.
]]
}
get {
[[Determine autocollapsing of a frame
When this returns $true, clicking a frame's label will collapse the frame
vertically, shrinking it to the height of the label.
By default, this is DISABLED.
]]
}
values {
autocollapse: bool; [[Whether to enable autocollapse.]]
}
}
collapse_go {
[[Manually collapse a frame with animations
Use this to toggle the collapsed state of a frame, triggering animations.
]]
params {
@in collapse: bool; [[$true to collapse, $false to expand.]]
}
}
}
implements {
Eo.Base.constructor;
class.constructor;
Efl.Canvas.Group.group_calculate;
Efl.Canvas.Group.group_add;
Elm.Widget.focus_direction;
Elm.Widget.focus_next_manager_is;
Elm.Widget.focus_next;
Elm.Widget.focus_direction_manager_is;
Elm.Layout.text_aliases.get;
Elm.Layout.content_aliases.get;
}
events {
}
}