Class: RubyCurses::PropertyChangeEvent

Inherits:
Object
  • Object
show all
Defined in:
lib/rbcurse/rwidget.rb

Overview

Created and sent to all listeners whenever a property is changed

See Also:

  • fire_property_change
  • fire_handler

Since:

  • 1.0.5 added 2010-02-25 23:06

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, property_name, oldvalue, newvalue) ⇒ PropertyChangeEvent

Returns a new instance of PropertyChangeEvent.

Since:

  • 1.0.5 added 2010-02-25 23:06



1652
1653
1654
# File 'lib/rbcurse/rwidget.rb', line 1652

def initialize source, property_name, oldvalue, newvalue
  set source, property_name, oldvalue, newvalue
end

Instance Attribute Details

#newvalueObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1651
1652
1653
# File 'lib/rbcurse/rwidget.rb', line 1651

def newvalue
  @newvalue
end

#oldvalueObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1651
1652
1653
# File 'lib/rbcurse/rwidget.rb', line 1651

def oldvalue
  @oldvalue
end

#property_nameObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1651
1652
1653
# File 'lib/rbcurse/rwidget.rb', line 1651

def property_name
  @property_name
end

#sourceObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1651
1652
1653
# File 'lib/rbcurse/rwidget.rb', line 1651

def source
  @source
end

Instance Method Details

#inspectObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1662
1663
1664
# File 'lib/rbcurse/rwidget.rb', line 1662

def inspect
  to_s
end

#set(source, property_name, oldvalue, newvalue) ⇒ Object

Since:

  • 1.0.5 added 2010-02-25 23:06



1655
1656
1657
1658
# File 'lib/rbcurse/rwidget.rb', line 1655

def set source, property_name, oldvalue, newvalue
    @source, @property_name, @oldvalue, @newvalue =
    source, property_name, oldvalue, newvalue
end

#to_sObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1659
1660
1661
# File 'lib/rbcurse/rwidget.rb', line 1659

def to_s
  "PROPERTY_CHANGE name: #{property_name}, oldval: #{@oldvalue}, newvalue: #{@newvalue}, source: #{@source}"
end