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



1647
1648
1649
# File 'lib/rbcurse/rwidget.rb', line 1647

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



1646
1647
1648
# File 'lib/rbcurse/rwidget.rb', line 1646

def newvalue
  @newvalue
end

#oldvalueObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1646
1647
1648
# File 'lib/rbcurse/rwidget.rb', line 1646

def oldvalue
  @oldvalue
end

#property_nameObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1646
1647
1648
# File 'lib/rbcurse/rwidget.rb', line 1646

def property_name
  @property_name
end

#sourceObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1646
1647
1648
# File 'lib/rbcurse/rwidget.rb', line 1646

def source
  @source
end

Instance Method Details

#inspectObject

Since:

  • 1.0.5 added 2010-02-25 23:06



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

def inspect
  to_s
end

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

Since:

  • 1.0.5 added 2010-02-25 23:06



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

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



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

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