mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-18 20:39:13 +02:00
Committed CKEditor 3.2.1 stock version
This commit is contained in:
@@ -0,0 +1,528 @@
|
||||
/*
|
||||
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.dialog.add( 'cellProperties', function( editor )
|
||||
{
|
||||
var langTable = editor.lang.table;
|
||||
var langCell = langTable.cell;
|
||||
var langCommon = editor.lang.common;
|
||||
var validate = CKEDITOR.dialog.validate;
|
||||
var widthPattern = /^(\d+(?:\.\d+)?)(px|%)$/,
|
||||
heightPattern = /^(\d+(?:\.\d+)?)px$/;
|
||||
var bind = CKEDITOR.tools.bind;
|
||||
|
||||
function spacer()
|
||||
{
|
||||
return { type : 'html', html : ' ' };
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param dialogName
|
||||
* @param callback [ childDialog ]
|
||||
*/
|
||||
function getDialogValue( dialogName, callback )
|
||||
{
|
||||
var onOk = function()
|
||||
{
|
||||
releaseHandlers( this );
|
||||
callback( this );
|
||||
};
|
||||
var onCancel = function()
|
||||
{
|
||||
releaseHandlers( this );
|
||||
};
|
||||
var bindToDialog = function( dialog )
|
||||
{
|
||||
dialog.on( 'ok', onOk );
|
||||
dialog.on( 'cancel', onCancel );
|
||||
};
|
||||
var releaseHandlers = function( dialog )
|
||||
{
|
||||
dialog.removeListener( 'ok', onOk );
|
||||
dialog.removeListener( 'cancel', onCancel );
|
||||
};
|
||||
editor.execCommand( dialogName );
|
||||
if ( editor._.storedDialogs.colordialog )
|
||||
bindToDialog( editor._.storedDialogs.colordialog );
|
||||
else
|
||||
{
|
||||
CKEDITOR.on( 'dialogDefinition', function( e )
|
||||
{
|
||||
if ( e.data.name != dialogName )
|
||||
return;
|
||||
|
||||
var definition = e.data.definition;
|
||||
|
||||
e.removeListener();
|
||||
definition.onLoad = CKEDITOR.tools.override( definition.onLoad, function( orginal )
|
||||
{
|
||||
return function()
|
||||
{
|
||||
bindToDialog( this );
|
||||
definition.onLoad = orginal;
|
||||
if ( typeof orginal == 'function' )
|
||||
orginal.call( this );
|
||||
};
|
||||
} );
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
title : langCell.title,
|
||||
minWidth : CKEDITOR.env.ie && CKEDITOR.env.quirks ? 550 : 480,
|
||||
minHeight : CKEDITOR.env.ie ? ( CKEDITOR.env.quirks ? 180 : 150 ) : 140,
|
||||
contents : [
|
||||
{
|
||||
id : 'info',
|
||||
label : langCell.title,
|
||||
accessKey : 'I',
|
||||
elements :
|
||||
[
|
||||
{
|
||||
type : 'hbox',
|
||||
widths : [ '40%', '5%', '40%' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'vbox',
|
||||
padding : 0,
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'hbox',
|
||||
widths : [ '70%', '30%' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'text',
|
||||
id : 'width',
|
||||
label : langTable.width,
|
||||
widths : [ '71%', '29%' ],
|
||||
labelLayout : 'horizontal',
|
||||
validate : validate[ 'number' ]( langCell.invalidWidth ),
|
||||
|
||||
// Extra labelling of width unit type.
|
||||
onLoad : function()
|
||||
{
|
||||
var widthType = this.getDialog().getContentElement( 'info', 'widthType' ),
|
||||
labelElement = widthType.getElement(),
|
||||
inputElement = this.getInputElement(),
|
||||
ariaLabelledByAttr = inputElement.getAttribute( 'aria-labelledby' );
|
||||
|
||||
inputElement.setAttribute( 'aria-labelledby', [ ariaLabelledByAttr, labelElement.$.id ].join( ' ' ) );
|
||||
},
|
||||
|
||||
setup : function( element )
|
||||
{
|
||||
var widthAttr = parseInt( element.getAttribute( 'width' ), 10 ),
|
||||
widthStyle = parseInt( element.getStyle( 'width' ), 10 );
|
||||
|
||||
!isNaN( widthAttr ) && this.setValue( widthAttr );
|
||||
!isNaN( widthStyle ) && this.setValue( widthStyle );
|
||||
},
|
||||
commit : function( element )
|
||||
{
|
||||
var value = parseInt( this.getValue(), 10 ),
|
||||
unit = this.getDialog().getValueOf( 'info', 'widthType' );
|
||||
|
||||
if ( !isNaN( value ) )
|
||||
element.setStyle( 'width', value + unit );
|
||||
else
|
||||
element.removeStyle( 'width' );
|
||||
|
||||
element.removeAttribute( 'width' );
|
||||
},
|
||||
'default' : ''
|
||||
},
|
||||
{
|
||||
type : 'select',
|
||||
id : 'widthType',
|
||||
labelLayout : 'horizontal',
|
||||
widths : [ '0%', '100%' ],
|
||||
label : editor.lang.table.widthUnit,
|
||||
labelStyle: 'display:none',
|
||||
'default' : 'px',
|
||||
items :
|
||||
[
|
||||
[ langTable.widthPx, 'px' ],
|
||||
[ langTable.widthPc, '%' ]
|
||||
],
|
||||
setup : function( selectedCell )
|
||||
{
|
||||
var widthMatch = widthPattern.exec( selectedCell.$.style.width );
|
||||
if ( widthMatch )
|
||||
this.setValue( widthMatch[2] );
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type : 'hbox',
|
||||
widths : [ '70%', '30%' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'text',
|
||||
id : 'height',
|
||||
label : langTable.height,
|
||||
'default' : '',
|
||||
widths : [ '71%', '29%' ],
|
||||
labelLayout : 'horizontal',
|
||||
validate : validate[ 'number' ]( langCell.invalidHeight ),
|
||||
|
||||
// Extra labelling of height unit type.
|
||||
onLoad : function()
|
||||
{
|
||||
var heightType = this.getDialog().getContentElement( 'info', 'htmlHeightType' ),
|
||||
labelElement = heightType.getElement(),
|
||||
inputElement = this.getInputElement(),
|
||||
ariaLabelledByAttr = inputElement.getAttribute( 'aria-labelledby' );
|
||||
|
||||
inputElement.setAttribute( 'aria-labelledby', [ ariaLabelledByAttr, labelElement.$.id ].join( ' ' ) );
|
||||
},
|
||||
|
||||
setup : function( element )
|
||||
{
|
||||
var heightAttr = parseInt( element.getAttribute( 'height' ), 10 ),
|
||||
heightStyle = parseInt( element.getStyle( 'height' ), 10 );
|
||||
|
||||
!isNaN( heightAttr ) && this.setValue( heightAttr );
|
||||
!isNaN( heightStyle ) && this.setValue( heightStyle );
|
||||
},
|
||||
commit : function( element )
|
||||
{
|
||||
var value = parseInt( this.getValue(), 10 );
|
||||
|
||||
if ( !isNaN( value ) )
|
||||
element.setStyle( 'height', CKEDITOR.tools.cssLength( value ) );
|
||||
else
|
||||
element.removeStyle( 'height' );
|
||||
|
||||
element.removeAttribute( 'height' );
|
||||
}
|
||||
},
|
||||
{
|
||||
id : 'htmlHeightType',
|
||||
type : 'html',
|
||||
html : langTable.widthPx
|
||||
}
|
||||
]
|
||||
},
|
||||
spacer(),
|
||||
{
|
||||
type : 'select',
|
||||
id : 'wordWrap',
|
||||
labelLayout : 'horizontal',
|
||||
label : langCell.wordWrap,
|
||||
widths : [ '50%', '50%' ],
|
||||
'default' : 'yes',
|
||||
items :
|
||||
[
|
||||
[ langCell.yes, 'yes' ],
|
||||
[ langCell.no, 'no' ]
|
||||
],
|
||||
setup : function( element )
|
||||
{
|
||||
var wordWrapAttr = element.getAttribute( 'noWrap' ),
|
||||
wordWrapStyle = element.getStyle( 'white-space' );
|
||||
|
||||
if ( wordWrapStyle == 'nowrap' || wordWrapAttr )
|
||||
this.setValue( 'no' );
|
||||
},
|
||||
commit : function( element )
|
||||
{
|
||||
if ( this.getValue() == 'no' )
|
||||
element.setStyle( 'white-space', 'nowrap' );
|
||||
else
|
||||
element.removeStyle( 'white-space' );
|
||||
|
||||
element.removeAttribute( 'noWrap' );
|
||||
}
|
||||
},
|
||||
spacer(),
|
||||
{
|
||||
type : 'select',
|
||||
id : 'hAlign',
|
||||
labelLayout : 'horizontal',
|
||||
label : langCell.hAlign,
|
||||
widths : [ '50%', '50%' ],
|
||||
'default' : '',
|
||||
items :
|
||||
[
|
||||
[ langCommon.notSet, '' ],
|
||||
[ langTable.alignLeft, 'left' ],
|
||||
[ langTable.alignCenter, 'center' ],
|
||||
[ langTable.alignRight, 'right' ]
|
||||
],
|
||||
setup : function( element )
|
||||
{
|
||||
var alignAttr = element.getAttribute( 'align' ),
|
||||
textAlignStyle = element.getStyle( 'text-align');
|
||||
|
||||
this.setValue( 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',
|
||||
labelLayout : 'horizontal',
|
||||
label : langCell.vAlign,
|
||||
widths : [ '50%', '50%' ],
|
||||
'default' : '',
|
||||
items :
|
||||
[
|
||||
[ langCommon.notSet, '' ],
|
||||
[ langCell.alignTop, 'top' ],
|
||||
[ langCell.alignMiddle, 'middle' ],
|
||||
[ langCell.alignBottom, 'bottom' ],
|
||||
[ langCell.alignBaseline, 'baseline' ]
|
||||
],
|
||||
setup : function( element )
|
||||
{
|
||||
var vAlignAttr = element.getAttribute( 'vAlign' ),
|
||||
vAlignStyle = element.getStyle( 'vertical-align' );
|
||||
|
||||
switch( vAlignStyle )
|
||||
{
|
||||
// Ignore all other unrelated style values..
|
||||
case 'top':
|
||||
case 'middle':
|
||||
case 'bottom':
|
||||
case 'baseline':
|
||||
break;
|
||||
default:
|
||||
vAlignStyle = '';
|
||||
}
|
||||
|
||||
this.setValue( vAlignStyle || vAlignAttr || '' );
|
||||
},
|
||||
commit : function( element )
|
||||
{
|
||||
var value = this.getValue();
|
||||
|
||||
if ( value )
|
||||
element.setStyle( 'vertical-align', value );
|
||||
else
|
||||
element.removeStyle( 'vertical-align' );
|
||||
|
||||
element.removeAttribute( 'vAlign' );
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
spacer(),
|
||||
{
|
||||
type : 'vbox',
|
||||
padding : 0,
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'select',
|
||||
id : 'cellType',
|
||||
label : langCell.cellType,
|
||||
labelLayout : 'horizontal',
|
||||
widths : [ '50%', '50%' ],
|
||||
'default' : 'td',
|
||||
items :
|
||||
[
|
||||
[ langCell.data, 'td' ],
|
||||
[ langCell.header, 'th' ]
|
||||
],
|
||||
setup : function( selectedCell )
|
||||
{
|
||||
this.setValue( selectedCell.getName() );
|
||||
},
|
||||
commit : function( selectedCell )
|
||||
{
|
||||
selectedCell.renameNode( this.getValue() );
|
||||
}
|
||||
},
|
||||
spacer(),
|
||||
{
|
||||
type : 'text',
|
||||
id : 'rowSpan',
|
||||
label : langCell.rowSpan,
|
||||
labelLayout : 'horizontal',
|
||||
widths : [ '50%', '50%' ],
|
||||
'default' : '',
|
||||
validate : validate.integer( langCell.invalidRowSpan ),
|
||||
setup : function( selectedCell )
|
||||
{
|
||||
var attrVal = parseInt( selectedCell.getAttribute( 'rowSpan' ), 10 );
|
||||
if ( attrVal && attrVal != 1 )
|
||||
this.setValue( 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',
|
||||
label : langCell.colSpan,
|
||||
labelLayout : 'horizontal',
|
||||
widths : [ '50%', '50%' ],
|
||||
'default' : '',
|
||||
validate : validate.integer( langCell.invalidColSpan ),
|
||||
setup : function( element )
|
||||
{
|
||||
var attrVal = parseInt( element.getAttribute( 'colSpan' ), 10 );
|
||||
if ( attrVal && attrVal != 1 )
|
||||
this.setValue( attrVal );
|
||||
},
|
||||
commit : function( selectedCell )
|
||||
{
|
||||
var value = parseInt( this.getValue(), 10 );
|
||||
if ( value && value != 1 )
|
||||
selectedCell.setAttribute( 'colSpan', this.getValue() );
|
||||
else
|
||||
selectedCell.removeAttribute( 'colSpan' );
|
||||
}
|
||||
},
|
||||
spacer(),
|
||||
{
|
||||
type : 'hbox',
|
||||
padding : 0,
|
||||
widths : [ '80%', '20%' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'text',
|
||||
id : 'bgColor',
|
||||
label : langCell.bgColor,
|
||||
labelLayout : 'horizontal',
|
||||
widths : [ '70%', '30%' ],
|
||||
'default' : '',
|
||||
setup : function( element )
|
||||
{
|
||||
var bgColorAttr = element.getAttribute( 'bgColor' ),
|
||||
bgColorStyle = element.getStyle( 'background-color' );
|
||||
|
||||
this.setValue( bgColorStyle || bgColorAttr );
|
||||
},
|
||||
commit : function( selectedCell )
|
||||
{
|
||||
var value = this.getValue();
|
||||
|
||||
if ( value )
|
||||
selectedCell.setStyle( 'background-color', this.getValue() );
|
||||
else
|
||||
selectedCell.removeStyle( 'background-color' );
|
||||
|
||||
selectedCell.removeAttribute( 'bgColor');
|
||||
}
|
||||
},
|
||||
{
|
||||
type : 'button',
|
||||
id : 'bgColorChoose',
|
||||
label : langCell.chooseColor,
|
||||
style : 'margin-left: 10px',
|
||||
onClick : function()
|
||||
{
|
||||
var self = this;
|
||||
getDialogValue( 'colordialog', function( colorDialog )
|
||||
{
|
||||
self.getDialog().getContentElement( 'info', 'bgColor' ).setValue(
|
||||
colorDialog.getContentElement( 'picker', 'selectedColor' ).getValue()
|
||||
);
|
||||
} );
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
spacer(),
|
||||
{
|
||||
type : 'hbox',
|
||||
padding : 0,
|
||||
widths : [ '80%', '20%' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'text',
|
||||
id : 'borderColor',
|
||||
label : langCell.borderColor,
|
||||
labelLayout : 'horizontal',
|
||||
widths : [ '70%', '30%' ],
|
||||
'default' : '',
|
||||
setup : function( element )
|
||||
{
|
||||
var borderColorAttr = element.getAttribute( 'borderColor' ),
|
||||
borderColorStyle = element.getStyle( 'border-color' );
|
||||
|
||||
this.setValue( borderColorStyle || borderColorAttr );
|
||||
},
|
||||
commit : function( selectedCell )
|
||||
{
|
||||
var value = this.getValue();
|
||||
if ( value )
|
||||
selectedCell.setStyle( 'border-color', this.getValue() );
|
||||
else
|
||||
selectedCell.removeStyle( 'border-color' );
|
||||
|
||||
selectedCell.removeAttribute( 'borderColor');
|
||||
}
|
||||
},
|
||||
{
|
||||
type : 'button',
|
||||
id : 'borderColorChoose',
|
||||
label : langCell.chooseColor,
|
||||
style : 'margin-left: 10px',
|
||||
onClick : function()
|
||||
{
|
||||
var self = this;
|
||||
getDialogValue( 'colordialog', function( colorDialog )
|
||||
{
|
||||
self.getDialog().getContentElement( 'info', 'borderColor' ).setValue(
|
||||
colorDialog.getContentElement( 'picker', 'selectedColor' ).getValue()
|
||||
);
|
||||
} );
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
onShow : function()
|
||||
{
|
||||
this.cells = CKEDITOR.plugins.tabletools.getSelectedCells(
|
||||
this._.editor.getSelection() );
|
||||
this.setupContent( this.cells[ 0 ] );
|
||||
},
|
||||
onOk : function()
|
||||
{
|
||||
var selection = this._.editor.getSelection(),
|
||||
bookmarks = selection.createBookmarks();
|
||||
|
||||
var cells = this.cells;
|
||||
for ( var i = 0 ; i < cells.length ; i++ )
|
||||
this.commitContent( cells[ i ] );
|
||||
|
||||
selection.selectBookmarks( bookmarks );
|
||||
}
|
||||
};
|
||||
} );
|
Reference in New Issue
Block a user