Class: QDA::GUI::StandaloneWorkAreaWindow

Inherits:
Wx::Frame
  • Object
show all
Defined in:
lib/weft/wxgui/inspectors.rb

Instance Method Summary collapse

Constructor Details

#initialize(workarea, *args) ⇒ StandaloneWorkAreaWindow

Returns a new instance of StandaloneWorkAreaWindow.



9
10
11
# File 'lib/weft/wxgui/inspectors.rb', line 9

def initialize(workarea, *args)
  super(nil, -1, *args)
end

Instance Method Details

#activateObject



14
15
16
17
# File 'lib/weft/wxgui/inspectors.rb', line 14

def activate()
  # TODO - raise() doesn't seem to work on GTK
  shown? ? raise() : show()
end