Sha256: f50176bffa4207d291c3e6553a0f802e9de39f9165e8971edf3b70f5d05e856f

Contents?: true

Size: 939 Bytes

Versions: 6

Compression:

Stored size: 939 Bytes

Contents

module Fox
  #
  # X Bitmap (XBM) Icon
  #
  class FXXBMIcon < FXIcon
    #
    # Return the suggested file extension for this image type ("xbm").
    #
    def FXXBMIcon.fileExt; end

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

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

  #
  # Return +true+ if _store_ (an FXStream instance) contains an XBM image.
  #
  def Fox.fxcheckXBM(store); end
end

Version data entries

6 entries across 6 versions & 1 rubygems

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