Sha256: 1bfb19ccc3b2ee29c580216797f5bb8fe95e97b87b20544c8f351bba5068c33f
Contents?: true
Size: 645 Bytes
Versions: 7
Compression:
Stored size: 645 Bytes
Contents
module Fox # # An FXImageFrame is a simple frame widget that displays an FXImage image. # class FXImageFrame < FXFrame # The current image being displayed [FXImage] attr_accessor :image # # The current justification mode, some combination of the flags # +JUSTIFY_LEFT+, +JUSTIFY_RIGHT+, +JUSTIFY_TOP+ and +JUSTIFY_BOTTOM+ [Integer] # attr_accessor :justify # # Return an initialized FXImageFrame instance. # def initialize(p, img, opts=FRAME_SUNKEN|FRAME_THICK, x=0, y=0, width=0, height=0, padLeft=0, padRight=0, padTop=0, padBottom=0) # :yields: theImageFrame end end end
Version data entries
7 entries across 7 versions & 1 rubygems