gtk.HBox

gtk.HBox — a horizontal container box

Synopsis

class gtk.HBox(gtk.Box):
    gtk.HBox(homogeneous=FALSE, spacing=0)

Ancestry

+-- gobject.GObject
  +-- gtk.Object
    +-- gtk.Widget
      +-- gtk.Container
        +-- gtk.Box
          +-- gtk.HBox

Description

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.

Constructor

    gtk.HBox(homogeneous=FALSE, spacing=0)
homogeneous :If TRUE all children are given equal space allocations.
spacing :The additional horizontal space between children in pixels
Returns :a new hbox widget

Creates a new gtk.HBox widget.