Class: RPV::Swing::DialogView

Inherits:
Object
  • Object
show all
Includes:
EventPublisher, OptionExtractor, EventHandlerMixin
Defined in:
lib/rpv/swing/dialog_view.rb

Instance Method Summary collapse

Methods included from EventHandlerMixin

included

Constructor Details

#initialize(*args) ⇒ DialogView

Returns a new instance of DialogView.



10
11
12
13
14
15
16
# File 'lib/rpv/swing/dialog_view.rb', line 10

def initialize(*args)
  @parent, @modal = extract_options(args, :parent, :modal)
  super() unless @parent
  super(@parent, (@modal || false)) if @parent
  setup_components(*args)
  wire_events
end

Instance Method Details

#setup_components(*args) ⇒ Object



18
19
20
# File 'lib/rpv/swing/dialog_view.rb', line 18

def setup_components(*args)
  
end