Sha256: d8aaa5de673b35a4d87feb74e414eee8a67fec7843f1b5a394aedda86f64cd17

Contents?: true

Size: 675 Bytes

Versions: 5

Compression:

Stored size: 675 Bytes

Contents

module Fox
  #
  # X Pixmap (XPM) Image
  #
  class FXXPMImage < FXImage
    #
    # Return the suggested file extension for this image type ("xpm").
    #
    def FXXPMImage.fileExt; end
    
    #
    # Return the MIME type for this image type
    #
    def FXXPMImage.mimeType; end

    #
    # Return an initialized FXXPMImage instance.
    #
    # ==== Parameters:
    #
    # +a+::	an application instance [FXApp]
    # +pix+::	a memory buffer formatted in XPM file format [String]
    # +opts+::	options [Integer]
    # +w+::	width [Integer]
    # +h+::	height [Integer]
    #
    def initialize(a, pix=nil, opts=0, w=1, h=1) # :yields: theXPMImage
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

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