functions.js
17.2 KB
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
var myimgmap;
var editor = null;
var img_obj = null;
var map_obj = null;
//array of form elements
var props = [];
function init() {
tinyMCEPopup.resizeToInnerSize();
//tinyMCE.setWindowArg('mce_windowresize', true);//i guess we dont need this
editor = tinyMCEPopup.editor;
img_obj = editor.selection.getNode();
//late init
myimgmap = new imgmap({
mode : "editor",
custom_callbacks : {
'onStatusMessage' : function(str) {gui_statusMessage(str);},//to display status messages on gui
'onHtmlChanged' : function(str) {gui_htmlChanged(str);},//to display updated html on gui
//'onModeChanged' : function(mode) {gui_modeChanged(mode);},//to switch normal and preview modes on gui
'onAddArea' : function(id) {gui_addArea(id);},//to add new form element on gui
'onRemoveArea' : function(id) {gui_removeArea(id);},//to remove form elements from gui
'onAreaChanged' : function(obj) {gui_areaChanged(obj);},
'onSelectArea' : function(obj) {gui_selectArea(obj);}//to select form element when an area is clicked
},
pic_container: document.getElementById('pic_container'),
bounding_box : false
});
//we need this to load languages
myimgmap.onLoad();
myimgmap.loadImage(img_obj);
//console.log(myimgmap);
myimgmap.addEvent(document.getElementById('html_container'), 'blur', gui_htmlBlur);
myimgmap.addEvent(document.getElementById('html_container'), 'focus', gui_htmlFocus);
//check if the image has a valid map already assigned
var mapname = img_obj.getAttribute('usemap', 2) || img_obj.usemap ;
//console.log(mapname);
if (mapname != null && mapname != '') {
mapname = mapname.substr(1);
var maps = editor.contentWindow.document.getElementsByTagName('MAP');
//console.log(maps);
for (var i=0; i < maps.length; i++) {
// IE doesn't return name?
if (maps[i].name == mapname || maps[i].id == mapname) {
map_obj = maps[i];
myimgmap.setMapHTML(map_obj);
break;
}
}
}
}
function updateAction() {
if (img_obj != null && img_obj.nodeName == "IMG") {
tinyMCEPopup.execCommand("mceBeginUndoLevel");
if (typeof map_obj == 'undefined' || map_obj == null) {
map_obj = editor.contentWindow.document.createElement('MAP');
img_obj.parentNode.appendChild(map_obj);
}
//map_obj.innerHTML = myimgmap.getMapInnerHTML();
editor.dom.setHTML(map_obj, myimgmap.getMapInnerHTML());
map_obj.name = myimgmap.getMapName();
map_obj.id = myimgmap.getMapId();
img_obj.setAttribute('usemap', "#" + myimgmap.getMapName(), 0);
//img_obj.setAttribute('border', '0');
tinyMCEPopup.execCommand("mceEndUndoLevel");
}
tinyMCEPopup.close();
}
function cancelAction() {
tinyMCEPopup.close();
}
//remove the map object and unset the usemap attribute
function removeAction() {
tinyMCEPopup.execCommand("mceBeginUndoLevel");
if (img_obj != null && img_obj.nodeName == "IMG") {
img_obj.removeAttribute('usemap', 0);
}
if (typeof map_obj != 'undefined' && map_obj != null) {
map_obj.parentNode.removeChild(map_obj);
}
tinyMCEPopup.execCommand("mceEndUndoLevel");
tinyMCEPopup.close();
}
/** FUNCTION SECTION (code taken from default_interface) *****************************/
/**
* Handles mouseover on props row.
*/
function gui_row_mouseover(e) {
if (myimgmap.is_drawing) {return;}//exit if in drawing state
if (myimgmap.viewmode === 1) {return;}//exit if preview mode
var obj = (myimgmap.isMSIE) ? window.event.srcElement : e.currentTarget;
if (typeof obj.aid == 'undefined') {obj = obj.parentNode;}
//console.log(obj.aid);
myimgmap.highlightArea(obj.aid);
}
/**
* Handles mouseout on props row.
*/
function gui_row_mouseout(e) {
if (myimgmap.is_drawing) {return;}//exit if in drawing state
if (myimgmap.viewmode === 1) {return;}//exit if preview mode
var obj = (myimgmap.isMSIE) ? window.event.srcElement : e.currentTarget;
if (typeof obj.aid == 'undefined') {obj = obj.parentNode;}
myimgmap.blurArea(obj.aid);
}
/**
* Handles click on props row.
*/
function gui_row_click(e) {
if (myimgmap.viewmode === 1) {return;}//exit if preview mode
var obj = (myimgmap.isMSIE) ? window.event.srcElement : e.currentTarget;
//var multiple = (e.originalTarget.name == 'img_active');
//myimgmap.log(e.originalTarget);
if (typeof obj.aid == 'undefined') {obj = obj.parentNode;}
//gui_row_select(obj.aid, false, multiple);
gui_row_select(obj.aid, false, false);
myimgmap.currentid = obj.aid;
}
/**
* Handles click on a property row.
* @author Adam Maschek (adam.maschek(at)gmail.com)
* @date 2006-06-06 16:55:29
*/
function gui_row_select(id, setfocus, multiple) {
if (myimgmap.is_drawing) {return;}//exit if in drawing state
if (myimgmap.viewmode === 1) {return;}//exit if preview mode
if (!document.getElementById('img_active_'+id)) {return;}
//if (!multiple)
gui_cb_unselect_all();
document.getElementById('img_active_'+id).checked = 1;
if (setfocus) {
document.getElementById('img_active_'+id).focus();
}
//remove all background styles
for (var i = 0; i < props.length; i++) {
if (props[i]) {
props[i].style.background = '';
}
}
//put highlight on actual props row
props[id].style.background = '#e7e7e7';
};
/**
* Handles delete keypress when focus is on the leading checkbox/radio.
* @author adam
*/
function gui_cb_keydown(e) {
if (myimgmap.viewmode === 1) {return;}//exit if preview mode
var key = (myimgmap.isMSIE) ? event.keyCode : e.keyCode;
//alert(key);
if (key == 46) {
//delete pressed
myimgmap.removeArea(myimgmap.currentid);
}
};
/**
* Unchecks all checboxes/radios.
*/
function gui_cb_unselect_all() {
for (var i = 0; i < props.length; i++) {
if (props[i]) {
document.getElementById('img_active_'+i).checked = false;
}
}
}
/**
* Handles arrow keys on img_coords input field.
* Changes the coordinate values by +/- 1 and updates the corresponding canvas area.
* @author adam
* @date 25-09-2007 17:12:43
*/
function gui_coords_keydown(e) {
if (myimgmap.viewmode === 1) {return;}//exit if preview mode
var key = (myimgmap.isMSIE || myimgmap.isOpera) ? event.keyCode : e.keyCode;
var obj = (myimgmap.isMSIE || myimgmap.isOpera) ? window.event.srcElement : e.originalTarget;
//obj is the input field
//this.log(key);
//this.log(obj);
if (key == 40 || key == 38) {
//down or up pressed
//get the coords
var coords = obj.value.split(',');
var s = getSelectionStart(obj);//helper function
var j = 0;
for (var i=0; i<coords.length; i++) {
j+=coords[i].length;
if (j > s) {
//this is the coord we want
if (key == 40 && coords[i] > 0) {coords[i]--;}
if (key == 38) {coords[i]++;}
break;
}
//jump one more because of comma
j++;
}
obj.value = coords.join(',');
if (obj.value != myimgmap.areas[obj.parentNode.aid].lastInput) {
myimgmap._recalculate(obj.parentNode.aid, obj.value);//contains repaint
}
//set cursor back to its original position
setSelectionRange(obj, s);
return true;
}
};
/**
* Gets the position of the cursor in the input box.
* @author Diego Perlini
* @url http://javascript.nwbox.com/cursor_position/
*/
function getSelectionStart(obj) {
if (obj.createTextRange) {
var r = document.selection.createRange().duplicate();
r.moveEnd('character', obj.value.length);
if (r.text === '') {return obj.value.length;}
return obj.value.lastIndexOf(r.text);
}
else {
return obj.selectionStart;
}
}
/**
* Sets the position of the cursor in the input box.
* @link http://www.codingforums.com/archive/index.php/t-90176.html
*/
function setSelectionRange(obj, start, end) {
if (typeof end == "undefined") {end = start;}
if (obj.setSelectionRange) {
obj.focus(); // to make behaviour consistent with IE
obj.setSelectionRange(start, end);
}
else if (obj.createTextRange) {
var range = obj.createTextRange();
range.collapse(true);
range.moveEnd('character', end);
range.moveStart('character', start);
range.select();
}
}
/**
* Called when one of the properties change, and the recalculate function
* must be called.
* @date 2006.10.24. 22:42:02
* @author Adam Maschek (adam.maschek(at)gmail.com)
*/
function gui_input_change(e) {
if (myimgmap.viewmode === 1) {return;}//exit if preview mode
if (myimgmap.is_drawing) {return;}//exit if drawing
//console.log('blur');
var obj = (myimgmap.isMSIE) ? window.event.srcElement : e.currentTarget;
//console.log(obj);
var id = obj.parentNode.aid;
//console.log(this.areas[id]);
if (obj.name == 'img_href') {myimgmap.areas[id].ahref = obj.value;}
else if (obj.name == 'img_alt') {myimgmap.areas[id].aalt = obj.value;}
else if (obj.name == 'img_title') {myimgmap.areas[id].atitle = obj.value;}
else if (obj.name == 'img_target') {myimgmap.areas[id].atarget = obj.value;}
else if (obj.name == 'img_shape') {
if (myimgmap.areas[id].shape != obj.value && myimgmap.areas[id].shape != 'undefined') {
//shape changed, adjust coords intelligently inside _normCoords
var coords = '';
if (props[id]) {
coords = props[id].getElementsByTagName('input')[2].value;
}
else {
coords = myimgmap.areas[id].lastInput || '' ;
}
coords = myimgmap._normCoords(coords, obj.value, 'from'+myimgmap.areas[id].shape);
if (props[id]) {
props[id].getElementsByTagName('input')[2].value = coords;
}
myimgmap.areas[id].shape = obj.value;
myimgmap._recalculate(id, coords);
myimgmap.areas[id].lastInput = coords;
}
else if (myimgmap.areas[id].shape == 'undefined') {
myimgmap.nextShape = obj.value;
}
}
if (myimgmap.areas[id] && myimgmap.areas[id].shape != 'undefined') {
myimgmap._recalculate(id, props[id].getElementsByTagName('input')[2].value);
myimgmap.fireEvent('onHtmlChanged', myimgmap.getMapHTML());//temp ## shouldnt be here
}
};
/**
* Called from imgmap when a new area is added.
*/
function gui_addArea(id) {
//var id = props.length;
//id = 1;
props[id] = document.createElement('DIV');
document.getElementById('form_container').appendChild(props[id]);
props[id].id = 'img_area_' + id;
props[id].aid = id;
props[id].className = 'img_area';
//hook ROW event handlers
myimgmap.addEvent(props[id], 'mouseover', gui_row_mouseover);
myimgmap.addEvent(props[id], 'mouseout', gui_row_mouseout);
myimgmap.addEvent(props[id], 'click', gui_row_click);
var temp = '<input type="text" name="img_id" class="img_id" value="' + id + '" readonly="1"/>';
//temp+= '<input type="checkbox" name="img_active" class="img_active" id="img_active_'+id+'" value="'+id+'">';
//could be checkbox in the future
temp+= '<input type="radio" name="img_active" class="img_active" id="img_active_'+id+'" value="'+id+'">';
temp+= '<select name="img_shape" class="img_shape">';
temp+= '<option value="rect" >rectangle</option>';
temp+= '<option value="circle" >circle</option>';
temp+= '<option value="poly" >polygon</option>';
temp+= '</select>';
temp+= 'Coords: <input type="text" name="img_coords" class="img_coords" value="">';
temp+= 'Href: <input type="text" name="img_href" class="img_href" value="">';
temp+= 'Alt: <input type="text" name="img_alt" class="img_alt" value="">';
temp+= 'Target: <select name="img_target" class="img_target">';
temp+= '<option value="" ><not set></option>';
temp+= '<option value="_self" >this window</option>';
temp+= '<option value="_blank" >new window</option>';
temp+= '<option value="_top" >top window</option>';
temp+= '</select>';
props[id].innerHTML = temp;
//hook more event handlers to individual inputs
myimgmap.addEvent(props[id].getElementsByTagName('input')[1], 'keydown', gui_cb_keydown);
myimgmap.addEvent(props[id].getElementsByTagName('input')[2], 'keydown', gui_coords_keydown);
myimgmap.addEvent(props[id].getElementsByTagName('input')[2], 'change', gui_input_change);
myimgmap.addEvent(props[id].getElementsByTagName('input')[3], 'change', gui_input_change);
myimgmap.addEvent(props[id].getElementsByTagName('input')[4], 'change', gui_input_change);
myimgmap.addEvent(props[id].getElementsByTagName('select')[0], 'change', gui_input_change);
myimgmap.addEvent(props[id].getElementsByTagName('select')[1], 'change', gui_input_change);
if (myimgmap.isSafari) {
//need these for safari
myimgmap.addEvent(props[id].getElementsByTagName('select')[0], 'change', gui_row_click);
myimgmap.addEvent(props[id].getElementsByTagName('select')[1], 'change', gui_row_click);
}
//set shape as nextshape if set
if (myimgmap.nextShape) {props[id].getElementsByTagName('select')[0].value = myimgmap.nextShape;}
//alert(this.props[id].parentNode.innerHTML);
gui_row_select(id, true);
}
/**
* Called from imgmap when an area was removed.
*/
function gui_removeArea(id) {
if (props[id]) {
//shall we leave the last one?
var pprops = props[id].parentNode;
pprops.removeChild(props[id]);
var lastid = pprops.lastChild.aid;
props[id] = null;
try {
gui_row_select(lastid, true);
myimgmap.currentid = lastid;
}
catch (err) {
//alert('noparent');
}
}
}
/**
* Called from imgmap when mode changed to a given value (preview or normal)
*/
function gui_modeChanged(mode) {
var nodes, i;
if (mode == 1) {
//preview mode
if (document.getElementById('html_container')) {
document.getElementById('html_container').disabled = true;
}
//disable form elements (inputs and selects)
nodes = document.getElementById('form_container').getElementsByTagName("input");
for (i=0; i<nodes.length; i++) {
nodes[i].disabled = true;
}
nodes = document.getElementById('form_container').getElementsByTagName("select");
for (i=0; i<nodes.length; i++) {
nodes[i].disabled = true;
}
document.getElementById('i_preview').src = 'example1_files/edit.gif';
}
else {
//normal mode
if (document.getElementById('html_container')) {
document.getElementById('html_container').disabled = false;
}
//enable form elements (inputs and selects)
nodes = document.getElementById('form_container').getElementsByTagName("input");
for (i=0; i<nodes.length; i++) {
nodes[i].disabled = false;
}
nodes = document.getElementById('form_container').getElementsByTagName("select");
for (i=0; i<nodes.length; i++) {
nodes[i].disabled = false;
}
document.getElementById('i_preview').src = 'example1_files/zoom.gif';
}
}
/**
* Called from imgmap with the new html code when changed.
*/
function gui_htmlChanged(str) {
if (document.getElementById('html_container')) {
document.getElementById('html_container').value = str;
}
}
/**
* Called from imgmap with new status string.
*/
function gui_statusMessage(str) {
if (document.getElementById('status_container')) {
document.getElementById('status_container').innerHTML = str;
}
window.defaultStatus = str;//for IE
}
function gui_areaChanged(area) {
var id = area.aid;
if (props[id]) {
if (area.shape) {props[id].getElementsByTagName('select')[0].value = area.shape;}
if (area.lastInput) {props[id].getElementsByTagName('input')[2].value = area.lastInput;}
if (area.ahref) {props[id].getElementsByTagName('input')[3].value = area.ahref;}
if (area.aalt) {props[id].getElementsByTagName('input')[4].value = area.aalt;}
if (area.atarget) {props[id].getElementsByTagName('select')[1].value = area.atarget;}
}
}
/**
* Called when the grand HTML code loses focus, and the changes must be reflected.
* @date 2006.10.24. 22:51:20
* @author Adam Maschek (adam.maschek(at)gmail.com)
*/
function gui_htmlBlur() {
var elem = document.getElementById('html_container');
var oldvalue = elem.getAttribute('oldvalue');
if (oldvalue != elem.value) {
//dirty
myimgmap.setMapHTML(elem.value);
}
};
/**
* Called when the optional html container gets focus.
* We need to memorize its old value in order to be able to
* detect changes in the code that needs to be reflected.
* @date 20-02-2007 17:51:16
* @author Adam Maschek (adam.maschek(at)gmail.com)
*/
function gui_htmlFocus() {
var elem = document.getElementById('html_container');
elem.setAttribute('oldvalue', elem.value);
elem.select();
};
function gui_htmlShow() {
toggleFieldset(document.getElementById('fieldset_html'), 1);
document.getElementById('html_container').focus();
}
/**
* Change the labeling mode directly in imgmap config then repaint all areas.
*/
function changelabeling(obj) {
myimgmap.config.label = obj.value;
myimgmap._repaintAll();
}
/**
* Change the bounding box mode straight in imgmap config then relax all areas.
* (Relax just repaints the borders and opacity.)
*/
function toggleBoundingBox(obj) {
//console.log(obj.checked);
myimgmap.config.bounding_box = obj.checked;
myimgmap.relaxAllAreas();
}
/**
* Toggles fieldset visibility by changing the className.
* External css needed with the appropriate classnames.
* @date 2006.10.24. 22:13:34
* @author Adam Maschek (maschek@freemail.hu)
*/
function toggleFieldset(fieldset, on) {
if (fieldset) {
if (fieldset.className == 'fieldset_off' || on == 1) {
fieldset.className = '';
}
else {
fieldset.className = 'fieldset_off';
}
}
}
function gui_selectArea(obj) {
gui_row_select(obj.aid, true, false);
}
function gui_zoom() {
var scale = document.getElementById('dd_zoom').value;
var pic = document.getElementById('pic_container').getElementsByTagName('img')[0];
if (typeof pic == 'undefined') {return false;}
if (typeof pic.oldwidth == 'undefined' || !pic.oldwidth) {
pic.oldwidth = pic.width;
}
if (typeof pic.oldheight == 'undefined' || !pic.oldheight) {
pic.oldheight = pic.height;
}
pic.width = pic.oldwidth * scale;
pic.height = pic.oldheight * scale;
myimgmap.scaleAllAreas(scale);
}