Sha256: ff2111618d9b81d8328659ca98ee82b061a75e40d78486120bc9631fe65d79c9

Contents?: true

Size: 737 Bytes

Versions: 43

Compression:

Stored size: 737 Bytes

Contents

module Fox
  #
  # GIF Icon class.
  #
  class FXGIFIcon < FXIcon
    #
    # Return the suggested file extension for this image type ("bmp").
    #
    def FXGIFIcon.fileExt; end

    #
    # Return the suggested MIME type for this image type
    #
    def FXGIFIcon.mimeType; end

    #
    # Return an initialized FXGIFIcon instance.
    #
    # ==== Parameters:
    #
    # +a+::	an application instance [FXApp]
    # +pix+::	a memory buffer formatted in GIF file format [String]
    # +clr+::	transparency color [FXColor]
    # +opts+::	options [Integer]
    # +width+::	width [Integer]
    # +height+::	height [Integer]
    #
    def initialize(a, pix=nil, clr=0, opts=0, width=1, height=1) # :yields: theGIFIcon
    end
  end
end

Version data entries

43 entries across 43 versions & 2 rubygems

Version Path
fxruby-1.6.8 rdoc-sources/FXGIFIcon.rb
fxruby-1.6.7 rdoc-sources/FXGIFIcon.rb
fxruby-1.6.9 rdoc-sources/FXGIFIcon.rb