efl/src/lib/elementary/efl_ui_box_stack.eo

17 lines
501 B
Plaintext
Raw Normal View History

class Efl.Ui.Box_Stack extends Efl.Ui.Box
{
[[A custom layout engine for @Efl.Ui.Box that stacks items.
2019-09-16 08:44:56 -07:00
Items will be stacked on top of each other (in the Z direction) meaning that, in the absence of transparency,
only the last item added through the @Efl.Pack interface will actually be visible.
This can be useful to display transparent objects on top of each other, for example.
@since 1.23
]]
data: null;
implements {
Efl.Pack_Layout.layout_update;
}
}