X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fplugins%2Fclipboard%2Fplugin.js;h=51f53e970b08f8c2976d30b292f7020fa48fa5d7;hb=4e90e78dc97789709ee7404359a5517540c27553;hp=7a1c971c1391d39092a0ac6258b05e1b0802d7ff;hpb=039a051ccf3901311661022a30afd60fc38130c9;p=ckeditor.git diff --git a/_source/plugins/clipboard/plugin.js b/_source/plugins/clipboard/plugin.js index 7a1c971..51f53e9 100644 --- a/_source/plugins/clipboard/plugin.js +++ b/_source/plugins/clipboard/plugin.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -49,7 +49,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license try { // Other browsers throw an error if the command is disabled. - return editor.document.$.execCommand( type ); + return editor.document.$.execCommand( type, false, null ); } catch( e ) { @@ -61,7 +61,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license var cutCopyCmd = function( type ) { this.type = type; - this.canUndo = ( this.type == 'cut' ); // We can't undo copy to clipboard. + this.canUndo = this.type == 'cut'; // We can't undo copy to clipboard. + this.startDisabled = true; }; cutCopyCmd.prototype = @@ -157,6 +158,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license } }; + function cancel( evt ) { evt.cancel(); } + // Allow to peek clipboard content by redirecting the // pasting content into a temporary bin and grab the content of it. function getClipboardData( evt, mode, callback ) @@ -207,6 +210,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license var bms = sel.createBookmarks(); + this.on( 'selectionChange', cancel, null, null, 0 ); + // Turn off design mode temporarily before give focus to the paste bin. if ( mode == 'text' ) { @@ -218,10 +223,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license evt.data.preventDefault(); } else - { - doc.$.designMode = 'off'; pastebin.$.focus(); - } } else { @@ -230,11 +232,13 @@ For licensing, see LICENSE.html or http://ckeditor.com/license range.select( true ); } + var editor = this; // Wait a while and grab the pasted contents window.setTimeout( function() { - mode == 'text' && !CKEDITOR.env.ie && ( doc.$.designMode = 'on' ); + mode == 'text' && CKEDITOR.env.gecko && editor.focusGrabber.focus(); pastebin.remove(); + editor.removeListener( 'selectionChange', cancel ); // Grab the HTML contents. // We need to look for a apple style wrapper on webkit it also adds @@ -281,6 +285,32 @@ For licensing, see LICENSE.html or http://ckeditor.com/license } } + var depressBeforeEvent; + function stateFromNamedCommand( command, editor ) + { + // IE Bug: queryCommandEnabled('paste') fires also 'beforepaste(copy/cut)', + // guard to distinguish from the ordinary sources( either + // keyboard paste or execCommand ) (#4874). + CKEDITOR.env.ie && ( depressBeforeEvent = 1 ); + + var retval = editor.document.$.queryCommandEnabled( command ) ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED; + depressBeforeEvent = 0; + return retval; + } + + var inReadOnly; + function setToolbarStates() + { + if ( this.mode != 'wysiwyg' ) + return; + + this.getCommand( 'cut' ).setState( inReadOnly ? CKEDITOR.TRISTATE_DISABLED : stateFromNamedCommand( 'Cut', this ) ); + this.getCommand( 'copy' ).setState( stateFromNamedCommand( 'Copy', this ) ); + var pasteState = inReadOnly ? CKEDITOR.TRISTATE_DISABLED : + CKEDITOR.env.webkit ? CKEDITOR.TRISTATE_OFF : stateFromNamedCommand( 'Paste', this ); + this.fire( 'pasteState', pasteState ); + } + // Register the plugin. CKEDITOR.plugins.add( 'clipboard', { @@ -297,6 +327,8 @@ For licensing, see LICENSE.html or http://ckeditor.com/license else if ( data[ 'text' ] ) editor.insertText( data[ 'text' ] ); + setTimeout( function () { editor.fire( 'afterPaste' ); }, 0 ); + }, null, null, 1000 ); editor.on( 'pasteDialog', function( evt ) @@ -308,6 +340,11 @@ For licensing, see LICENSE.html or http://ckeditor.com/license }, 0 ); }); + editor.on( 'pasteState', function( evt ) + { + editor.getCommand( 'paste' ).setState( evt.data ); + }); + function addButtonCommand( buttonName, commandName, command, ctxMenuOrder ) { var lang = editor.lang[ commandName ]; @@ -348,7 +385,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license editor.on( 'contentDom', function() { var body = editor.document.getBody(); - body.on( ( (mode == 'text' && CKEDITOR.env.ie ) || CKEDITOR.env.webkit ) ? 'paste' : 'beforepaste', + body.on( ( ( mode == 'text' && CKEDITOR.env.ie ) || CKEDITOR.env.webkit ) ? 'paste' : 'beforepaste', function( evt ) { if ( depressBeforeEvent ) @@ -358,7 +395,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license { // The very last guard to make sure the // paste has successfully happened. - if ( !data ) + if ( !CKEDITOR.tools.trim( data.toLowerCase().replace( /]+data-cke-bookmark[^<]*?<\/span>/g,'' ) ) ) return; var dataTransfer = {}; @@ -368,31 +405,28 @@ For licensing, see LICENSE.html or http://ckeditor.com/license }); body.on( 'beforecut', function() { !depressBeforeEvent && fixCut( editor ); } ); + + body.on( 'mouseup', function(){ setTimeout( function(){ setToolbarStates.call( editor ); }, 0 ); }, editor ); + body.on( 'keyup', setToolbarStates, editor ); + }); + + // For improved performance, we're checking the readOnly state on selectionChange instead of hooking a key event for that. + editor.on( 'selectionChange', function( evt ) + { + inReadOnly = evt.data.selection.getRanges()[ 0 ].checkReadOnly(); + setToolbarStates.call( editor ); }); // If the "contextmenu" plugin is loaded, register the listeners. if ( editor.contextMenu ) { - var depressBeforeEvent; - function stateFromNamedCommand( command ) - { - // IE Bug: queryCommandEnabled('paste') fires also 'beforepaste(copy/cut)', - // guard to distinguish from the ordinary sources( either - // keyboard paste or execCommand ) (#4874). - CKEDITOR.env.ie && ( depressBeforeEvent = 1 ); - - var retval = editor.document.$.queryCommandEnabled( command ) ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED; - depressBeforeEvent = 0; - return retval; - } - editor.contextMenu.addListener( function( element, selection ) { - var readOnly = selection.getCommonAncestor().isReadOnly(); + var readOnly = selection.getRanges()[ 0 ].checkReadOnly(); return { - cut : !readOnly && stateFromNamedCommand( 'Cut' ), - copy : stateFromNamedCommand( 'Copy' ), - paste : !readOnly && ( CKEDITOR.env.webkit ? CKEDITOR.TRISTATE_OFF : stateFromNamedCommand( 'Paste' ) ) + cut : !readOnly && stateFromNamedCommand( 'Cut', editor ), + copy : stateFromNamedCommand( 'Copy', editor ), + paste : !readOnly && ( CKEDITOR.env.webkit ? CKEDITOR.TRISTATE_OFF : stateFromNamedCommand( 'Paste', editor ) ) }; }); } @@ -410,3 +444,9 @@ For licensing, see LICENSE.html or http://ckeditor.com/license * @param {String} [data.html] The HTML data to be pasted. If not available, e.data.text will be defined. * @param {String} [data.text] The plain text data to be pasted, available when plain text operations are to used. If not available, e.data.html will be defined. */ + +/** + * Internal event to open the Paste dialog + * @name CKEDITOR.editor#pasteDialog + * @event + */