Class: QDA::GUI::LabelledVSizer

Inherits:
Wx::StaticBoxSizer
  • Object
show all
Defined in:
lib/weft/wxgui/utilities.rb

Instance Method Summary collapse

Constructor Details

#initialize(sized_object, label) ⇒ LabelledVSizer

Returns a new instance of LabelledVSizer.



97
98
99
100
# File 'lib/weft/wxgui/utilities.rb', line 97

def initialize(sized_object, label)
  static_box = Wx::StaticBox.new(sized_object, -1, label)
  super(static_box, Wx::VERTICAL)
end