Sha256: 426d4c9a8207fa2ea2d326dc888c3e686543759ce21edaa6d3d666b038691878

Contents?: true

Size: 719 Bytes

Versions: 5

Compression:

Stored size: 719 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]
    # +w+::	width [Integer]
    # +h+::	height [Integer]
    #
    def initialize(a, pix=nil, clr=0, opts=0, w=1, h=1) # :yields: theGIFIcon
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fxruby-1.6.0 rdoc-sources/FXGIFIcon.rb
fxruby-1.6.1 rdoc-sources/FXGIFIcon.rb
fxruby-1.6.2 rdoc-sources/FXGIFIcon.rb
fxruby-1.6.3 rdoc-sources/FXGIFIcon.rb
fxruby-1.6.4 rdoc-sources/FXGIFIcon.rb