Class: Wx::Panel

Inherits:
Object
  • Object
show all
Defined in:
lib/extensions/wx/widgets/wx_panel.rb

Instance Method Summary collapse

Instance Method Details

#plug_in(region_widget) ⇒ Object



6
7
8
9
10
11
# File 'lib/extensions/wx/widgets/wx_panel.rb', line 6

def plug_in(region_widget)
  self.remove_child(self.get_children.first) if self.get_children.length != 0
  region_widget.reparent(self)
  region_widget.layout
  self.layout
end