Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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