= class Gtk::HButtonBox
A button box should be used to provide a consistent layout of buttons throughout your application. The layout/spacing can be altered by the programmer, or if desired, by the user to alter the 'feel' of a program to a small degree. 

== Object Hierarchy
* Object
  * GLib::Instantiatable
    * GLib::Object
      * Gtk::Object
        * Gtk::Widget
          * Gtk::Container
            * Gtk::Box
              * Gtk::ButtonBox
                * Gtk::HButtonBox

== Class Methods
--- Gtk::HButtonBox.new
    Creates a new horizontal button box. 
    Returns: a new button box

== See Also
* Gtk::Box - Used to pack widgets into button boxes.
* Gtk::ButtonBox - Provides functions for controlling button boxes.
* Gtk::VButtonBox - Pack buttons vertically.
 
- ((<Masao>))