Sha256: 139dcef9b5203da4de3e31fb6a78475d4faf2719acf9001b2eb7760525a26530
Contents?: true
Size: 614 Bytes
Versions: 18
Compression:
Stored size: 614 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, w=0, h=0, pl=0, pr=0, pt=0, pb=0) # :yields: theImageFrame end end end
Version data entries
18 entries across 18 versions & 1 rubygems