Sha256: de29197110a450e8708bcfe60ac556d6d54baa17b188081e424767f69c6a336b

Contents?: true

Size: 1.45 KB

Versions: 94

Compression:

Stored size: 1.45 KB

Contents

module Fox
  #
  # Seven-segment (eg LCD/watch style) widget, useful for making
  # indicators and timers.  Besides numbers, the seven-segment
  # display widget can also display some letters and punctuations.
  #
  # === 7 Segment styles
  #
  # +SEVENSEGMENT_NORMAL+:: Draw segments normally
  # +SEVENSEGMENT_SHADOW+:: Draw shadow under the segments
  #
  class FX7Segment < FXFrame
    # The text for this label [String]
    attr_accessor :text

    # The text color {FXColor}
    attr_accessor :textColor

    # Cell width, in pixels [Integer]
    attr_accessor :cellWidth

    # Cell height, in pixels [Integer]
    attr_accessor :cellHeight

    # Segment thickness, in pixels [Integer]
    attr_accessor :thickness

    # Current text-justification mode [Integer]
    attr_accessor :justify

    # Status line help text [String]
    attr_accessor :helpText

    # Tool tip message [String]
    attr_accessor :tipText

    # Create a seven segment display
    def initialize(p, text, opts=SEVENSEGMENT_NORMAL, x=0, y=0, width=0, height=0, padLeft=DEFAULT_PAD, padRight=DEFAULT_PAD, padTop=DEFAULT_PAD, padBottom=DEFAULT_PAD) # :yields: the7Segment
    end

    #
    # Change 7 segment style, where _style_ is either +SEVENSEGMENT_NORMAL+ or
    # +SEVENSEGMENT_SHADOW+.
    #
    def set7SegmentStyle(style); end

    #
    # Return the current 7 segment style, which is either +SEVENSEGMENT_NORMAL+
    # or +SEVENSEGMENT_SHADOW+.
    #
    def get7SegmentStyle(); end
  end
end

Version data entries

94 entries across 94 versions & 1 rubygems

Version Path
fxruby-1.6.43-x64-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.43-x86-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.42 rdoc-sources/FX7Segment.rb
fxruby-1.6.42-x64-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.42-x86-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.41 rdoc-sources/FX7Segment.rb
fxruby-1.6.41-x64-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.41-x86-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.40-x86-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.40-x64-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.40 rdoc-sources/FX7Segment.rb
fxruby-1.6.39 rdoc-sources/FX7Segment.rb
fxruby-1.6.39-x64-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.39-x86-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.38 rdoc-sources/FX7Segment.rb
fxruby-1.6.38-x64-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.38-x86-mingw32 rdoc-sources/FX7Segment.rb
fxruby-1.6.38.pre1 rdoc-sources/FX7Segment.rb
fxruby-1.6.37 rdoc-sources/FX7Segment.rb
fxruby-1.6.37-x64-mingw32 rdoc-sources/FX7Segment.rb