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
55
56
57
58
59
60
61
62
63
64
65
66
67
module Fox
#
# A label widget can be used to place a text and/or icon for
# explanation purposes. The text label may have an optional tooltip
# and/or help string. Icon and label are placed relative to the widget
# using the justfication options, and relative to each other as determined
# by the icon relationship options. A large number of arrangements is
# possible.
#
# === Justification modes
#
# +JUSTIFY_NORMAL+:: Default justification is centered text
# +JUSTIFY_CENTER_X+:: Text is centered horizontally
# +JUSTIFY_LEFT+:: Text is left-justified
# +JUSTIFY_RIGHT+:: Text is right-justified
# +JUSTIFY_HZ_APART+:: Combination of +JUSTIFY_LEFT+ & +JUSTIFY_RIGHT+
# +JUSTIFY_CENTER_Y+:: Text is centered vertically
# +JUSTIFY_TOP+:: Text is aligned with label top
# +JUSTIFY_BOTTOM+:: Text is aligned with label bottom
# +JUSTIFY_VT_APART+:: Combination of +JUSTIFY_TOP+ & +JUSTIFY_BOTTOM+
#
# === Relationship options for icon-labels
#
# +ICON_UNDER_TEXT+:: Icon appears under text
# +ICON_AFTER_TEXT+:: Icon appears after text (to its right)
# +ICON_BEFORE_TEXT+:: Icon appears before text (to its left)
# +ICON_ABOVE_TEXT+:: Icon appears above text
# +ICON_BELOW_TEXT+:: Icon appears below text
# +TEXT_OVER_ICON+:: Same as +ICON_UNDER_TEXT+
# +TEXT_AFTER_ICON+:: Same as +ICON_BEFORE_TEXT+
# +TEXT_BEFORE_ICON+:: Same as +ICON_AFTER_TEXT+
# +TEXT_ABOVE_ICON+:: Same as +ICON_BELOW_TEXT+
# +TEXT_BELOW_ICON+:: Same as +ICON_ABOVE_TEXT+
#
# === Normal way to show label
#
# +LABEL_NORMAL+:: Same as <tt>JUSTIFY_NORMAL|ICON_BEFORE_TEXT</tt>
#
class FXLabel < FXFrame
# The text for this label [String]
attr_accessor :text
# The icon for this label [FXIcon]
attr_accessor :icon
# The text font [FXFont]
attr_accessor :font
# The text color [FXColor]
attr_accessor :textColor
# Text justification mode [Integer]
attr_accessor :justify
# Icon position [Integer]
attr_accessor :iconPosition
# Status line help text [String]
attr_accessor :helpText
# Tool tip message [String]
attr_accessor :tipText
# Construct label with given text and icon
def initialize(parent, text, icon=nil, opts=LABEL_NORMAL, x=0, y=0, width=0, height=0, padLeft=DEFAULT_PAD, padRight=DEFAULT_PAD, padTop=DEFAULT_PAD, padBottom=DEFAULT_PAD) # :yields: theLabel
end
# Return the label's text
def to_s; text; end