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