Class: GrooveDl::Widgets::Events

Inherits:
Object
  • Object
show all
Defined in:
lib/groove-dl/widgets/events.rb

Overview

Search section

Direct Known Subclasses

Download, Search

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client, app) ⇒ Events

Initialize events for signals



12
13
14
15
16
17
18
19
20
# File 'lib/groove-dl/widgets/events.rb', line 12

def initialize(client, app)
  @client = client
  @app = app

  methods.each do |name|
    next unless name.match(/^on_/)
    @app.signals_list[name.to_s] = method(name)
  end
end

Instance Attribute Details

#appObject (readonly)

Returns the value of attribute app.



7
8
9
# File 'lib/groove-dl/widgets/events.rb', line 7

def app
  @app
end

#clientObject (readonly)

Returns the value of attribute client.



7
8
9
# File 'lib/groove-dl/widgets/events.rb', line 7

def client
  @client
end