Sha256: d9a4185ddfcc12034419e2b645916ad700ffb2f01f5f546e668b52dd9de58287
Contents?: true
Size: 945 Bytes
Versions: 37
Compression:
Stored size: 945 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
37 entries across 37 versions & 2 rubygems