Sha256: c808819d436981f9b1df7bd93b8f0164f0051822e5b6effefcbc566d0a78c405

Contents?: true

Size: 1.67 KB

Versions: 5

Compression:

Stored size: 1.67 KB

Contents

module Fox
  #
  # Portable Network Graphics (PNG) Icon
  #
  class FXPNGIcon < FXIcon
    #
    # Return the suggested file extension for this image type ("png").
    #
    def FXPNGIcon.fileExt; end
    
    #
    # Return the MIME type for this image type
    #
    def FXPNGIcon.mimeType; end

    # Return +true+ if PNG image file format is supported.
    def FXPNGIcon.supported? ; end

    #
    # Return an initialized FXPNGIcon instance.
    #
    # ==== Parameters:
    #
    # +a+::	an application instance [FXApp]
    # +pix+::	a memory buffer formatted in PNG 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: thePNGIcon
    end
  end
  
  #
  # Load a PNG file from a stream.
  # If successful, returns an array containing the image pixel data (as a
  # String), the transparency color, the image width and the image height.
  # If it fails, the function returns +nil+.
  #
  # ==== Parameters:
  #
  # +store+::	stream from which to read the file data [FXStream]
  #
  def Fox.fxloadPNG(store); end

  #
  # Save a PNG image to a stream.
  # Returns +true+ on success, +false+ on failure.
  #
  # ==== Parameters:
  #
  # +store+::	stream to which to write the image data [FXStream]
  # +data+::	the image pixel data [String]
  # +transp+::	transparency color [FXColor]
  # +width+::	width [Integer]
  # +height+::	height [Integer]
  #
  def Fox.fxsavePNG(store, data, transp, width, height); end
  
  #
  # Return +true+ if _store_ (an FXStream instance) contains a PNG image.
  #
  def Fox.fxcheckPNG(store); end
end

Version data entries

5 entries across 5 versions & 1 rubygems

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