clutter.Group — An actor that can contain multiple children
class clutter.Group(clutter.Actor, clutter.Container): |
clutter.Group
is an Actor which contains multiple child actors positioned relative
to the Group position. Other operations such as scaling, rotating and
clipping of the group will affect its children.
A Group size is defined by the size and position of its children. Resize requests via clutter.Actor methods wil be ignored.
def get_nth_child(index
)
Returns : | the child actor at index. |
The get_nth_child
() method retrieves the
child clutter.Actor at
the given index.
def get_n_children()
Returns : | the number of actor children. |
The get_n_children
() method retrieves the
number of clutter.Actor
children.