Bases: glydget.widget.Widget
The Container class is an abstract class providing common attributes and methods for a number of widget subclasses that manage the layout of other widgets within the area of a window.
Known sub-classes:
Container.insert(child[, index]) | Insert a new child into the container. |
Container.append(child) | Append a child to the container. |
Container.prepend(child) | Prepend a child to the container. |
Container.remove(child) | Remove a child from container. |
Container.children | Container’s children. |
Insert a new child into the container.
Inserting a child into a container usually results in the resizing and redrawing of the container contents.
Parameters: |
---|
Append a child to the container.
Appending a child to a container usually results in the resizing and redrawing of the container contents.
Parameters: |
---|
Prepend a child to the container.
Prepending a child to a container usually results in the resizing and redrawing of the container contents.
Parameters: |
---|
Remove a child from container.
Removing a child to a container usually results in the resizing and redrawing of the container contents.
Parameters: |
---|