JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.6.4
[ckeditor.git] / _source / plugins / dialog / plugin.js
index eee4916..db371c4 100644 (file)
@@ -141,7 +141,7 @@ CKEDITOR.DIALOG_RESIZE_BOTH = 3;
                        dir = editor.lang.dir,\r
                        tabsToRemove = {},\r
                        i,\r
-                       processed;\r
+                       processed, stopPropagation;\r
 \r
                        if ( ( buttonsOrder == 'OS' && CKEDITOR.env.mac ) ||    // The buttons in MacOS Apps are in reverse order (#4750)\r
                                ( buttonsOrder == 'rtl' && dir == 'ltr' ) ||\r
@@ -397,16 +397,18 @@ CKEDITOR.DIALOG_RESIZE_BOTH = 3;
                this.changeFocus = changeFocus;\r
 \r
 \r
-               function focusKeydownHandler( evt )\r
+               function keydownHandler( evt )\r
                {\r
                        // If I'm not the top dialog, ignore.\r
                        if ( me != CKEDITOR.dialog._.currentTop )\r
                                return;\r
 \r
                        var keystroke = evt.data.getKeystroke(),\r
-                               rtl = editor.lang.dir == 'rtl';\r
+                               rtl = editor.lang.dir == 'rtl',\r
+                               button;\r
+\r
+                       processed = stopPropagation = 0;\r
 \r
-                       processed = 0;\r
                        if ( keystroke == 9 || keystroke == CKEDITOR.SHIFT + 9 )\r
                        {\r
                                var shiftPressed = ( keystroke == CKEDITOR.SHIFT + 9 );\r
@@ -450,35 +452,64 @@ CKEDITOR.DIALOG_RESIZE_BOTH = 3;
                                changeFocus( 1 );\r
                                processed = 1;\r
                        }\r
-\r
-                       if ( processed )\r
+                       // If user presses enter key in a text box, it implies clicking OK for the dialog.\r
+                       else if ( keystroke == 13 /*ENTER*/ )\r
                        {\r
-                               evt.stop();\r
-                               evt.data.preventDefault();\r
+                               // Don't do that for a target that handles ENTER.\r
+                               var target = evt.data.getTarget();\r
+                               if ( !target.is( 'a', 'button', 'select' ) && ( !target.is( 'input' ) || target.$.type != 'button' ) )\r
+                               {\r
+                                       button = this.getButton( 'ok' );\r
+                                       button && CKEDITOR.tools.setTimeout( button.click, 0, button );\r
+                                       processed = 1;\r
+                               }\r
+                               stopPropagation = 1; // Always block the propagation (#4269)\r
                        }\r
+                       else if ( keystroke == 27 /*ESC*/ )\r
+                       {\r
+                               button = this.getButton( 'cancel' );\r
+\r
+                               // If there's a Cancel button, click it, else just fire the cancel event and hide the dialog.\r
+                               if ( button )\r
+                                       CKEDITOR.tools.setTimeout( button.click, 0, button );\r
+                               else\r
+                               {\r
+                                       if ( this.fire( 'cancel', { hide : true } ).hide !== false )\r
+                                               this.hide();\r
+                               }\r
+                               stopPropagation = 1; // Always block the propagation (#4269)\r
+                       }\r
+                       else\r
+                               return;\r
+\r
+                       keypressHandler( evt );\r
                }\r
 \r
-               function focusKeyPressHandler( evt )\r
+               function keypressHandler( evt )\r
                {\r
-                       processed && evt.data.preventDefault();\r
+                       if ( processed )\r
+                               evt.data.preventDefault(1);\r
+                       else if ( stopPropagation )\r
+                               evt.data.stopPropagation();\r
                }\r
 \r
                var dialogElement = this._.element;\r
                // Add the dialog keyboard handlers.\r
                this.on( 'show', function()\r
                        {\r
-                               dialogElement.on( 'keydown', focusKeydownHandler, this, null, 0 );\r
+                               dialogElement.on( 'keydown', keydownHandler, this );\r
+\r
                                // Some browsers instead, don't cancel key events in the keydown, but in the\r
-                               // keypress. So we must do a longer trip in those cases. (#4531)\r
-                               if ( CKEDITOR.env.opera || ( CKEDITOR.env.gecko && CKEDITOR.env.mac ) )\r
-                                       dialogElement.on( 'keypress', focusKeyPressHandler, this );\r
+                               // keypress. So we must do a longer trip in those cases. (#4531,#8985)\r
+                               if ( CKEDITOR.env.opera || CKEDITOR.env.gecko )\r
+                                       dialogElement.on( 'keypress', keypressHandler, this );\r
 \r
                        } );\r
                this.on( 'hide', function()\r
                        {\r
-                               dialogElement.removeListener( 'keydown', focusKeydownHandler );\r
-                               if ( CKEDITOR.env.opera || ( CKEDITOR.env.gecko && CKEDITOR.env.mac ) )\r
-                                       dialogElement.removeListener( 'keypress', focusKeyPressHandler );\r
+                               dialogElement.removeListener( 'keydown', keydownHandler );\r
+                               if ( CKEDITOR.env.opera || CKEDITOR.env.gecko )\r
+                                       dialogElement.removeListener( 'keypress', keypressHandler );\r
 \r
                                // Reset fields state when closing dialog.\r
                                iterContents( function( item ) { resetField.apply( item ); } );\r
@@ -486,7 +517,7 @@ CKEDITOR.DIALOG_RESIZE_BOTH = 3;
                this.on( 'iframeAdded', function( evt )\r
                        {\r
                                var doc = new CKEDITOR.dom.document( evt.data.iframe.$.contentWindow.document );\r
-                               doc.on( 'keydown', focusKeydownHandler, this, null, 0 );\r
+                               doc.on( 'keydown', keydownHandler, this, null, 0 );\r
                        } );\r
 \r
                // Auto-focus logic in dialog.\r
@@ -815,24 +846,6 @@ CKEDITOR.DIALOG_RESIZE_BOTH = 3;
                        element.on( 'keydown', accessKeyDownHandler );\r
                        element.on( CKEDITOR.env.opera ? 'keypress' : 'keyup', accessKeyUpHandler );\r
 \r
-                       // Prevent some keys from bubbling up. (#4269)\r
-                       for ( var event in { keyup :1, keydown :1, keypress :1 } )\r
-                               element.on( event, preventKeyBubbling );\r
-\r
-                       // Register the Esc hotkeys.\r
-                       registerAccessKey( this, this, '\x1b', null, function()\r
-                                       {\r
-                                               var button = this.getButton( 'cancel' );\r
-                                               // If there's a Cancel button, click it, else just fire the cancel event and hide the dialog\r
-                                               if ( button )\r
-                                                       button.click();\r
-                                               else\r
-                                               {\r
-                                                       if ( this.fire( 'cancel', { hide : true } ).hide !== false )\r
-                                                               this.hide();\r
-                                               }\r
-                                       } );\r
-\r
                        // Reset the hasFocus state.\r
                        this._.hasFocus = false;\r
 \r
@@ -950,6 +963,8 @@ CKEDITOR.DIALOG_RESIZE_BOTH = 3;
 \r
                        this.fire( 'hide', {} );\r
                        this._.editor.fire( 'dialogHide', this );\r
+                       // Reset the tab page.\r
+                       this.selectPage( this._.tabIdList[ 0 ] );\r
                        var element = this._.element;\r
                        element.setStyle( 'display', 'none' );\r
                        this.parts.dialog.setStyle( 'visibility', 'hidden' );\r
@@ -979,10 +994,6 @@ CKEDITOR.DIALOG_RESIZE_BOTH = 3;
                                element.removeListener( 'keydown', accessKeyDownHandler );\r
                                element.removeListener( CKEDITOR.env.opera ? 'keypress' : 'keyup', accessKeyUpHandler );\r
 \r
-                               // Remove bubbling-prevention handler. (#4269)\r
-                               for ( var event in { keyup :1, keydown :1, keypress :1 } )\r
-                                       element.removeListener( event, preventKeyBubbling );\r
-\r
                                var editor = this._.editor;\r
                                editor.focus();\r
 \r
@@ -2199,14 +2210,6 @@ CKEDITOR.DIALOG_RESIZE_BOTH = 3;
        {\r
        };\r
 \r
-       // ESC, ENTER\r
-       var preventKeyBubblingKeys = { 27 :1, 13 :1 };\r
-       var preventKeyBubbling = function( e )\r
-       {\r
-               if ( e.data.getKeystroke() in preventKeyBubblingKeys )\r
-                       e.data.stopPropagation();\r
-       };\r
-\r
        (function()\r
        {\r
                CKEDITOR.ui.dialog =\r