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



1615
1616
1617
# File 'lib/rbcurse/rwidget.rb', line 1615

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



1614
1615
1616
# File 'lib/rbcurse/rwidget.rb', line 1614

def newvalue
  @newvalue
end

#oldvalueObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1614
1615
1616
# File 'lib/rbcurse/rwidget.rb', line 1614

def oldvalue
  @oldvalue
end

#property_nameObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1614
1615
1616
# File 'lib/rbcurse/rwidget.rb', line 1614

def property_name
  @property_name
end

#sourceObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1614
1615
1616
# File 'lib/rbcurse/rwidget.rb', line 1614

def source
  @source
end

Instance Method Details

#inspectObject

Since:

  • 1.0.5 added 2010-02-25 23:06



1625
1626
1627
# File 'lib/rbcurse/rwidget.rb', line 1625

def inspect
  to_s
end

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

Since:

  • 1.0.5 added 2010-02-25 23:06



1618
1619
1620
1621
# File 'lib/rbcurse/rwidget.rb', line 1618

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



1622
1623
1624
# File 'lib/rbcurse/rwidget.rb', line 1622

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