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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
module Fox
#
# The FXBitmapView widget displays a scrollable view of a bitmap.
#
# === Bitmap alignment styles
#
# +BITMAPVIEW_NORMAL+:: Normal mode is centered
# +BITMAPVIEW_CENTER_X+:: Centered horizontally
# +BITMAPVIEW_LEFT+:: Left-aligned
# +BITMAPVIEW_RIGHT+:: Right-aligned
# +BITMAPVIEW_CENTER_Y+:: Centered vertically
# +BITMAPVIEW_TOP+:: Top-aligned
# +BITMAPVIEW_BOTTOM+:: Bottom-aligned
#
# === Events
#
# +SEL_RIGHTBUTTONPRESS+:: sent when the right mouse button goes down; the message data is an FXEvent instance.
# +SEL_RIGHTBUTTONRELEASE+:: sent when the right mouse button goes up; the message data is an FXEvent instance.
#
class FXBitmapView < FXScrollArea
# Bitmap alignment styles
BITMAPVIEW_NORMAL = 0 # Normal mode is centered
BITMAPVIEW_CENTER_X = 0 # Centered horizontally
BITMAPVIEW_LEFT = 0x00100000 # Left-aligned
BITMAPVIEW_RIGHT = 0x00200000 # Right-aligned
BITMAPVIEW_CENTER_Y = 0, # Centered vertically
BITMAPVIEW_TOP = 0x00400000 # Top-aligned
BITMAPVIEW_BOTTOM = 0x00800000 # Bottom-aligned
#
# Return an initialized FXBitmapView instance.
#
def initialize(p, bmp=nil, tgt=nil, sel=0, opts=0, x=0, y=0, w=0, h=0) # :yields: theBitmapView
super(p, opts, x, y, w, h)
self.flags |= FLAG_ENABLED
self.target = tgt
self.message = sel
@bitmap = bmp
@onColor = FXRGB(0, 0, 0)
@offColor = backColor
@grabx = 0
@graby = 0
end
def create
super
bitmap.create unless bitmap.nil?
end
def detach
super
bitmap.detach unless bitmap.nil?
end
def canFocus
true
end
def getContentWidth
bitmap.nil? 1 : bitmap.width
end
def getContentHeight
bitmap.nil? 1 : bitmap.height
end
def layout
super
update
self.flags &= ~FLAG_DIRTY
end
# Handle expose (paint) event
def onPaint(sender, sel, event)
FXDCWindow.new(self, event) do |dc|
unless bitmap.nil?
ww = bitmap.width
hh = bitmap.height
xx = pos_x
yy = pos_y
if ww < viewport_w
if (options & BITMAPVIEW_LEFT) != 0
xx = 0
elsif (options & BITMAPVIEW_RIGHT) != 0
xx = viewport_w - ww
else
xx = (viewport_w - ww)/2
end
end
if hh < viewport_h
if (options & BITMAPVIEW_TOP) != 0
yy = 0
elsif (options & BITMAPVIEW_BOTTOM) != 0
yy = viewport_h - hh
else
yy = (viewport_h - hh)/2
end
end
dc.foreground = onColor
dc.background = offColor
dc.drawBitmap(bitmap, xx, yy)
dc.foreground = backColor
xl = xx; xr = xx + ww
yt = yy; yb = yy + hh
xl = 0 if (xl < 0)
xr = viewport_w if (xr > viewport_w)
yt = 0 if (yt < 0)
yb = viewport_h if (yb > viewport_h)
dc.fillRectangle(0, 0, xr, yt)
dc.fillRectangle(0, yt, xl, viewport_h - yt)
dc.fillRectangle(xr, 0, viewport_w - xr, yb)
dc.fillRectangle(xl, yb, viewport_w - xl, viewport_h - yb)
else
dc.foreground = backColor
dc.fillRectangle(0, 0, width, height)
end
end
end
# Handle right mouse button press
def onRightBtnPress(sender, sel, ev)
self.flags &= ~FLAG_TIP
handle(self, FXSEL(SEL_FOCUS_SELF, 0), ev)
if enabled?
grab
if target && target.handle(self, FXSEL(SEL_RIGHTBUTTONPRESS, message), ev) != 0
return 1
end
self.flags &= ~FLAG_UPDATE
self.flags |= FLAG_PRESSED|FLAG_SCROLLING
@grabx = ev.win_x - pos_x
@graby = ev.win_y - pos_y
return 1
end
return 0
end
# Handle right mouse button release
def onRightBtnRelease(sender, sel, ev)
if enabled?
ungrab
self.flags &= ~(FLAG_PRESSED|FLAG_SCROLLING)
self.flags |= FLAG_UPDATE
if target && target.handle(self, FXSEL(SEL_RIGHTBUTTONPRESS, message), ev) != 0
return 1
end
return 1
end
return 0
end
# Handle real or simulated mouse motion
def onMotion(sender, sel, ev)
if (flags & FLAG_SCROLLING) != 0
setPosition(ev.win_x - @grabx, ev.win_y - @graby)
return 1
end
return 0
end
#
# Set the bitmap for this FXBitmapView, where _bmp_ is either +nil+ or
# a reference to an FXBitmap instance.
#
def bitmap=(bmp)
@bitmap = bmp
recalc
update
end
#
# Return a reference to the bitmap (an FXBitmap instance) for this FXBitmapView,
# or +nil+ if no bitmap has been set.
#
def bitmap; @bitmap; end
# Set the color used for the "on" bits in the bitmap.
def onColor=(clr)
if clr != onColor
@onColor = clr
update
end
end
# Return the color used for the "on" bits in the bitmap.
def onColor; @onColor; end
# Set the color used for the "off" bits in the bitmap.
def offColor=(clr)
if clr != offColor
@offColor = clr
update
end
end
# Return the color used for the "off" bits in the bitmap.
def offColor; @offColor; end
#
# Set the current alignment for the bitmap inside the FXBitmapView,
# where _mode_ is some combination of the bitmap alignment flags
# listed above.
#
def alignment=(mode)
opts = (options & ~(BITMAPVIEW_LEFT|BITMAPVIEW_RIGHT|BITMAPVIEW_TOP|BITMAPVIEW_BOTTOM)) |
(mode & (BITMAPVIEW_LEFT|BITMAPVIEW_RIGHT|BITMAPVIEW_TOP|BITMAPVIEW_BOTTOM))
if options != opts
@options = opts
update
end
end
#
# Return the current alignment for the bitmap inside the
# FXBitmapView.
#
def alignment
options & (BITMAPVIEW_LEFT|BITMAPVIEW_RIGHT|BITMAPVIEW_TOP|BITMAPVIEW_BOTTOM)
end
end
end