Sha256: 410c329512246533d9af408d138d92a4721d4ca86dcae0754c71f87ff7b4ecd6

Contents?: true

Size: 861 Bytes

Versions: 6

Compression:

Stored size: 861 Bytes

Contents

module Fox
  #
  # Portable Pixmap (PPM) icon class.
  #
  class FXPPMIcon < FXIcon
    #
    # Return the suggested file extension for this image type ("ppm").
    #
    def FXPPMIcon.fileExt; end

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

    #
    # Return an initialized FXPPMIcon instance.
    #
    # ==== Parameters:
    #
    # +a+::	an application instance [FXApp]
    # +pix+::	a memory buffer formatted in PPM 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: thePPMIcon
    end
  end

  #
  # Return +true+ if _store_ (an FXStream instance) contains a PPM image.
  #
  def Fox.fxcheckPPM(store); end
end

Version data entries

6 entries across 6 versions & 1 rubygems

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