DHTML WYSIWYG-control for PDF-relations
This commit is contained in:
@@ -138,7 +138,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
|
||||
* Includes compatibility code for older config.inc.php3 revisions
|
||||
* if necessary
|
||||
*/
|
||||
if (!isset($cfg['FileRevision']) || (int) substr($cfg['FileRevision'], 13, 3) < 185) {
|
||||
if (!isset($cfg['FileRevision']) || (int) substr($cfg['FileRevision'], 13, 3) < 188) {
|
||||
include('./libraries/config_import.lib.php3');
|
||||
}
|
||||
|
||||
|
@@ -741,6 +741,10 @@ if (!defined('PMA_CONFIG_IMPORT_LIB_INCLUDED')) {
|
||||
$cfg['MaxExactCount'] = 20000;
|
||||
}
|
||||
|
||||
if (!isset($cfg['WYSIWYG-PDF'])) {
|
||||
$cfg['WYSIWYG-PDF'] = TRUE;
|
||||
}
|
||||
|
||||
if (!isset($cfg['ShowTooltipAliasDB'])) {
|
||||
$cfg['ShowTooltipAliasDB'] = FALSE;
|
||||
}
|
||||
|
121
libraries/dom-drag.js
Executable file
121
libraries/dom-drag.js
Executable file
@@ -0,0 +1,121 @@
|
||||
/**************************************************
|
||||
* dom-drag.js
|
||||
* 09.25.2001
|
||||
* www.youngpup.net
|
||||
**************************************************
|
||||
* 10.28.2001 - fixed minor bug where events
|
||||
* sometimes fired off the handle, not the root.
|
||||
**************************************************/
|
||||
|
||||
var Drag = {
|
||||
|
||||
obj : null,
|
||||
|
||||
init : function(o, oRoot, minX, maxX, minY, maxY, bSwapHorzRef, bSwapVertRef, fXMapper, fYMapper)
|
||||
{
|
||||
o.onmousedown = Drag.start;
|
||||
|
||||
o.hmode = bSwapHorzRef ? false : true ;
|
||||
o.vmode = bSwapVertRef ? false : true ;
|
||||
|
||||
o.root = oRoot && oRoot != null ? oRoot : o ;
|
||||
|
||||
if (o.hmode && isNaN(parseInt(o.root.style.left ))) o.root.style.left = "0px";
|
||||
if (o.vmode && isNaN(parseInt(o.root.style.top ))) o.root.style.top = "0px";
|
||||
if (!o.hmode && isNaN(parseInt(o.root.style.right ))) o.root.style.right = "0px";
|
||||
if (!o.vmode && isNaN(parseInt(o.root.style.bottom))) o.root.style.bottom = "0px";
|
||||
|
||||
o.minX = typeof minX != 'undefined' ? minX : null;
|
||||
o.minY = typeof minY != 'undefined' ? minY : null;
|
||||
o.maxX = typeof maxX != 'undefined' ? maxX : null;
|
||||
o.maxY = typeof maxY != 'undefined' ? maxY : null;
|
||||
|
||||
o.xMapper = fXMapper ? fXMapper : null;
|
||||
o.yMapper = fYMapper ? fYMapper : null;
|
||||
|
||||
o.root.onDragStart = new Function();
|
||||
o.root.onDragEnd = new Function();
|
||||
o.root.onDrag = new Function();
|
||||
},
|
||||
|
||||
start : function(e)
|
||||
{
|
||||
var o = Drag.obj = this;
|
||||
e = Drag.fixE(e);
|
||||
var y = parseInt(o.vmode ? o.root.style.top : o.root.style.bottom);
|
||||
var x = parseInt(o.hmode ? o.root.style.left : o.root.style.right );
|
||||
o.root.onDragStart(x, y);
|
||||
|
||||
o.lastMouseX = e.clientX;
|
||||
o.lastMouseY = e.clientY;
|
||||
|
||||
if (o.hmode) {
|
||||
if (o.minX != null) o.minMouseX = e.clientX - x + o.minX;
|
||||
if (o.maxX != null) o.maxMouseX = o.minMouseX + o.maxX - o.minX;
|
||||
} else {
|
||||
if (o.minX != null) o.maxMouseX = -o.minX + e.clientX + x;
|
||||
if (o.maxX != null) o.minMouseX = -o.maxX + e.clientX + x;
|
||||
}
|
||||
|
||||
if (o.vmode) {
|
||||
if (o.minY != null) o.minMouseY = e.clientY - y + o.minY;
|
||||
if (o.maxY != null) o.maxMouseY = o.minMouseY + o.maxY - o.minY;
|
||||
} else {
|
||||
if (o.minY != null) o.maxMouseY = -o.minY + e.clientY + y;
|
||||
if (o.maxY != null) o.minMouseY = -o.maxY + e.clientY + y;
|
||||
}
|
||||
|
||||
document.onmousemove = Drag.drag;
|
||||
document.onmouseup = Drag.end;
|
||||
|
||||
return false;
|
||||
},
|
||||
|
||||
drag : function(e)
|
||||
{
|
||||
e = Drag.fixE(e);
|
||||
var o = Drag.obj;
|
||||
|
||||
var ey = e.clientY;
|
||||
var ex = e.clientX;
|
||||
var y = parseInt(o.vmode ? o.root.style.top : o.root.style.bottom);
|
||||
var x = parseInt(o.hmode ? o.root.style.left : o.root.style.right );
|
||||
var nx, ny;
|
||||
|
||||
if (o.minX != null) ex = o.hmode ? Math.max(ex, o.minMouseX) : Math.min(ex, o.maxMouseX);
|
||||
if (o.maxX != null) ex = o.hmode ? Math.min(ex, o.maxMouseX) : Math.max(ex, o.minMouseX);
|
||||
if (o.minY != null) ey = o.vmode ? Math.max(ey, o.minMouseY) : Math.min(ey, o.maxMouseY);
|
||||
if (o.maxY != null) ey = o.vmode ? Math.min(ey, o.maxMouseY) : Math.max(ey, o.minMouseY);
|
||||
|
||||
nx = x + ((ex - o.lastMouseX) * (o.hmode ? 1 : -1));
|
||||
ny = y + ((ey - o.lastMouseY) * (o.vmode ? 1 : -1));
|
||||
|
||||
if (o.xMapper) nx = o.xMapper(y)
|
||||
else if (o.yMapper) ny = o.yMapper(x)
|
||||
|
||||
Drag.obj.root.style[o.hmode ? "left" : "right"] = nx + "px";
|
||||
Drag.obj.root.style[o.vmode ? "top" : "bottom"] = ny + "px";
|
||||
Drag.obj.lastMouseX = ex;
|
||||
Drag.obj.lastMouseY = ey;
|
||||
|
||||
Drag.obj.root.onDrag(nx, ny);
|
||||
return false;
|
||||
},
|
||||
|
||||
end : function()
|
||||
{
|
||||
document.onmousemove = null;
|
||||
document.onmouseup = null;
|
||||
Drag.obj.root.onDragEnd( parseInt(Drag.obj.root.style[Drag.obj.hmode ? "left" : "right"]),
|
||||
parseInt(Drag.obj.root.style[Drag.obj.vmode ? "top" : "bottom"]));
|
||||
Drag.obj = null;
|
||||
},
|
||||
|
||||
fixE : function(e)
|
||||
{
|
||||
if (typeof e == 'undefined') e = window.event;
|
||||
if (typeof e.layerX == 'undefined') e.layerX = e.offsetX;
|
||||
if (typeof e.layerY == 'undefined') e.layerY = e.offsetY;
|
||||
return e;
|
||||
}
|
||||
};
|
@@ -701,3 +701,216 @@ function getElement(e,f){
|
||||
}
|
||||
return document.getElementById(e);
|
||||
}
|
||||
|
||||
/**
|
||||
* Refresh the WYSIWYG-PDF scratchboard after changes have been made
|
||||
*/
|
||||
function refreshDragOption(e) {
|
||||
myid = getElement(e);
|
||||
if (myid.style.visibility == 'visible') {
|
||||
refreshLayout();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Refresh/resize the WYSIWYG-PDF scratchboard
|
||||
*/
|
||||
function refreshLayout() {
|
||||
myid = getElement('pdflayout');
|
||||
|
||||
if (document.pdfoptions.orientation.value == 'P') {
|
||||
posa = 'x';
|
||||
posb = 'y';
|
||||
} else {
|
||||
posa = 'y';
|
||||
posb = 'x';
|
||||
}
|
||||
|
||||
myid.style.width = pdfPaperSize(document.pdfoptions.paper.value, posa) + 'px';
|
||||
myid.style.height = pdfPaperSize(document.pdfoptions.paper.value, posb) + 'px';
|
||||
}
|
||||
|
||||
/**
|
||||
* Show/hide the WYSIWYG-PDF scratchboard
|
||||
*/
|
||||
function ToggleDragDrop(e) {
|
||||
myid = getElement(e);
|
||||
|
||||
if (myid.style.visibility == 'hidden') {
|
||||
init();
|
||||
myid.style.visibility = 'visible';
|
||||
myid.style.display = 'block';
|
||||
document.edcoord.showwysiwyg.value = '1';
|
||||
} else {
|
||||
myid.style.visibility = 'hidden';
|
||||
myid.style.display = 'none';
|
||||
document.edcoord.showwysiwyg.value = '0';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* PDF scratchboard: When a position is entered manually, update
|
||||
* the fields inside the scratchboard.
|
||||
*/
|
||||
function dragPlace(no, axis, value) {
|
||||
if (axis == 'x') {
|
||||
getElement("table_" + no).style.left = value + 'px';
|
||||
} else {
|
||||
getElement("table_" + no).style.top = value + 'px';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns paper sizes for a given format
|
||||
*/
|
||||
function pdfPaperSize(format, axis) {
|
||||
switch (format) {
|
||||
case '4A0':
|
||||
if (axis == 'x') return 4767.87; else return 6740.79;
|
||||
break;
|
||||
case '2A0':
|
||||
if (axis == 'x') return 3370.39; else return 4767.87;
|
||||
break;
|
||||
case 'A0':
|
||||
if (axis == 'x') return 2383.94; else return 3370.39;
|
||||
break;
|
||||
case 'A1':
|
||||
if (axis == 'x') return 1683.78; else return 2383.94;
|
||||
break;
|
||||
case 'A2':
|
||||
if (axis == 'x') return 1190.55; else return 1683.78;
|
||||
break;
|
||||
case 'A3':
|
||||
if (axis == 'x') return 841.89; else return 1190.55;
|
||||
break;
|
||||
case 'A4':
|
||||
if (axis == 'x') return 595.28; else return 841.89;
|
||||
break;
|
||||
case 'A5':
|
||||
if (axis == 'x') return 419.53; else return 595.28;
|
||||
break;
|
||||
case 'A6':
|
||||
if (axis == 'x') return 297.64; else return 419.53;
|
||||
break;
|
||||
case 'A7':
|
||||
if (axis == 'x') return 209.76; else return 297.64;
|
||||
break;
|
||||
case 'A8':
|
||||
if (axis == 'x') return 147.40; else return 209.76;
|
||||
break;
|
||||
case 'A9':
|
||||
if (axis == 'x') return 104.88; else return 147.40;
|
||||
break;
|
||||
case 'A10':
|
||||
if (axis == 'x') return 73.70; else return 104.88;
|
||||
break;
|
||||
case 'B0':
|
||||
if (axis == 'x') return 2834.65; else return 4008.19;
|
||||
break;
|
||||
case 'B1':
|
||||
if (axis == 'x') return 2004.09; else return 2834.65;
|
||||
break;
|
||||
case 'B2':
|
||||
if (axis == 'x') return 1417.32; else return 2004.09;
|
||||
break;
|
||||
case 'B3':
|
||||
if (axis == 'x') return 1000.63; else return 1417.32;
|
||||
break;
|
||||
case 'B4':
|
||||
if (axis == 'x') return 708.66; else return 1000.63;
|
||||
break;
|
||||
case 'B5':
|
||||
if (axis == 'x') return 498.90; else return 708.66;
|
||||
break;
|
||||
case 'B6':
|
||||
if (axis == 'x') return 354.33; else return 498.90;
|
||||
break;
|
||||
case 'B7':
|
||||
if (axis == 'x') return 249.45; else return 354.33;
|
||||
break;
|
||||
case 'B8':
|
||||
if (axis == 'x') return 175.75; else return 249.45;
|
||||
break;
|
||||
case 'B9':
|
||||
if (axis == 'x') return 124.72; else return 175.75;
|
||||
break;
|
||||
case 'B10':
|
||||
if (axis == 'x') return 87.87; else return 124.72;
|
||||
break;
|
||||
case 'C0':
|
||||
if (axis == 'x') return 2599.37; else return 3676.54;
|
||||
break;
|
||||
case 'C1':
|
||||
if (axis == 'x') return 1836.85; else return 2599.37;
|
||||
break;
|
||||
case 'C2':
|
||||
if (axis == 'x') return 1298.27; else return 1836.85;
|
||||
break;
|
||||
case 'C3':
|
||||
if (axis == 'x') return 918.43; else return 1298.27;
|
||||
break;
|
||||
case 'C4':
|
||||
if (axis == 'x') return 649.13; else return 918.43;
|
||||
break;
|
||||
case 'C5':
|
||||
if (axis == 'x') return 459.21; else return 649.13;
|
||||
break;
|
||||
case 'C6':
|
||||
if (axis == 'x') return 323.15; else return 459.21;
|
||||
break;
|
||||
case 'C7':
|
||||
if (axis == 'x') return 229.61; else return 323.15;
|
||||
break;
|
||||
case 'C8':
|
||||
if (axis == 'x') return 161.57; else return 229.61;
|
||||
break;
|
||||
case 'C9':
|
||||
if (axis == 'x') return 113.39; else return 161.57;
|
||||
break;
|
||||
case 'C10':
|
||||
if (axis == 'x') return 79.37; else return 113.39;
|
||||
break;
|
||||
case 'RA0':
|
||||
if (axis == 'x') return 2437.80; else return 3458.27;
|
||||
break;
|
||||
case 'RA1':
|
||||
if (axis == 'x') return 1729.13; else return 2437.80;
|
||||
break;
|
||||
case 'RA2':
|
||||
if (axis == 'x') return 1218.90; else return 1729.13;
|
||||
break;
|
||||
case 'RA3':
|
||||
if (axis == 'x') return 864.57; else return 1218.90;
|
||||
break;
|
||||
case 'RA4':
|
||||
if (axis == 'x') return 609.45; else return 864.57;
|
||||
break;
|
||||
case 'SRA0':
|
||||
if (axis == 'x') return 2551.18; else return 3628.35;
|
||||
break;
|
||||
case 'SRA1':
|
||||
if (axis == 'x') return 1814.17; else return 2551.18;
|
||||
break;
|
||||
case 'SRA2':
|
||||
if (axis == 'x') return 1275.59; else return 1814.17;
|
||||
break;
|
||||
case 'SRA3':
|
||||
if (axis == 'x') return 907.09; else return 1275.59;
|
||||
break;
|
||||
case 'SRA4':
|
||||
if (axis == 'x') return 637.80; else return 907.09;
|
||||
break;
|
||||
case 'LETTER':
|
||||
if (axis == 'x') return 612.00; else return 792.00;
|
||||
break;
|
||||
case 'LEGAL':
|
||||
if (axis == 'x') return 612.00; else return 1008.00;
|
||||
break;
|
||||
case 'EXECUTIVE':
|
||||
if (axis == 'x') return 521.86; else return 756.00;
|
||||
break;
|
||||
case 'FOLIO':
|
||||
if (axis == 'x') return 612.00; else return 936.00;
|
||||
break;
|
||||
} // end switch
|
||||
}
|
||||
|
Reference in New Issue
Block a user