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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
|
// Credit: original code by Mihai Parparita (mihai@persistent.info)
// Improved and customized by D. Menasce (http://hal9000.mib.infn.it/~menasce)
// This script is now a class with its own namespace to avoid clashes if
// used in a context where other JavaScript codes are present
DLMLens.prototype.kShadowPadding = 17;
DLMLens.prototype.kDefaultMagnifierSize = 0; // index into the arrays below
DLMLens.prototype.kMagnifierSizes = new Array(0, 100, 150, 300);
DLMLens.prototype.kMagnifierSizeNames = new Array('off', 'small', 'medium', 'large');
DLMLens.prototype.kControllerPrefix = '<Font Color="#fceeb8">Lens:</Font> ';
DLMLens.prototype.shadowBaseUrl = "http://hal9000.mib.infn.it/~menasce/PBaseStuff/shadow" ;
//====================================================================================
function DLMLens(baseID, zoomedURL, zoomedWidth, zoomedHeight)
{
this.MagnifierPosition = MagnifierPosition;
this.ControllerSizeButtonClick = ControllerSizeButtonClick;
this.MagnifierResize = MagnifierResize;
this.MagnifierMouseDown = MagnifierMouseDown;
this.MagnifierMouseUp = MagnifierMouseUp;
this.MagnifierDrag = MagnifierDrag;
this.loadMagnifier = loadMagnifier;
this.update = update;
this.baseID = baseID ;
this.mssg ;
this.loadMagnifier = loadMagnifier ;
this.loadMagnifier(baseID, zoomedURL, zoomedWidth, zoomedHeight) ;
}
//====================================================================================
function update(baseID, zoomedURL, zoomedWidth, zoomedHeight)
{
this.MagnifierPosition = MagnifierPosition;
this.ControllerSizeButtonClick = ControllerSizeButtonClick;
this.MagnifierResize = MagnifierResize;
this.MagnifierMouseDown = MagnifierMouseDown;
this.MagnifierMouseUp = MagnifierMouseUp;
this.MagnifierDrag = MagnifierDrag;
this.loadMagnifier = loadMagnifier;
this.baseID = baseID ;
this.mssg ;
this.loadMagnifier = loadMagnifier ;
this.loadMagnifier(baseID, zoomedURL, zoomedWidth, zoomedHeight) ;
}
//====================================================================================
function MagnifierPosition()
{
this.style.left = Math.round(this.xPosition - 1 - this.size/2) + "px";
this.style.top = Math.round(this.yPosition - 1 - this.size/2) + "px";
this.shadow.style.left = Math.round(this.xPosition - this.size/2 - DLMLens.prototype.kShadowPadding) + "px";
this.shadow.style.top = Math.round(this.yPosition - this.size/2 - DLMLens.prototype.kShadowPadding) + "px";
var magnifierCenterX = Math.round(this.xPosition * this.xMultiplier - this.size/2);
var magnifierCenterY = Math.round(this.yPosition * this.yMultiplier - this.size/2);
var baseVect = document.getElementsByName(this.baseID);
var base = baseVect[0]
var px = findPosX(base) ;
var py = findPosY(base) ;
var xOff = Math.round(-magnifierCenterX + px * this.xMultiplier) ;
var yOff = Math.round(-magnifierCenterY + py * this.yMultiplier) ;
this.style.backgroundPosition = xOff + "px " + yOff + "px";
}
//====================================================================================
function ControllerSizeButtonClick(event)
{
if (!event) event = window.event;
var button = event.currentTarget || event.srcElement;
button.parentNode.magnifier.resize(button.magnifierSize);
}
//====================================================================================
function MagnifierResize(size)
{
this.size = DLMLens.prototype.kMagnifierSizes[size];
for (var i=0; i < this.controller.sizeButtons.length; i++)
{
if (i == size)
this.controller.sizeButtons[i].className = "magnifierControllerButtonSelected";
else
this.controller.sizeButtons[i].className = "magnifierControllerButton";
}
if (this.size == 0)
{
this.shadow.style.display = "none";
this.style.display = "none";
} else {
var shadow = this.shadow;
var shadowSize = this.size + 2 * DLMLens.prototype.kShadowPadding;
// MSIE 5.x/6.x must be treated specially in order to make them use the PNG alpha channel
var shadowImageSrc = DLMLens.prototype.shadowBaseUrl + size + ".png";
if (shadow.runtimeStyle)
{
shadow.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" +
shadowImageSrc +
"', sizingMethod='scale')";
alert(shadow.style.filter) ;
// shadow.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.Alpha(src='" +
// shadowImageSrc +
// "', sizingMethod='scale')";
} else {
shadow.style.backgroundImage = "url(" + shadowImageSrc + ")";
}
shadow.style.width = shadowSize + "px";
shadow.style.height = shadowSize + "px";
shadow.style.display = "block";
if (this.runtimeStyle) // msie counts the border as being part of the width
this.size += 2; // must compensate
this.style.width = this.size + "px";
this.style.height = this.size + "px";
this.style.display = "block";
this.position();
}
}
//====================================================================================
function MagnifierMouseDown(event)
{
if (!event) event = window.event;
document.body.magnifier = this;
this.inDrag = true;
if (event.pageX)
{
this.startX = event.pageX;
this.startY = event.pageY;
}
else if (event.clientX)
{
this.startX = event.clientX;
this.startY = event.clientY;
}
else
{
alert("don't know how to get position out of event");
return;
}
this.savedCursor = this.style.cursor;
this.style.cursor = "crosshair";
}
//====================================================================================
function MagnifierMouseUp()
{
if (this.inDrag)
{
this.inDrag = false;
this.style.cursor = this.savedCursor;
document.body.magnifier = null;
}
}
//====================================================================================
function MagnifierDrag(event)
{
if (!event) event = window.event;
var magnifier = this.magnifier; // we're actually in the body's onmousemove handler
if (magnifier && magnifier.inDrag)
{
var eventX;
var eventY;
if (event.pageX)
{
eventX = event.pageX;
eventY = event.pageY;
}
else if (event.clientX)
{
eventX = event.clientX;
eventY = event.clientY;
}
else
{
return;
}
magnifier.xPosition += eventX - magnifier.startX
magnifier.yPosition += eventY - magnifier.startY;
magnifier.startX = eventX;
magnifier.startY = eventY;
magnifier.position();
}
}
//====================================================================================
function loadMagnifier(baseID, zoomedURL, zoomedWidth, zoomedHeight)
{
//DM_TraceWindow(thisFile,arguments.callee.name,"zoomedURL: "+zoomedURL) ;
var baseVect = document.getElementsByName(baseID);
if( baseVect.length < 1 )
{
alert("[magnifier.js::loadMagnifier] No item named "+baseID) ;
}
if( baseVect.length > 1 )
{
alert("[magnifier.js::loadMagnifier] More than one item named "+baseID) ;
}
var base = baseVect[0] ;
var zoomedImage = document.getElementsByName("zoomedImage") ;
var checkItem = null ;
if( !zoomedImage )
{
zoomedImage = document.createElement("img");
zoomedImage.name = "zoomedImage" ;
zoomedImage.src = zoomedURL;
} else {
checkItem = document.getElementById(this.baseID + "Magnifier") ;
if (!checkItem )
{
this.magnifier = document.createElement("div");
} else {
this.magnifier = checkItem ;
}
}
// get the regular image
var normalImage = null;
for (var i=0; i < base.childNodes.length; i++)
{
if (base.childNodes[i].tagName && base.childNodes[i].tagName.toLowerCase() == "img")
{
normalImage = base.childNodes[i];
break;
}
}
if (normalImage == null)
{
alert("[loadMagnifyer] Couldn't find normal image for magnifier " + this.baseID);
return;
}
this.magnifier.xMultiplier = zoomedWidth /normalImage.width;
this.magnifier.yMultiplier = zoomedHeight/normalImage.height;
var px = findPosX(base) ;
var py = findPosY(base) ;
this.magnifier.size = DLMLens.prototype.kMagnifierSizes[DLMLens.prototype.kDefaultMagnifierSize];
this.magnifier.xPosition = normalImage.width - this.magnifier.size/2 + px;
this.magnifier.yPosition = normalImage.height - this.magnifier.size/2 + py;
this.magnifier.id = this.baseID + "Magnifier";
this.magnifier.className = "magnifier";
// styles (only dynamic ones, rest are part of the class)
this.magnifier.style.backgroundImage = "url(" + zoomedURL + ")";
// functions
this.magnifier.onmousedown = this.MagnifierMouseDown;
this.magnifier.onmouseup = this.MagnifierMouseUp;
document.body.onmousemove = this.MagnifierDrag; // we attach this handler to the body because if the user moves
// the mouse fast enough, it'll go outside the boundaries of the
// magnifier, and then the magnifier's mousemove handler won't fire
this.magnifier.position = this.MagnifierPosition;
this.magnifier.resize = this.MagnifierResize;
this.magnifier.baseID = this.baseID;
// controller
checkItem = document.getElementById(this.baseID + "MagnifierController") ;
if( !checkItem )
{
this.controller = document.createElement("span");
} else {
this.controller = checkItem;
}
this.controller.id = this.baseID + "MagnifierController";
this.controller.className = "magnifierController";
var controllerPrefix = null;
checkItem = document.getElementById(this.baseID + "ControllerPrefix") ;
if( !checkItem )
{
controllerPrefix = document.createElement("span");
} else {
controllerPrefix = checkItem ;
}
controllerPrefix.id = this.baseID + "ControllerPrefix" ;
controllerPrefix.innerHTML = DLMLens.prototype.kControllerPrefix;
controllerPrefix.className = "magnifierControllerPrefix";
this.controller.appendChild(controllerPrefix);
this.controller.sizeButtons = new Array(DLMLens.prototype.kMagnifierSizes.length);
for (var i=0; i < DLMLens.prototype.kMagnifierSizes.length; i++)
{
var button = null;
checkItem = document.getElementById(this.baseID + "Button" + i) ;
if( !checkItem )
{
button = document.createElement("span");
} else {
button = checkItem;
}
button.innerHTML = DLMLens.prototype.kMagnifierSizeNames[i];
button.id = this.baseID + "Button" + i;
button.className = "magnifierControllerButton";
button.onclick = this.ControllerSizeButtonClick;
button.magnifierSize = i;
this.controller.sizeButtons[i] = button;
this.controller.appendChild(button);
}
// shadow
checkItem = document.getElementById(this.baseID + "MagnifierShadow");
if( !checkItem )
{
this.shadow = document.createElement("div");
} else {
this.shadow = checkItem;
}
this.shadow.id = this.baseID + "MagnifierShadow";
this.shadow.className = "magnifierShadow";
this.magnifier.controller = this.controller; // point objects at each other
this.controller.magnifier = this.magnifier;
this.magnifier.shadow = this.shadow;
// add to document and lay out
var controllerContainer = null ;
checkItem = document.getElementById(this.baseID + "ControllerContainer") ;
if (!checkItem )
{
controllerContainer = document.createElement("div");
} else {
controllerContainer = checkItem;
}
controllerContainer.id = this.baseID + "ControllerContainer" ;
controllerContainer.className = "magnifierControllerContainer";
controllerContainer.appendChild(this.controller);
base.insertBefore(controllerContainer, document.getElementById("message"));
base.appendChild(this.shadow);
base.appendChild(this.magnifier);
this.magnifier.resize(DLMLens.prototype.kDefaultMagnifierSize);
}
//====================================================================================
function findPosX(obj)
{
// credit Peter-Paul Koch & Alex Tingle
// http://www.quirksmode.org/js/findpos.html
var curleft = 0;
if(obj.offsetParent)
{
while(1)
{
curleft += obj.offsetLeft;
if(!obj.offsetParent)
break;
obj = obj.offsetParent;
}
} else if(obj.x) {
curleft += obj.x;
}
return curleft;
}
//====================================================================================
function findPosY(obj)
{
// credit Peter-Paul Koch & Alex Tingle
// http://www.quirksmode.org/js/findpos.html
var curtop = 0;
if(obj.offsetParent)
{
while(1)
{
curtop += obj.offsetTop;
if(!obj.offsetParent)
break;
obj = obj.offsetParent;
}
} else if(obj.y) {
curtop += obj.y;
}
return curtop;
}
|