gtk.HBox — a horizontal container box
+--gobject.GObject +-- gtk.Object +-- gtk.Widget +-- gtk.Container +-- gtk.Box +-- gtk.HBox
The gtk.HBox is a
container subclassed from gtk.Box that organizes
its child widgets into a single horizontal row. The gtk.Box methods are
used to manage the order, spacing, width and alignment of the child widgets
though all widgets are allocated the same height.
    gtk.HBox(homogeneous=False, spacing=0)| 
 | If Trueall children are given
equal space allocations. | 
| 
 | The additional horizontal space between children in pixels | 
| Returns : | a new hbox widget | 
Creates a new gtk.HBox
widget.