Files
firstgarden-web-gnu/cheditor5/popup/js/table_modify.js
2012-10-05 15:12:27 +09:00

236 lines
8.8 KiB
JavaScript

// ================================================================
// CHEditor 5
// ----------------------------------------------------------------
// Homepage: http://www.chcode.com
// Copyright (c) 1997-2011 CHSOFT
// ================================================================
var oEditor = null;
var button = [ { alt : "", img : 'submit.gif', cmd : doSubmit },
{ alt : "", img : 'cancel.gif', cmd : popupClose } ];
var colour = ["ffffcc","ffcc66","ff9900","ffcc99","ff6633","ffcccc","cc9999","ff6699","ff99cc","ff66cc","ffccff","cc99cc","cc66ff","cc99ff","9966cc","ccccff","9999cc","3333ff","6699ff","0066ff","99ccff","66ccff","99cccc","ccffff","99ffcc","66cc99","66ff99","99ff99","ccffcc","33ff33","66ff00","ccff99","99ff00","ccff66","cccc66","ffffff",
"ffff99","ffcc00","ff9933","ff9966","cc3300","ff9999","cc6666","ff3366","ff3399","ff00cc","ff99ff","cc66cc","cc33ff","9933cc","9966ff","9999ff","6666ff","3300ff","3366ff","0066cc","3399ff","33ccff","66cccc","99ffff","66ffcc","33cc99","33ff99","66ff66","99cc99","00ff33","66ff33","99ff66","99ff33","ccff00","cccc33","cccccc",
"ffff66","ffcc33","cc9966","ff6600","ff3300","ff6666","cc3333","ff0066","ff0099","ff33cc","ff66ff","cc00cc","cc00ff","9933ff","6600cc","6633ff","6666cc","3300cc","0000ff","3366cc","0099ff","00ccff","339999","66ffff","33ffcc","00cc99","00ff99","33ff66","66cc66","00ff00","33ff00","66cc00","99cc66","ccff33","999966","999999",
"ffff33","cc9900","cc6600","cc6633","ff0000","ff3333","993333","cc3366","cc0066","cc6699","ff33ff","cc33cc","9900cc","9900ff","6633cc","6600ff","666699","3333cc","0000cc","0033ff","6699cc","3399cc","669999","33ffff","00ffcc","339966","33cc66","00ff66","669966","00cc00","33cc00","66cc33","99cc00","cccc99","999933","666666",
"ffff00","cc9933","996633","993300","cc0000","ff0033","990033","996666","993366","cc0099","ff00ff","990099","996699","660099","663399","330099","333399","000099","0033cc","003399","336699","0099cc","006666","00ffff","33cccc","009966","00cc66","339933","336633","33cc33","339900","669933","99cc33","666633","999900","333333",
"cccc00","996600","663300","660000","990000","cc0033","330000","663333","660033","990066","cc3399","993399","660066","663366","330033","330066","333366","000066","000033","003366","006699","003333","336666","00cccc","009999","006633","009933","006600","003300","00cc33","009900","336600","669900","333300","666600","000000"];
var modifyTable = null;
function init(dialog) {
oEditor = this;
oEditor.dialog = dialog;
var dlg = new Dialog(oEditor);
dlg.showButton(button);
dlg.setDialogHeight();
var rng = oEditor.range;
var selectionType = oEditor.getSelectionType(rng);
if (!oEditor.getBrowser().msie) {
var table = rng.startContainer;
if (selectionType == 3 && table.nodeName != 'TABLE' && table.nodeName != 'TD') {
isError();
return;
}
}
else {
if (rng.item) {
table = rng.item(0);
if (table.nodeName != 'TABLE') {
isError();
return;
}
}
else
table = rng.parentElement();
}
while (table && table.nodeName != 'TABLE')
table = table.parentNode;
if (table.nodeName != 'TABLE') {
isError();
return;
}
modifyTable = table;
var border = table.getAttribute('border');
if (isNaN(border)) border = 0;
document.getElementById("bordersize").value = border ? border : 0;
var el_size = table.getAttribute('width');
var fm_size = document.getElementById("width");
var el_type = 'none';
var fm_type = document.getElementById("widthtype");
if (el_size != null) {
el_type = (/\%$/.test(el_size)) ? '%' : 'px';
el_size = parseInt(el_size);
if (isNaN(el_size)) el_size = 0;
}
else {
el_size = 0;
}
fm_size.value = el_size;
fm_type.value = el_type;
el_size = table.getAttribute('height');
fm_size = document.getElementById("height");
el_type = 'none';
fm_type = document.getElementById("heighttype");
if (el_size != null) {
el_type = (/\%$/.test(el_size)) ? '%' : 'px';
el_size = parseInt(el_size);
if (isNaN(el_size)) el_size = 0;
}
else {
el_size = 0;
}
fm_size.value = el_size;
fm_type.value = el_type;
fm_type = table.getAttribute('align');
if (fm_type == null) fm_type = 'none';
document.getElementById("talign").value = fm_type;
var cellpd = table.getAttribute('cellpadding');
if (isNaN(cellpd)) cellpd = 0;
document.getElementById("cellpd").value = cellpd ? cellpd : 0;
var cellsp = table.getAttribute('cellspacing');
if (isNaN(cellsp)) cellsp = 0;
document.getElementById("cellsp").value = cellsp ? cellsp : 0;
var bgcolor = table.getAttribute('bgcolor');
var idbgcolor = document.getElementById("idbgcolor");
if (bgcolor) {
idbgcolor.value = bgcolor.toUpperCase();
idbgcolor.style.backgroundColor = idbgcolor.value;
}
else {
idbgcolor.value = '--';
}
var bordercolor = table.getAttribute('bordercolor');
var idbordercolor = document.getElementById("idbordercolor");
if (bordercolor) {
idbordercolor.value = bordercolor.toUpperCase();
idbordercolor.style.backgroundColor = idbordercolor.value;
}
else {
idbordercolor.value = '--';
}
}
function isError() {
alert('수정하실 테이블을 선택하십시오.');
popupClose();
}
function popupClose() {
oEditor.popupWinClose();
}
function drawColor(el)
{
var table = document.createElement('table');
table.cellPadding = 0;
table.cellSpacing = 0;
table.border = 0;
var tr = table.insertRow(0);
var td = tr.insertCell(0);
td.style.backgroundColor = '#000';
var insideTable = document.createElement('table');
insideTable.border = 0;
insideTable.cellSpacing = 1;
insideTable.cellPadding = 0;
insideTable.align = 'center';
var k = 0;
for (var i = 0; i < 6; i++) {
var tr2 = insideTable.insertRow(i);
for (var j = 0; j < 36; j++) {
var td2 = tr2.insertCell(j);
td2.setAttribute('bgColor', '#' + colour[k]);
td2.className = el;
td2.style.width = '9px';
td2.style.height = '9px';
td2.onclick = getColor;
k++;
}
}
td.appendChild(insideTable);
document.getElementById(el + '_wrapper').appendChild(table);
}
function getColor()
{
var color = this.bgColor;
var input = document.getElementById("id"+this.className);
input.style.backgroundColor = input.value = color.toUpperCase();
}
function doSubmit()
{
var border = parseInt(document.getElementById("bordersize").value);
if (isNaN(border)) border = 0;
modifyTable.removeAttribute('border');
if (border) modifyTable.setAttribute('border', border);
var width = document.getElementById("width").value;
if (document.getElementById("widthtype").value == 'none')
width = null;
else {
width = isNaN(width) ? null : parseInt(width) + document.getElementById("widthtype").value;
}
modifyTable.removeAttribute('width');
if (width) modifyTable.setAttribute('width', width);
var height = document.getElementById("height").value;
if (document.getElementById("heighttype").value == 'none')
height = null;
else {
height = isNaN(height) ? null : height + document.getElementById("heighttype").value;
}
modifyTable.removeAttribute('height');
if (height) modifyTable.setAttribute('height', height);
var cellpd = parseInt(document.getElementById("cellpd").value);
if (isNaN(cellpd)) cellpd = 0;
modifyTable.setAttribute('cellpadding', cellpd);
var cellsp = parseInt(document.getElementById("cellsp").value);
if (isNaN(cellsp)) cellsp = 0;
modifyTable.setAttribute('cellspacing', cellsp);
var bgcolor = document.getElementById("idbgcolor").value;
bgcolor = oEditor.trimSpace(bgcolor);
if (bgcolor == '' || bgcolor == '--') bgcolor = null;
modifyTable.removeAttribute('bgcolor');
if (bgcolor) modifyTable.setAttribute('bgcolor', bgcolor);
var align = document.getElementById("talign").value;
if (align == 'none') align = null;
modifyTable.removeAttribute('align');
if (align) modifyTable.setAttribute('align', align);
var bordercolor = document.getElementById("idbordercolor").value;
bordercolor = oEditor.trimSpace(bordercolor);
if (bordercolor == ''|| bordercolor == '--') bordercolor = null;
modifyTable.removeAttribute('bordercolor');
if (bordercolor) modifyTable.setAttribute('bordercolor', bordercolor);
popupClose();
}