Sha256: e78cb63c486ad4c8f9f6a0fed136fd8c670cde736f5ea0f0670a08c4e18d05b3

Contents?: true

Size: 1.42 KB

Versions: 6

Compression:

Stored size: 1.42 KB

Contents

module Fox
  # Color item
  class FXColorItem < FXListItem
    # Item color [FXColor]
    attr_accessor :color

    # Return a new color item, initialized with the given text, color and
    # user data.
    def initialize(text, clr, data=nil) # :yields: theColorItem
    end
  end

  # Displays a list of colors
  class FXColorList < FXList

    #
    # Return an initially empty list of colors.
    #
    def initialize(p, target=nil, selector=0, opts=LIST_BROWSESELECT, x=0, y=0, width=0, height=0) # :yields: theColorList
    end

    #
    # Fill list by appending color items from array of strings and array of colors.
    #
    def fillItems(strings, colors=nil, ptr=nil, notify=false); end

    #
    # Insert item at index with given text, color, and user-data pointer
    #
    def insertItem(index, text, color=0, ptr=nil, notify=false); end

    #
    # Append new item with given text, color, and user-data pointer
    #
    def appendItem(text, color=0, ptr=nil, notify=false); end

    #
    # Prepend new item with given text, color, and user-data pointer
    #
    def prependItem(text, color=0, ptr=nil, notify=false); end

    #
    # Change item color for the item at _index_.
    # Raises IndexError if _index_ is out of bounds.
    #
    def setItemColor(index, color); end

    #
    # Return item color for the item at _index_.
    # Raises IndexError if _index_ is out of bounds.
    #
    def getItemColor(index); end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

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