Sha256: a46867ce8937fc1c2c99a126adb8b4a1017ff3ce176c1957f825acff328893b9

Contents?: true

Size: 729 Bytes

Versions: 6

Compression:

Stored size: 729 Bytes

Contents

module Fox
  #
  # A Scroll Pane is a menu pane which provides scrolling of menu entries.
  # It is useful when menus are populated programmatically and it is not
  # known in advance how many entries will be added.
  #
  class FXScrollPane < FXMenuPane

    # Index of top-most menu item [Integer]
    attr_accessor :topItem

    # Number of visible items [Integer]
    attr_accessor :numVisible

    #
    # Return an initialized FXScrollPane instance.
    #
    # ==== Parameters:
    #
    # +owner+::	owner window for this menu pane [FXWindow]
    # +nvis+::	maximum number of visible items [Integer]
    # +opts+::	options [Integer]
    #
    def initialize(owner, nvis, opts=0) # :yields: theScrollPane
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
fxruby-1.6.22-x86-mingw32 rdoc-sources/FXScrollPane.rb
fxruby-1.6.22 rdoc-sources/FXScrollPane.rb
fxruby-1.6.22.pre4-x86-mingw32 rdoc-sources/FXScrollPane.rb
fxruby-1.6.22.pre4 rdoc-sources/FXScrollPane.rb
fxruby-1.6.22.pre3-x86-mingw32 rdoc-sources/FXScrollPane.rb
fxruby-1.6.22.pre3 rdoc-sources/FXScrollPane.rb