Sha256: 8630fa3f6e9575be31fb6a419b78f0693b00c2775326cfc82542235f5e329e9c
Contents?: true
Size: 1.18 KB
Versions: 18
Compression:
Stored size: 1.18 KB
Contents
module Fox # # An FXToolBarShell is a widget floating around over the main window. # It typically contains an undocked tool bar. # class FXToolBarShell < FXTopWindow # Frame style [Integer] attr_accessor :frameStyle # Border width [Integer] attr_reader :borderWidth # Highlight color [FXColor] attr_accessor :hiliteColor # Shadow color [FXColor] attr_accessor :shadowColor # Border color [FXColor] attr_accessor :borderColor # Base GUI color [FXColor] attr_accessor :baseColor # # Return an initialized FXToolBarShell instance. # # ==== Parameters: # # +owner+:: the owner window for this tool bar shell [FXWindow] # +opts+:: tool bar shell options [Integer] # +x+:: initial x-position [Integer] # +y+:: initial y-position [Integer] # +w+:: initial width [Integer] # +h+:: initial height [Integer] # +hs+:: horizontal spacing between widgets, in pixels [Integer] # +vs+:: vertical spacing between widgets, in pixels [Integer] # def initialize(owner, opts=FRAME_RAISED|FRAME_THICK, x=0, y=0, w=0, h=0, hs=4, vs=4) # :yields: theToolBarShell end end end
Version data entries
18 entries across 18 versions & 1 rubygems