class Interphase::HBox

A horizontal item container.

Public Class Methods

new(**options, &block) click to toggle source

Creates a new horizontal box.

Calls superclass method Interphase::Widget::new
# File lib/interphase/widgets/box.rb, line 44
def initialize(**options, &block)
  super(Gtk::HBox.new, options, &block)
end