The GtkContainer class is the base class for container widgets in the GtkRxDlg class heirarchy. You should NOT instantiate this class directly, instead you should instantiate the children of this class. However, feel free to utilize the methods in this class to manipulate your child widgets.
This is a logical container and has no visible presence on the screen. It is used to contain other widgets.
The class heirarchy
Object +---GtkWidget +---GtkContainer |
The methods for the GtkContainer class are documented below.
This method creates and initializes the widget.
This is a example of how to create a new container widget.
mycontainer = .GtkContainer~new() |
None.
The new GtkContainer object.
This method adds a widget to a container.
This is a example of how to add a widget to a container.
mycontainer~add(mywidget) |
None.
This method removes a widget from a container.
This is a example of how to remove a widget from a container.
mycontainer~remove(mywidget) |
None.
This method adds/creates an empty space border around the contained widget.
This is a example of how to add a border to the container.
width = 10 mycontainer~setborderwidth = width |
None.