Sha256: 9567c1df36899209c9481c0abfc19252725bd2b2c96ce171819dd03d6d72ecf2

Contents?: true

Size: 634 Bytes

Versions: 94

Compression:

Stored size: 634 Bytes

Contents

module Fox
  #
  # A delegator forwards messages to a delegate object.
  # Delegators are used when you need to multiplex messages
  # toward any number of target objects.
  # For example, many controls may be connected to FXDelegator,
  # instead of directly to the document object.  Changing the
  # delegate in FXDelegator will then reconnect the controls with their
  # new target.
  #
  class FXDelegator < FXObject

    # The object to which all messages are delegated {FXObject}
    attr_accessor :delegate

    #
    # Construct a new delegator
    #
    def initialize(delegate=nil) # :yields: theDelegate
    end
  end
end

Version data entries

94 entries across 94 versions & 1 rubygems

Version Path
fxruby-1.6.32.pre2-x86-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.32.pre2 rdoc-sources/FXDelegator.rb
fxruby-1.6.32.pre1 rdoc-sources/FXDelegator.rb
fxruby-1.6.32.pre1-x86-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.32.pre1-x64-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.31-x64-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.31-x86-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.31 rdoc-sources/FXDelegator.rb
fxruby-1.6.30-x86-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.30-x64-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.30 rdoc-sources/FXDelegator.rb
fxruby-1.6.29-x86-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.29-x64-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.29 rdoc-sources/FXDelegator.rb
fxruby-1.6.28-x86-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.28-x64-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.28 rdoc-sources/FXDelegator.rb
fxruby-1.6.27-x86-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.27-x64-mingw32 rdoc-sources/FXDelegator.rb
fxruby-1.6.27 rdoc-sources/FXDelegator.rb