Overlay#
- class ignis.widgets.Overlay(*args: Any, **kwargs: Any)#
Bases:
Gtk.Overlay
A container that places its children on top of each other. The
child
property is the main child, on which other widgets defined inoverlays
will be placed on top.- Parameters:
**kwargs -- Properties to set.
widgets.Overlay( child=widgets.Label(label="This is the main child"), overlays=[ widgets.Label(label="Overlay child 1"), widgets.Label(label="Overlay child 2"), widgets.Label(label="Overlay child 3"), ] )