Sha256: d7a18965587a98c16243d65e8f27cd561ff8a3a8df606f5f0dbac0822a24c8f6
Contents?: true
Size: 824 Bytes
Versions: 13
Compression:
Stored size: 824 Bytes
Contents
module Fox # Hopefully Helpful Hint message # # = Tooltip styles # TOOLTIP_PERMANENT:: Tooltip stays up indefinitely # TOOLTIP_VARIABLE:: Tooltip stays up variable time, depending on the length of the string # TOOLTIP_NORMAL:: # # = Message identifiers # # ID_TIP_SHOW:: Show it # ID_TIP_HIDE:: Hide it # class FXToolTip < FXShell # Construct a tool tip def initialize(app, opts=TOOLTIP_NORMAL, x=0, y=0, width=0, height=0); end # Set the text for this tip def text=(text); end # Get the text for this tip def text() ; end # Set the tip text font def font=(font) ; end # Get the tip text font def font() ; end # Get the current tip text color def textColor() ; end # Set the current tip text color def textColor=(color); end end end
Version data entries
13 entries across 13 versions & 1 rubygems