Class: Watobo::Gui::SIDCacheFrame
- Inherits:
-
FXVerticalFrame
- Object
- FXVerticalFrame
- Watobo::Gui::SIDCacheFrame
- Defined in:
- lib/watobo/gui/session_management_dialog.rb
Instance Method Summary collapse
-
#initialize(parent) ⇒ SIDCacheFrame
constructor
A new instance of SIDCacheFrame.
Constructor Details
#initialize(parent) ⇒ SIDCacheFrame
Returns a new instance of SIDCacheFrame.
476 477 478 479 480 481 482 483 484 485 486 |
# File 'lib/watobo/gui/session_management_dialog.rb', line 476 def initialize(parent) @project = Watobo.project super(parent, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y) # button_frame = FXHorizontalFrame.new(self, :opts=> LAYOUT_FILL_X) # refresh_btn = FXButton.new(button_frame, "Refresh") @sidTable = SidTable.new(self, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y) # sid_cache = Watobo::SIDCache.acquire(Thread.current.object_id) #@sidTable.updateSID @session.sidCache() end |