Seditio Source
Root |
./othercms/dotclear-2.22/plugins/dcCKEditor/js/ckeditor/plugins/tabletools/dialogs/tableCell.js
CKEDITOR.dialog.add('cellProperties',function(editor){var langTable=editor.lang.table,langCell=langTable.cell,langCommon=editor.lang.common,validate=CKEDITOR.dialog.validate,rtl=editor.lang.dir=='rtl',colorDialog=editor.plugins.colordialog,items=[getCellSizeFieldDefinition('width'),getCellSizeFieldDefinition('height'),createSpacer(['td{width}','td{height}']),{type:'select',id:'wordWrap',requiredContent:'td{white-space}',label:langCell.wordWrap,'default':'yes',items:[[langCell.yes,'yes'],[langCell.no,'no']],setup:setupCells(function(element){var wordWrapAttr=element.getAttribute('noWrap'),wordWrapStyle=element.getStyle('white-space');if(wordWrapStyle=='nowrap'||wordWrapAttr){return'no';}}),commit:function(element){if(this.getValue()=='no'){element.setStyle('white-space','nowrap');}else{element.removeStyle('white-space');}
element.removeAttribute('noWrap');}},createSpacer('td{white-space}'),{type:'select',id:'hAlign',requiredContent:'td{text-align}',label:langCell.hAlign,'default':'',items:[[langCommon.notSet,''],[langCommon.left,'left'],[langCommon.center,'center'],[langCommon.right,'right'],[langCommon.justify,'justify']],setup:setupCells(function(element){var alignAttr=element.getAttribute('align'),textAlignStyle=element.getStyle('text-align');return textAlignStyle||alignAttr||'';}),commit:function(selectedCell){var value=this.getValue();if(value){selectedCell.setStyle('text-align',value);}else{selectedCell.removeStyle('text-align');}
selectedCell.removeAttribute('align');}},{type:'select',id:'vAlign',requiredContent:'td{vertical-align}',label:langCell.vAlign,'default':'',items:[[langCommon.notSet,''],[langCommon.alignTop,'top'],[langCommon.alignMiddle,'middle'],[langCommon.alignBottom,'bottom'],[langCell.alignBaseline,'baseline']],setup:setupCells(function(element){var vAlignAttr=element.getAttribute('vAlign'),vAlignStyle=element.getStyle('vertical-align');switch(vAlignStyle){case'top':case'middle':case'bottom':case'baseline':break;default:vAlignStyle='';}
return vAlignStyle||vAlignAttr||'';}),commit:function(element){var value=this.getValue();if(value){element.setStyle('vertical-align',value);}else{element.removeStyle('vertical-align');}
element.removeAttribute('vAlign');}},createSpacer(['td{text-align}','td{vertical-align}']),{type:'select',id:'cellType',requiredContent:'th',label:langCell.cellType,'default':'td',items:[[langCell.data,'td'],[langCell.header,'th']],setup:setupCells(function(selectedCell){return selectedCell.getName();}),commit:function(selectedCell){selectedCell.renameNode(this.getValue());}},createSpacer('th'),{type:'text',id:'rowSpan',requiredContent:'td[rowspan]',label:langCell.rowSpan,'default':'',validate:validate.integer(langCell.invalidRowSpan),setup:setupCells(function(selectedCell){var attrVal=parseInt(selectedCell.getAttribute('rowSpan'),10);if(attrVal&&attrVal!=1){return attrVal;}}),commit:function(selectedCell){var value=parseInt(this.getValue(),10);if(value&&value!=1){selectedCell.setAttribute('rowSpan',this.getValue());}else{selectedCell.removeAttribute('rowSpan');}}},{type:'text',id:'colSpan',requiredContent:'td[colspan]',label:langCell.colSpan,'default':'',validate:validate.integer(langCell.invalidColSpan),setup:setupCells(function(element){var attrVal=parseInt(element.getAttribute('colSpan'),10);if(attrVal&&attrVal!=1){return attrVal;}}),commit:function(selectedCell){var value=parseInt(this.getValue(),10);if(value&&value!=1){selectedCell.setAttribute('colSpan',this.getValue());}else{selectedCell.removeAttribute('colSpan');}}},createSpacer(['td[colspan]','td[rowspan]']),{type:'hbox',padding:0,widths:colorDialog?['60%','40%']:['100%'],requiredContent:'td{background-color}',children:(function(){var children=[{type:'text',id:'bgColor',label:langCell.bgColor,'default':'',setup:setupCells(function(element){var bgColorAttr=element.getAttribute('bgColor'),bgColorStyle=element.getStyle('background-color');return bgColorStyle||bgColorAttr;}),commit:function(selectedCell){applyColorToCell(this,selectedCell,'background-color');}}];if(colorDialog){children.push({type:'button',id:'bgColorChoose','class':'colorChooser',label:langCell.chooseColor,onLoad:function(){this.getElement().getParent().setStyle('vertical-align','bottom');},onClick:function(){getColorForCell(this,'bgColor');}});}
return children;})()},{type:'hbox',padding:0,widths:colorDialog?['60%','40%']:['100%'],requiredContent:'td{border-color}',children:(function(){var children=[{type:'text',id:'borderColor',label:langCell.borderColor,'default':'',setup:setupCells(function(element){var borderColorAttr=element.getAttribute('borderColor'),borderColorStyle=element.getStyle('border-color');return borderColorStyle||borderColorAttr;}),commit:function(selectedCell){applyColorToCell(this,selectedCell,'border-color');}}];if(colorDialog){children.push({type:'button',id:'borderColorChoose','class':'colorChooser',label:langCell.chooseColor,style:(rtl?'margin-right':'margin-left')+': 10px',onLoad:function(){this.getElement().getParent().setStyle('vertical-align','bottom');},onClick:function(){getColorForCell(this,'borderColor');}});}
return children;})()}],itemsCount=0,index=-1,children=[createColumn()];items=CKEDITOR.tools.array.filter(items,function(item){var requiredContent=item.requiredContent,ret;delete item.requiredContent;ret=editor.filter.check(requiredContent);if(ret&&!item.isSpacer){itemsCount++;}
return ret;});if(itemsCount>5){children=children.concat([createSpacer(),createColumn()]);}
CKEDITOR.tools.array.forEach(items,function(item){if(!item.isSpacer){index++;}
if(itemsCount>5&&index>=itemsCount / 2){children[2].children.push(item);}else{children[0].children.push(item);}});CKEDITOR.tools.array.forEach(children,function(item){if(item.isSpacer){return;}
var children=item.children;if(children[children.length-1].isSpacer){children.pop();}});return{title:langCell.title,minWidth:children.length===1?205:410,minHeight:50,contents:[{id:'info',label:langCell.title,accessKey:'I',elements:[{type:'hbox',widths:children.length===1?['100%']:['40%','5%','40%'],children:children}]}],getModel:function(editor){return CKEDITOR.plugins.tabletools.getSelectedCells(editor.getSelection());},onShow:function(){var cells=this.getModel(this.getParentEditor());this.setupContent(cells);},onOk:function(){var selection=this._.editor.getSelection(),bookmarks=selection.createBookmarks(),editor=this.getParentEditor(),cells=this.getModel(editor);for(var i=0;i<cells.length;i++){this.commitContent(cells[i]);}
editor.forceNextSelectionCheck();selection.selectBookmarks(bookmarks);editor.selectionChange();},onLoad:function(){var saved={};this.foreach(function(field){if(!field.setup||!field.commit){return;}
field.setup=CKEDITOR.tools.override(field.setup,function(orgSetup){return function(){orgSetup.apply(this,arguments);saved[field.id]=field.getValue();};});field.commit=CKEDITOR.tools.override(field.commit,function(orgCommit){return function(){if(saved[field.id]!==field.getValue()){orgCommit.apply(this,arguments);}};});});}};function createSpacer(requiredContent){return{isSpacer:true,type:'html',html:'&nbsp;',requiredContent:requiredContent?requiredContent:undefined};}
function createColumn(){return{type:'vbox',padding:0,children:[]};}
function getCellSizeFieldDefinition(fieldName){return{requiredContent:'td{'+fieldName+'}',type:'hbox',widths:['70%','30%'],children:[{type:'text',id:fieldName,width:'100px',label:langCommon[fieldName],validate:validate.number(langCell['invalid'+CKEDITOR.tools.capitalize(fieldName)]),onLoad:function(){var unitType=this.getDialog().getContentElement('info',fieldName+'Type'),labelElement=unitType.getElement(),inputElement=this.getInputElement(),ariaLabelledByAttr=inputElement.getAttribute('aria-labelledby');inputElement.setAttribute('aria-labelledby',[ariaLabelledByAttr,labelElement.$.id].join(' '));},setup:setupCells(function(element){var attr=parseFloat(element.getAttribute(fieldName),10),style=parseFloat(element.getStyle(fieldName),10);if(!isNaN(style)){return style;}
if(!isNaN(attr)){return attr;}
return;}),commit:function(element){var value=parseFloat(this.getValue(),10),unit=this.getDialog().getValueOf('info',fieldName+'Type')||getCellSizeUnitType(element,fieldName);if(!isNaN(value)){element.setStyle(fieldName,value+unit);}else{element.removeStyle(fieldName);}
element.removeAttribute(fieldName);},'default':''},{type:'select',id:fieldName+'Type',label:editor.lang.table[fieldName+'Unit'],labelStyle:'visibility:hidden;display:block;width:0;overflow:hidden','default':'px',items:[[langTable.widthPx,'px'],[langTable.widthPc,'%']],setup:setupCells(function(element){return getCellSizeUnitType(element,fieldName);})}]};}
function setupCells(setup){return function(cells){var fieldValue=setup(cells[0]);for(var i=1;i<cells.length;i++){if(setup(cells[i])!==fieldValue){fieldValue=null;break;}}
if(typeof fieldValue!='undefined'){this.setValue(fieldValue);if(CKEDITOR.env.gecko&&this.type=='select'&&!fieldValue){this.getInputElement().$.selectedIndex=-1;}}};}
function getCellSizeUnitType(cell,field){var unitPattern=/^(\d+(?:\.\d+)?)(px|%)$/,match=unitPattern.exec(cell.getStyle(field)||cell.getAttribute(field));if(match){return match[2];}}
function getColorForCell(button,elementId){editor.getColorFromDialog(function(color){if(color){button.getDialog().getContentElement('info',elementId).setValue(color);}
button.focus();},button);}
function applyColorToCell(element,selectedCell,property){var value=element.getValue();if(value){selectedCell.setStyle(property,value);}else{selectedCell.removeStyle(property);}
if(property=='background-color'){selectedCell.removeAttribute('bgColor');}else if(property=='border-color'){selectedCell.removeAttribute('borderColor');}}});