Вход Регистрация
Файл: public/js/3rd_party/ckeditor/plugins/table/dialogs/table.js
Строк: 519
<?php

/*
Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

(function()
{
    var 
defaultToPixel CKEDITOR.tools.cssLength;

    var 
commitValue = function( data )
    {
        var 
id this.id;
        if ( !
data.info )
            
data.info = {};
        
data.info[id] = this.getValue();
    };

    function 
tableColumnstable )
    {
        var 
cols 0maxCols 0;
        for ( var 
0rowrows table.$.rows.lengthrowsi++ )
        {
            
row table.$.rows], cols 0;
            for ( var 
0cellcells row.cells.lengthcellsj++ )
            {
                
cell row.cells];
                
cols += cell.colSpan;
            }

            
cols maxCols && ( maxCols cols );
        }

        return 
maxCols;
    }

    function 
tableDialogeditorcommand )
    {
        var 
makeElement = function( name )
            {
                return new 
CKEDITOR.dom.elementnameeditor.document );
            };

        var 
dialogadvtab editor.plugins.dialogadvtab;

        return {
            
title editor.lang.table.title,
            
minWidth 310,
            
minHeight CKEDITOR.env.ie 310 280,

            
onLoad : function()
            {
                var 
dialog this;

                var 
styles dialog.getContentElement'advanced''advStyles' );

                if ( 
styles )
                {
                    
styles.on'change', function( evt )
                        {
                            
// Synchronize width value.
                            
var width this.getStyle'width''' ),
                                
txtWidth dialog.getContentElement'info''txtWidth' );

                            
txtWidth && txtWidth.setValuewidthtrue );

                            
// Synchronize height value.
                            
var height this.getStyle'height''' ),
                                
txtHeight dialog.getContentElement'info''txtHeight' );

                            
txtHeight && txtHeight.setValueheighttrue );
                        });
                }
            },

            
onShow : function()
            {
                
// Detect if there's a selected table.
                
var selection editor.getSelection(),
                    
ranges selection.getRanges(),
                    
selectedTable null;

                var 
rowsInput this.getContentElement'info''txtRows' ),
                    
colsInput this.getContentElement'info''txtCols' ),
                    
widthInput this.getContentElement'info''txtWidth' ),
                    
heightInput this.getContentElement'info''txtHeight' );

                if ( 
command == 'tableProperties' )
                {
                    if ( ( 
selectedTable selection.getSelectedElement() ) )
                        
selectedTable selectedTable.getAscendant'table'true );
                    else if ( 
ranges.length )
                    {
                        
// Webkit could report the following range on cell selection (#4948):
                        // <table><tr><td>[&nbsp;</td></tr></table>]
                        
if ( CKEDITOR.env.webkit )
                            
ranges].shrinkCKEDITOR.NODE_ELEMENT );

                        var 
rangeRoot ranges[0].getCommonAncestortrue );
                        
selectedTable rangeRoot.getAscendant'table'true );
                    }

                    
// Save a reference to the selected table, and push a new set of default values.
                    
this._.selectedElement selectedTable;
                }

                
// Enable or disable the row, cols, width fields.
                
if ( selectedTable )
                {
                    
this.setupContentselectedTable );
                    
rowsInput && rowsInput.disable();
                    
colsInput && colsInput.disable();
                }
                else
                {
                    
rowsInput && rowsInput.enable();
                    
colsInput && colsInput.enable();
                }

                
// Call the onChange method for the widht and height fields so
                // they get reflected into the Advanced tab.
                
widthInput && widthInput.onChange();
                
heightInput && heightInput.onChange();
            },
            
onOk : function()
            {
                var 
selection editor.getSelection(),
                    
bms this._.selectedElement && selection.createBookmarks();

                var 
table this._.selectedElement || makeElement'table' ),
                    
me this,
                    
data = {};

                
this.commitContentdatatable );

                if ( 
data.info )
                {
                    var 
info data.info;

                    
// Generate the rows and cols.
                    
if ( !this._.selectedElement )
                    {
                        var 
tbody table.appendmakeElement'tbody' ) ),
                            
rows parseIntinfo.txtRows10 ) || 0,
                            
cols parseIntinfo.txtCols10 ) || 0;

                        for ( var 
rows i++ )
                        {
                            var 
row tbody.appendmakeElement'tr' ) );
                            for ( var 
cols j++ )
                            {
                                var 
cell row.appendmakeElement'td' ) );
                                if ( !
CKEDITOR.env.ie )
                                    
cell.appendmakeElement'br' ) );
                            }
                        }
                    }

                    
// Modify the table headers. Depends on having rows and cols generated
                    // correctly so it can't be done in commit functions.

                    // Should we make a <thead>?
                    
var headers info.selHeaders;
                    if ( !
table.$.tHead && ( headers == 'row' || headers == 'both' ) )
                    {
                        var 
thead = new CKEDITOR.dom.elementtable.$.createTHead() );
                        
tbody table.getElementsByTag'tbody' ).getItem);
                        var 
theRow tbody.getElementsByTag'tr' ).getItem);

                        
// Change TD to TH:
                        
for ( theRow.getChildCount() ; i++ )
                        {
                            var 
th theRow.getChild);
                            
// Skip bookmark nodes. (#6155)
                            
if ( th.type == CKEDITOR.NODE_ELEMENT && !th.data'cke-bookmark' ) )
                            {
                                
th.renameNode'th' );
                                
th.setAttribute'scope''col' );
                            }
                        }
                        
thead.appendtheRow.remove() );
                    }

                    if ( 
table.$.tHead !== null && !( headers == 'row' || headers == 'both' ) )
                    {
                        
// Move the row out of the THead and put it in the TBody:
                        
thead = new CKEDITOR.dom.elementtable.$.tHead );
                        
tbody table.getElementsByTag'tbody' ).getItem);

                        var 
previousFirstRow tbody.getFirst();
                        while ( 
thead.getChildCount() > )
                        {
                            
theRow thead.getFirst();
                            for ( 
0theRow.getChildCount() ; i++ )
                            {
                                var 
newCell theRow.getChild);
                                if ( 
newCell.type == CKEDITOR.NODE_ELEMENT )
                                {
                                    
newCell.renameNode'td' );
                                    
newCell.removeAttribute'scope' );
                                }
                            }
                            
theRow.insertBeforepreviousFirstRow );
                        }
                        
thead.remove();
                    }

                    
// Should we make all first cells in a row TH?
                    
if ( !this.hasColumnHeaders && ( headers == 'col' || headers == 'both' ) )
                    {
                        for ( 
row row table.$.rows.length row++ )
                        {
                            
newCell = new CKEDITOR.dom.elementtable.$.rowsrow ].cells] );
                            
newCell.renameNode'th' );
                            
newCell.setAttribute'scope''row' );
                        }
                    }

                    
// Should we make all first TH-cells in a row make TD? If 'yes' we do it the other way round :-)
                    
if ( ( this.hasColumnHeaders ) && !( headers == 'col' || headers == 'both' ) )
                    {
                        for ( 
table.$.rows.length i++ )
                        {
                            
row = new CKEDITOR.dom.elementtable.$.rows[i] );
                            if ( 
row.getParent().getName() == 'tbody' )
                            {
                                
newCell = new CKEDITOR.dom.elementrow.$.cells[0] );
                                
newCell.renameNode'td' );
                                
newCell.removeAttribute'scope' );
                            }
                        }
                    }

                    
// Set the width and height.
                    
info.txtHeight table.setStyle'height'info.txtHeight ) : table.removeStyle'height' );
                    
info.txtWidth table.setStyle'width'info.txtWidth ) : table.removeStyle'width' );

                    if ( !
table.getAttribute'style' ) )
                        
table.removeAttribute'style' );
                }

                
// Insert the table element if we're creating one.
                
if ( !this._.selectedElement )
                {
                    
editor.insertElementtable );
                    
// Override the default cursor position after insertElement to place
                    // cursor inside the first cell (#7959), IE needs a while.
                    
setTimeout( function()
                        {
                            var 
firstCell = new CKEDITOR.dom.elementtable.$.rows].cells] );
                            var 
range = new CKEDITOR.dom.rangeeditor.document );
                            
range.moveToPositionfirstCellCKEDITOR.POSITION_AFTER_START );
                            
range.select);
                        }, 
);
                }
                
// Properly restore the selection, (#4822) but don't break
                // because of this, e.g. updated table caption.
                
else
                    try { 
selection.selectBookmarksbms ); } catch( er ){}
            },
            
contents : [
                {
                    
id 'info',
                    
label editor.lang.table.title,
                    
elements :
                    [
                        {
                            
type 'hbox',
                            
widths : [ nullnull ],
                            
styles : [ 'vertical-align:top' ],
                            
children :
                            [
                                {
                                    
type 'vbox',
                                    
padding 0,
                                    
children :
                                    [
                                        {
                                            
type 'text',
                                            
id 'txtRows',
                                            
'default' 3,
                                            
label editor.lang.table.rows,
                                            
required true,
                                            
controlStyle 'width:5em',
                                            
validate : function()
                                            {
                                                var 
pass true,
                                                    
value this.getValue();
                                                
pass pass && CKEDITOR.dialog.validate.integer()( value )
                                                    && 
value 0;
                                                if ( !
pass )
                                                {
                                                    
alerteditor.lang.table.invalidRows );
                                                    
this.select();
                                                }
                                                return 
pass;
                                            },
                                            
setup : function( selectedElement )
                                            {
                                                
this.setValueselectedElement.$.rows.length );
                                            },
                                            
commit commitValue
                                        
},
                                        {
                                            
type 'text',
                                            
id 'txtCols',
                                            
'default' 2,
                                            
label editor.lang.table.columns,
                                            
required true,
                                            
controlStyle 'width:5em',
                                            
validate : function()
                                            {
                                                var 
pass true,
                                                    
value this.getValue();
                                                
pass pass && CKEDITOR.dialog.validate.integer()( value )
                                                    && 
value 0;
                                                if ( !
pass )
                                                {
                                                    
alerteditor.lang.table.invalidCols );
                                                    
this.select();
                                                }
                                                return 
pass;
                                            },
                                            
setup : function( selectedTable )
                                            {
                                                
this.setValuetableColumnsselectedTable ) );
                                            },
                                            
commit commitValue
                                        
},
                                        {
                                            
type 'html',
                                            
html '&nbsp;'
                                        
},
                                        {
                                            
type 'select',
                                            
id 'selHeaders',
                                            
'default' '',
                                            
label editor.lang.table.headers,
                                            
items :
                                            [
                                                [ 
editor.lang.table.headersNone'' ],
                                                [ 
editor.lang.table.headersRow'row' ],
                                                [ 
editor.lang.table.headersColumn'col' ],
                                                [ 
editor.lang.table.headersBoth'both' ]
                                            ],
                                            
setup : function( selectedTable )
                                            {
                                                
// Fill in the headers field.
                                                
var dialog this.getDialog();
                                                
dialog.hasColumnHeaders true;

                                                
// Check if all the first cells in every row are TH
                                                
for ( var row row selectedTable.$.rows.length row++ )
                                                {
                                                    
// If just one cell isn't a TH then it isn't a header column
                                                    
var headCell selectedTable.$.rows[row].cells[0];
                                                    if ( 
headCell && headCell.nodeName.toLowerCase() != 'th' )
                                                    {
                                                        
dialog.hasColumnHeaders false;
                                                        break;
                                                    }
                                                }

                                                
// Check if the table contains <thead>.
                                                
if ( ( selectedTable.$.tHead !== null) )
                                                    
this.setValuedialog.hasColumnHeaders 'both' 'row' );
                                                else
                                                    
this.setValuedialog.hasColumnHeaders 'col' '' );
                                            },
                                            
commit commitValue
                                        
},
                                        {
                                            
type 'text',
                                            
id 'txtBorder',
                                            
'default' 1,
                                            
label editor.lang.table.border,
                                            
controlStyle 'width:3em',
                                            
validate CKEDITOR.dialog.validate['number']( editor.lang.table.invalidBorder ),
                                            
setup : function( selectedTable )
                                            {
                                                
this.setValueselectedTable.getAttribute'border' ) || '' );
                                            },
                                            
commit : function( dataselectedTable )
                                            {
                                                if ( 
this.getValue() )
                                                    
selectedTable.setAttribute'border'this.getValue() );
                                                else
                                                    
selectedTable.removeAttribute'border' );
                                            }
                                        },
                                        {
                                            
id 'cmbAlign',
                                            
type 'select',
                                            
'default' '',
                                            
label editor.lang.common.align,
                                            
items :
                                            [
                                                [ 
editor.lang.common.notSet ''],
                                                [ 
editor.lang.common.alignLeft 'left'],
                                                [ 
editor.lang.common.alignCenter 'center'],
                                                [ 
editor.lang.common.alignRight 'right']
                                            ],
                                            
setup : function( selectedTable )
                                            {
                                                
this.setValueselectedTable.getAttribute'align' ) || '' );
                                            },
                                            
commit : function( dataselectedTable )
                                            {
                                                if ( 
this.getValue() )
                                                    
selectedTable.setAttribute'align'this.getValue() );
                                                else
                                                    
selectedTable.removeAttribute'align' );
                                            }
                                        }
                                    ]
                                },
                                {
                                    
type 'vbox',
                                    
padding 0,
                                    
children :
                                    [
                                        {
                                            
type 'hbox',
                                            
widths : [ '5em' ],
                                            
children :
                                            [
                                                {
                                                    
type 'text',
                                                    
id 'txtWidth',
                                                    
controlStyle 'width:5em',
                                                    
label editor.lang.common.width,
                                                    
title editor.lang.common.cssLengthTooltip,
                                                    
'default' 500,
                                                    
getValue defaultToPixel,
                                                    
validate CKEDITOR.dialog.validate.cssLengtheditor.lang.common.invalidCssLength.replace'%1'editor.lang.common.width ) ),
                                                    
onChange : function()
                                                    {
                                                        var 
styles this.getDialog().getContentElement'advanced''advStyles' );
                                                        
styles && styles.updateStyle'width'this.getValue() );
                                                    },
                                                    
setup : function( selectedTable )
                                                    {
                                                        var 
val selectedTable.getStyle'width' );
                                                        
val && this.setValueval );
                                                    },
                                                    
commit commitValue
                                                
}
                                            ]
                                        },
                                        {
                                            
type 'hbox',
                                            
widths : [ '5em' ],
                                            
children :
                                            [
                                                {
                                                    
type 'text',
                                                    
id 'txtHeight',
                                                    
controlStyle 'width:5em',
                                                    
label editor.lang.common.height,
                                                    
title editor.lang.common.cssLengthTooltip,
                                                    
'default' '',
                                                    
getValue defaultToPixel,
                                                    
validate CKEDITOR.dialog.validate.cssLengtheditor.lang.common.invalidCssLength.replace'%1'editor.lang.common.height ) ),
                                                    
onChange : function()
                                                    {
                                                        var 
styles this.getDialog().getContentElement'advanced''advStyles' );
                                                        
styles && styles.updateStyle'height'this.getValue() );
                                                    },

                                                    
setup : function( selectedTable )
                                                    {
                                                        var 
val selectedTable.getStyle'width' );
                                                        
val && this.setValueval );
                                                    },
                                                    
commit commitValue
                                                
}
                                            ]
                                        },
                                        {
                                            
type 'html',
                                            
html '&nbsp;'
                                        
},
                                        {
                                            
type 'text',
                                            
id 'txtCellSpace',
                                            
controlStyle 'width:3em',
                                            
label editor.lang.table.cellSpace,
                                            
'default' 1,
                                            
validate CKEDITOR.dialog.validate.numbereditor.lang.table.invalidCellSpacing ),
                                            
setup : function( selectedTable )
                                            {
                                                
this.setValueselectedTable.getAttribute'cellSpacing' ) || '' );
                                            },
                                            
commit : function( dataselectedTable )
                                            {
                                                if ( 
this.getValue() )
                                                    
selectedTable.setAttribute'cellSpacing'this.getValue() );
                                                else
                                                    
selectedTable.removeAttribute'cellSpacing' );
                                            }
                                        },
                                        {
                                            
type 'text',
                                            
id 'txtCellPad',
                                            
controlStyle 'width:3em',
                                            
label editor.lang.table.cellPad,
                                            
'default' 1,
                                            
validate CKEDITOR.dialog.validate.numbereditor.lang.table.invalidCellPadding ),
                                            
setup : function( selectedTable )
                                            {
                                                
this.setValueselectedTable.getAttribute'cellPadding' ) || '' );
                                            },
                                            
commit : function( dataselectedTable )
                                            {
                                                if ( 
this.getValue() )
                                                    
selectedTable.setAttribute'cellPadding'this.getValue() );
                                                else
                                                    
selectedTable.removeAttribute'cellPadding' );
                                            }
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            
type 'html',
                            
align 'right',
                            
html ''
                        
},
                        {
                            
type 'vbox',
                            
padding 0,
                            
children :
                            [
                                {
                                    
type 'text',
                                    
id 'txtCaption',
                                    
label editor.lang.table.caption,
                                    
setup : function( selectedTable )
                                    {
                                        
this.enable();

                                        var 
nodeList selectedTable.getElementsByTag'caption' );
                                        if ( 
nodeList.count() > )
                                        {
                                            var 
caption nodeList.getItem);
                                            var 
firstElementChild caption.getFirstCKEDITOR.dom.walker.nodeTypeCKEDITOR.NODE_ELEMENT ) );

                                            if ( 
firstElementChild && !firstElementChild.equalscaption.getBogus() ) )
                                            {
                                                
this.disable();
                                                
this.setValuecaption.getText() );
                                                return;
                                            }

                                            
caption CKEDITOR.tools.trimcaption.getText() );
                                            
this.setValuecaption );
                                        }
                                    },
                                    
commit : function( datatable )
                                    {
                                        if ( !
this.isEnabled() )
                                            return;

                                        var 
caption this.getValue(),
                                            
captionElement table.getElementsByTag'caption' );
                                        if ( 
caption )
                                        {
                                            if ( 
captionElement.count() > )
                                            {
                                                
captionElement captionElement.getItem);
                                                
captionElement.setHtml'' );
                                            }
                                            else
                                            {
                                                
captionElement = new CKEDITOR.dom.element'caption'editor.document );
                                                if ( 
table.getChildCount() )
                                                    
captionElement.insertBeforetable.getFirst() );
                                                else
                                                    
captionElement.appendTotable );
                                            }
                                            
captionElement.append( new CKEDITOR.dom.textcaptioneditor.document ) );
                                        }
                                        else if ( 
captionElement.count() > )
                                        {
                                            for ( var 
captionElement.count() - >= i-- )
                                                
captionElement.getItem).remove();
                                        }
                                    }
                                },
                                {
                                    
type 'text',
                                    
id 'txtSummary',
                                    
label editor.lang.table.summary,
                                    
setup : function( selectedTable )
                                    {
                                        
this.setValueselectedTable.getAttribute'summary' ) || '' );
                                    },
                                    
commit : function( dataselectedTable )
                                    {
                                        if ( 
this.getValue() )
                                            
selectedTable.setAttribute'summary'this.getValue() );
                                        else
                                            
selectedTable.removeAttribute'summary' );
                                    }
                                }
                            ]
                        }
                    ]
                },
                
dialogadvtab && dialogadvtab.createAdvancedTabeditor )
            ]
        };
    }

    
CKEDITOR.dialog.add'table', function( editor )
        {
            return 
tableDialogeditor'table' );
        } );
    
CKEDITOR.dialog.add'tableProperties', function( editor )
        {
            return 
tableDialogeditor'tableProperties' );
        } );
})();
?>
Онлайн: 1
Реклама