JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.2.2
[ckeditor.git] / _source / plugins / dialog / plugin.js
1 /*\r
2 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license\r
4 */\r
5 \r
6 /**\r
7  * @fileOverview The floating dialog plugin.\r
8  */\r
9 \r
10 /**\r
11  * No resize for this dialog.\r
12  * @constant\r
13  */\r
14 CKEDITOR.DIALOG_RESIZE_NONE = 0;\r
15 \r
16 /**\r
17  * Only allow horizontal resizing for this dialog, disable vertical resizing.\r
18  * @constant\r
19  */\r
20 CKEDITOR.DIALOG_RESIZE_WIDTH = 1;\r
21 \r
22 /**\r
23  * Only allow vertical resizing for this dialog, disable horizontal resizing.\r
24  * @constant\r
25  */\r
26 CKEDITOR.DIALOG_RESIZE_HEIGHT = 2;\r
27 \r
28 /*\r
29  * Allow the dialog to be resized in both directions.\r
30  * @constant\r
31  */\r
32 CKEDITOR.DIALOG_RESIZE_BOTH = 3;\r
33 \r
34 (function()\r
35 {\r
36         function isTabVisible( tabId )\r
37         {\r
38                 return !!this._.tabs[ tabId ][ 0 ].$.offsetHeight;\r
39         }\r
40 \r
41         function getPreviousVisibleTab()\r
42         {\r
43                 var tabId = this._.currentTabId,\r
44                         length = this._.tabIdList.length,\r
45                         tabIndex = CKEDITOR.tools.indexOf( this._.tabIdList, tabId ) + length;\r
46 \r
47                 for ( var i = tabIndex - 1 ; i > tabIndex - length ; i-- )\r
48                 {\r
49                         if ( isTabVisible.call( this, this._.tabIdList[ i % length ] ) )\r
50                                 return this._.tabIdList[ i % length ];\r
51                 }\r
52 \r
53                 return null;\r
54         }\r
55 \r
56         function getNextVisibleTab()\r
57         {\r
58                 var tabId = this._.currentTabId,\r
59                         length = this._.tabIdList.length,\r
60                         tabIndex = CKEDITOR.tools.indexOf( this._.tabIdList, tabId );\r
61 \r
62                 for ( var i = tabIndex + 1 ; i < tabIndex + length ; i++ )\r
63                 {\r
64                         if ( isTabVisible.call( this, this._.tabIdList[ i % length ] ) )\r
65                                 return this._.tabIdList[ i % length ];\r
66                 }\r
67 \r
68                 return null;\r
69         }\r
70 \r
71         /**\r
72          * This is the base class for runtime dialog objects. An instance of this\r
73          * class represents a single named dialog for a single editor instance.\r
74          * @param {Object} editor The editor which created the dialog.\r
75          * @param {String} dialogName The dialog's registered name.\r
76          * @constructor\r
77          * @example\r
78          * var dialogObj = new CKEDITOR.dialog( editor, 'smiley' );\r
79          */\r
80         CKEDITOR.dialog = function( editor, dialogName )\r
81         {\r
82                 // Load the dialog definition.\r
83                 var definition = CKEDITOR.dialog._.dialogDefinitions[ dialogName ];\r
84 \r
85                 // Completes the definition with the default values.\r
86                 definition = CKEDITOR.tools.extend( definition( editor ), defaultDialogDefinition );\r
87 \r
88                 // Clone a functionally independent copy for this dialog.\r
89                 definition = CKEDITOR.tools.clone( definition );\r
90 \r
91                 // Create a complex definition object, extending it with the API\r
92                 // functions.\r
93                 definition = new definitionObject( this, definition );\r
94 \r
95 \r
96                 var doc = CKEDITOR.document;\r
97 \r
98                 var themeBuilt = editor.theme.buildDialog( editor );\r
99 \r
100                 // Initialize some basic parameters.\r
101                 this._ =\r
102                 {\r
103                         editor : editor,\r
104                         element : themeBuilt.element,\r
105                         name : dialogName,\r
106                         contentSize : { width : 0, height : 0 },\r
107                         size : { width : 0, height : 0 },\r
108                         updateSize : false,\r
109                         contents : {},\r
110                         buttons : {},\r
111                         accessKeyMap : {},\r
112 \r
113                         // Initialize the tab and page map.\r
114                         tabs : {},\r
115                         tabIdList : [],\r
116                         currentTabId : null,\r
117                         currentTabIndex : null,\r
118                         pageCount : 0,\r
119                         lastTab : null,\r
120                         tabBarMode : false,\r
121 \r
122                         // Initialize the tab order array for input widgets.\r
123                         focusList : [],\r
124                         currentFocusIndex : 0,\r
125                         hasFocus : false\r
126                 };\r
127 \r
128                 this.parts = themeBuilt.parts;\r
129 \r
130                 CKEDITOR.tools.setTimeout( function()\r
131                         {\r
132                                 editor.fire( 'ariaWidget', this.parts.contents );\r
133                         },\r
134                         0, this );\r
135 \r
136                 // Set the startup styles for the dialog, avoiding it enlarging the\r
137                 // page size on the dialog creation.\r
138                 this.parts.dialog.setStyles(\r
139                         {\r
140                                 position : CKEDITOR.env.ie6Compat ? 'absolute' : 'fixed',\r
141                                 top : 0,\r
142                                 left: 0,\r
143                                 visibility : 'hidden'\r
144                         });\r
145 \r
146                 // Call the CKEDITOR.event constructor to initialize this instance.\r
147                 CKEDITOR.event.call( this );\r
148 \r
149                 // Fire the "dialogDefinition" event, making it possible to customize\r
150                 // the dialog definition.\r
151                 this.definition = definition = CKEDITOR.fire( 'dialogDefinition',\r
152                         {\r
153                                 name : dialogName,\r
154                                 definition : definition\r
155                         }\r
156                         , editor ).definition;\r
157                 // Initialize load, show, hide, ok and cancel events.\r
158                 if ( definition.onLoad )\r
159                         this.on( 'load', definition.onLoad );\r
160 \r
161                 if ( definition.onShow )\r
162                         this.on( 'show', definition.onShow );\r
163 \r
164                 if ( definition.onHide )\r
165                         this.on( 'hide', definition.onHide );\r
166 \r
167                 if ( definition.onOk )\r
168                 {\r
169                         this.on( 'ok', function( evt )\r
170                                 {\r
171                                         if ( definition.onOk.call( this, evt ) === false )\r
172                                                 evt.data.hide = false;\r
173                                 });\r
174                 }\r
175 \r
176                 if ( definition.onCancel )\r
177                 {\r
178                         this.on( 'cancel', function( evt )\r
179                                 {\r
180                                         if ( definition.onCancel.call( this, evt ) === false )\r
181                                                 evt.data.hide = false;\r
182                                 });\r
183                 }\r
184 \r
185                 var me = this;\r
186 \r
187                 // Iterates over all items inside all content in the dialog, calling a\r
188                 // function for each of them.\r
189                 var iterContents = function( func )\r
190                 {\r
191                         var contents = me._.contents,\r
192                                 stop = false;\r
193 \r
194                         for ( var i in contents )\r
195                         {\r
196                                 for ( var j in contents[i] )\r
197                                 {\r
198                                         stop = func.call( this, contents[i][j] );\r
199                                         if ( stop )\r
200                                                 return;\r
201                                 }\r
202                         }\r
203                 };\r
204 \r
205                 this.on( 'ok', function( evt )\r
206                         {\r
207                                 iterContents( function( item )\r
208                                         {\r
209                                                 if ( item.validate )\r
210                                                 {\r
211                                                         var isValid = item.validate( this );\r
212 \r
213                                                         if ( typeof isValid == 'string' )\r
214                                                         {\r
215                                                                 alert( isValid );\r
216                                                                 isValid = false;\r
217                                                         }\r
218 \r
219                                                         if ( isValid === false )\r
220                                                         {\r
221                                                                 if ( item.select )\r
222                                                                         item.select();\r
223                                                                 else\r
224                                                                         item.focus();\r
225 \r
226                                                                 evt.data.hide = false;\r
227                                                                 evt.stop();\r
228                                                                 return true;\r
229                                                         }\r
230                                                 }\r
231                                         });\r
232                         }, this, null, 0 );\r
233 \r
234                 this.on( 'cancel', function( evt )\r
235                         {\r
236                                 iterContents( function( item )\r
237                                         {\r
238                                                 if ( item.isChanged() )\r
239                                                 {\r
240                                                         if ( !confirm( editor.lang.common.confirmCancel ) )\r
241                                                                 evt.data.hide = false;\r
242                                                         return true;\r
243                                                 }\r
244                                         });\r
245                         }, this, null, 0 );\r
246 \r
247                 this.parts.close.on( 'click', function( evt )\r
248                                 {\r
249                                         if ( this.fire( 'cancel', { hide : true } ).hide !== false )\r
250                                                 this.hide();\r
251                                         evt.data.preventDefault();\r
252                                 }, this );\r
253 \r
254                 // Sort focus list according to tab order definitions.\r
255                 function setupFocus()\r
256                 {\r
257                         var focusList = me._.focusList;\r
258                         focusList.sort( function( a, b )\r
259                                 {\r
260                                         // Mimics browser tab order logics;\r
261                                         if ( a.tabIndex != b.tabIndex )\r
262                                                 return b.tabIndex - a.tabIndex;\r
263                                         //  Sort is not stable in some browsers,\r
264                                         // fall-back the comparator to 'focusIndex';\r
265                                         else\r
266                                                 return a.focusIndex - b.focusIndex;\r
267                                 });\r
268 \r
269                         var size = focusList.length;\r
270                         for ( var i = 0; i < size; i++ )\r
271                                 focusList[ i ].focusIndex = i;\r
272                 }\r
273 \r
274                 function changeFocus( forward )\r
275                 {\r
276                         var focusList = me._.focusList,\r
277                                 offset = forward ? 1 : -1;\r
278                         if ( focusList.length < 1 )\r
279                                 return;\r
280 \r
281                         var current = me._.currentFocusIndex;\r
282 \r
283                         // Trigger the 'blur' event of  any input element before anything,\r
284                         // since certain UI updates may depend on it.\r
285                         try\r
286                         {\r
287                                 focusList[ current ].getInputElement().$.blur();\r
288                         }\r
289                         catch( e ){}\r
290 \r
291                         var startIndex = ( current + offset + focusList.length ) % focusList.length,\r
292                                 currentIndex = startIndex;\r
293                         while ( !focusList[ currentIndex ].isFocusable() )\r
294                         {\r
295                                 currentIndex = ( currentIndex + offset + focusList.length ) % focusList.length;\r
296                                 if ( currentIndex == startIndex )\r
297                                         break;\r
298                         }\r
299                         focusList[ currentIndex ].focus();\r
300 \r
301                         // Select whole field content.\r
302                         if ( focusList[ currentIndex ].type == 'text' )\r
303                                 focusList[ currentIndex ].select();\r
304                 }\r
305 \r
306                 this.changeFocus = changeFocus;\r
307 \r
308                 var processed;\r
309 \r
310                 function focusKeydownHandler( evt )\r
311                 {\r
312                         // If I'm not the top dialog, ignore.\r
313                         if ( me != CKEDITOR.dialog._.currentTop )\r
314                                 return;\r
315 \r
316                         var keystroke = evt.data.getKeystroke(),\r
317                                 rtl = editor.lang.dir == 'rtl';\r
318 \r
319                         processed = 0;\r
320                         if ( keystroke == 9 || keystroke == CKEDITOR.SHIFT + 9 )\r
321                         {\r
322                                 var shiftPressed = ( keystroke == CKEDITOR.SHIFT + 9 );\r
323 \r
324                                 // Handling Tab and Shift-Tab.\r
325                                 if ( me._.tabBarMode )\r
326                                 {\r
327                                         // Change tabs.\r
328                                         var nextId = shiftPressed ? getPreviousVisibleTab.call( me ) : getNextVisibleTab.call( me );\r
329                                         me.selectPage( nextId );\r
330                                         me._.tabs[ nextId ][ 0 ].focus();\r
331                                 }\r
332                                 else\r
333                                 {\r
334                                         // Change the focus of inputs.\r
335                                         changeFocus( !shiftPressed );\r
336                                 }\r
337 \r
338                                 processed = 1;\r
339                         }\r
340                         else if ( keystroke == CKEDITOR.ALT + 121 && !me._.tabBarMode && me.getPageCount() > 1 )\r
341                         {\r
342                                 // Alt-F10 puts focus into the current tab item in the tab bar.\r
343                                 me._.tabBarMode = true;\r
344                                 me._.tabs[ me._.currentTabId ][ 0 ].focus();\r
345                                 processed = 1;\r
346                         }\r
347                         else if ( ( keystroke == 37 || keystroke == 39 ) && me._.tabBarMode )\r
348                         {\r
349                                 // Arrow keys - used for changing tabs.\r
350                                 nextId = ( keystroke == ( rtl ? 39 : 37 ) ? getPreviousVisibleTab.call( me ) : getNextVisibleTab.call( me ) );\r
351                                 me.selectPage( nextId );\r
352                                 me._.tabs[ nextId ][ 0 ].focus();\r
353                                 processed = 1;\r
354                         }\r
355                         else if ( ( keystroke == 13 || keystroke == 32 ) && me._.tabBarMode )\r
356                         {\r
357                                 this.selectPage( this._.currentTabId );\r
358                                 this._.tabBarMode = false;\r
359                                 this._.currentFocusIndex = -1;\r
360                                 changeFocus( true );\r
361                                 processed = 1;\r
362                         }\r
363 \r
364                         if ( processed )\r
365                         {\r
366                                 evt.stop();\r
367                                 evt.data.preventDefault();\r
368                         }\r
369                 }\r
370 \r
371                 function focusKeyPressHandler( evt )\r
372                 {\r
373                         processed && evt.data.preventDefault();\r
374                 }\r
375 \r
376                 var dialogElement = this._.element;\r
377                 // Add the dialog keyboard handlers.\r
378                 this.on( 'show', function()\r
379                         {\r
380                                 dialogElement.on( 'keydown', focusKeydownHandler, this, null, 0 );\r
381                                 // Some browsers instead, don't cancel key events in the keydown, but in the\r
382                                 // keypress. So we must do a longer trip in those cases. (#4531)\r
383                                 if ( CKEDITOR.env.opera || ( CKEDITOR.env.gecko && CKEDITOR.env.mac ) )\r
384                                         dialogElement.on( 'keypress', focusKeyPressHandler, this );\r
385 \r
386                         } );\r
387                 this.on( 'hide', function()\r
388                         {\r
389                                 dialogElement.removeListener( 'keydown', focusKeydownHandler );\r
390                                 if ( CKEDITOR.env.opera || ( CKEDITOR.env.gecko && CKEDITOR.env.mac ) )\r
391                                         dialogElement.removeListener( 'keypress', focusKeyPressHandler );\r
392                         } );\r
393                 this.on( 'iframeAdded', function( evt )\r
394                         {\r
395                                 var doc = new CKEDITOR.dom.document( evt.data.iframe.$.contentWindow.document );\r
396                                 doc.on( 'keydown', focusKeydownHandler, this, null, 0 );\r
397                         } );\r
398 \r
399                 // Auto-focus logic in dialog.\r
400                 this.on( 'show', function()\r
401                         {\r
402                                 // Setup tabIndex on showing the dialog instead of on loading\r
403                                 // to allow dynamic tab order happen in dialog definition.\r
404                                 setupFocus();\r
405 \r
406                                 if ( editor.config.dialog_startupFocusTab\r
407                                         && me._.tabIdList.length > 1 )\r
408                                 {\r
409                                         me._.tabBarMode = true;\r
410                                         me._.tabs[ me._.currentTabId ][ 0 ].focus();\r
411                                 }\r
412                                 else if ( !this._.hasFocus )\r
413                                 {\r
414                                         this._.currentFocusIndex = -1;\r
415 \r
416                                         // Decide where to put the initial focus.\r
417                                         if ( definition.onFocus )\r
418                                         {\r
419                                                 var initialFocus = definition.onFocus.call( this );\r
420                                                 // Focus the field that the user specified.\r
421                                                 initialFocus && initialFocus.focus();\r
422                                         }\r
423                                         // Focus the first field in layout order.\r
424                                         else\r
425                                                 changeFocus( true );\r
426 \r
427                                         /*\r
428                                          * IE BUG: If the initial focus went into a non-text element (e.g. button),\r
429                                          * then IE would still leave the caret inside the editing area.\r
430                                          */\r
431                                         if ( this._.editor.mode == 'wysiwyg' && CKEDITOR.env.ie )\r
432                                         {\r
433                                                 var $selection = editor.document.$.selection,\r
434                                                         $range = $selection.createRange();\r
435 \r
436                                                 if ( $range )\r
437                                                 {\r
438                                                         if ( $range.parentElement && $range.parentElement().ownerDocument == editor.document.$\r
439                                                           || $range.item && $range.item( 0 ).ownerDocument == editor.document.$ )\r
440                                                         {\r
441                                                                 var $myRange = document.body.createTextRange();\r
442                                                                 $myRange.moveToElementText( this.getElement().getFirst().$ );\r
443                                                                 $myRange.collapse( true );\r
444                                                                 $myRange.select();\r
445                                                         }\r
446                                                 }\r
447                                         }\r
448                                 }\r
449                         }, this, null, 0xffffffff );\r
450 \r
451                 // IE6 BUG: Text fields and text areas are only half-rendered the first time the dialog appears in IE6 (#2661).\r
452                 // This is still needed after [2708] and [2709] because text fields in hidden TR tags are still broken.\r
453                 if ( CKEDITOR.env.ie6Compat )\r
454                 {\r
455                         this.on( 'load', function( evt )\r
456                                         {\r
457                                                 var outer = this.getElement(),\r
458                                                         inner = outer.getFirst();\r
459                                                 inner.remove();\r
460                                                 inner.appendTo( outer );\r
461                                         }, this );\r
462                 }\r
463 \r
464                 initDragAndDrop( this );\r
465                 initResizeHandles( this );\r
466 \r
467                 // Insert the title.\r
468                 ( new CKEDITOR.dom.text( definition.title, CKEDITOR.document ) ).appendTo( this.parts.title );\r
469 \r
470                 // Insert the tabs and contents.\r
471                 for ( var i = 0 ; i < definition.contents.length ; i++ )\r
472                         this.addPage( definition.contents[i] );\r
473 \r
474                 this.parts['tabs'].on( 'click', function( evt )\r
475                                 {\r
476                                         var target = evt.data.getTarget();\r
477                                         // If we aren't inside a tab, bail out.\r
478                                         if ( target.hasClass( 'cke_dialog_tab' ) )\r
479                                         {\r
480                                                 var id = target.$.id;\r
481                                                 this.selectPage( id.substr( 0, id.lastIndexOf( '_' ) ) );\r
482                                                 if ( this._.tabBarMode )\r
483                                                 {\r
484                                                         this._.tabBarMode = false;\r
485                                                         this._.currentFocusIndex = -1;\r
486                                                         changeFocus( true );\r
487                                                 }\r
488                                                 evt.data.preventDefault();\r
489                                         }\r
490                                 }, this );\r
491 \r
492                 // Insert buttons.\r
493                 var buttonsHtml = [],\r
494                         buttons = CKEDITOR.dialog._.uiElementBuilders.hbox.build( this,\r
495                                 {\r
496                                         type : 'hbox',\r
497                                         className : 'cke_dialog_footer_buttons',\r
498                                         widths : [],\r
499                                         children : definition.buttons\r
500                                 }, buttonsHtml ).getChild();\r
501                 this.parts.footer.setHtml( buttonsHtml.join( '' ) );\r
502 \r
503                 for ( i = 0 ; i < buttons.length ; i++ )\r
504                         this._.buttons[ buttons[i].id ] = buttons[i];\r
505         };\r
506 \r
507         // Focusable interface. Use it via dialog.addFocusable.\r
508         function Focusable( dialog, element, index )\r
509         {\r
510                 this.element = element;\r
511                 this.focusIndex = index;\r
512                 // TODO: support tabIndex for focusables.\r
513                 this.tabIndex = 0;\r
514                 this.isFocusable = function()\r
515                 {\r
516                         return !element.getAttribute( 'disabled' ) && element.isVisible();\r
517                 };\r
518                 this.focus = function()\r
519                 {\r
520                         dialog._.currentFocusIndex = this.focusIndex;\r
521                         this.element.focus();\r
522                 };\r
523                 // Bind events\r
524                 element.on( 'keydown', function( e )\r
525                         {\r
526                                 if ( e.data.getKeystroke() in { 32:1, 13:1 }  )\r
527                                         this.fire( 'click' );\r
528                         } );\r
529                 element.on( 'focus', function()\r
530                         {\r
531                                 this.fire( 'mouseover' );\r
532                         } );\r
533                 element.on( 'blur', function()\r
534                         {\r
535                                 this.fire( 'mouseout' );\r
536                         } );\r
537         }\r
538 \r
539         CKEDITOR.dialog.prototype =\r
540         {\r
541                 destroy : function()\r
542                 {\r
543                         this.hide();\r
544                         this._.element.remove();\r
545                 },\r
546 \r
547                 /**\r
548                  * Resizes the dialog.\r
549                  * @param {Number} width The width of the dialog in pixels.\r
550                  * @param {Number} height The height of the dialog in pixels.\r
551                  * @function\r
552                  * @example\r
553                  * dialogObj.resize( 800, 640 );\r
554                  */\r
555                 resize : (function()\r
556                 {\r
557                         return function( width, height )\r
558                         {\r
559                                 if ( this._.contentSize && this._.contentSize.width == width && this._.contentSize.height == height )\r
560                                         return;\r
561 \r
562                                 CKEDITOR.dialog.fire( 'resize',\r
563                                         {\r
564                                                 dialog : this,\r
565                                                 skin : this._.editor.skinName,\r
566                                                 width : width,\r
567                                                 height : height\r
568                                         }, this._.editor );\r
569 \r
570                                 this._.contentSize = { width : width, height : height };\r
571                                 this._.updateSize = true;\r
572                         };\r
573                 })(),\r
574 \r
575                 /**\r
576                  * Gets the current size of the dialog in pixels.\r
577                  * @returns {Object} An object with "width" and "height" properties.\r
578                  * @example\r
579                  * var width = dialogObj.getSize().width;\r
580                  */\r
581                 getSize : function()\r
582                 {\r
583                         if ( !this._.updateSize )\r
584                                 return this._.size;\r
585                         var element = this._.element.getFirst();\r
586                         var size = this._.size = { width : element.$.offsetWidth || 0, height : element.$.offsetHeight || 0};\r
587 \r
588                         // If either the offsetWidth or offsetHeight is 0, the element isn't visible.\r
589                         this._.updateSize = !size.width || !size.height;\r
590 \r
591                         return size;\r
592                 },\r
593 \r
594                 /**\r
595                  * Moves the dialog to an (x, y) coordinate relative to the window.\r
596                  * @function\r
597                  * @param {Number} x The target x-coordinate.\r
598                  * @param {Number} y The target y-coordinate.\r
599                  * @example\r
600                  * dialogObj.move( 10, 40 );\r
601                  */\r
602                 move : (function()\r
603                 {\r
604                         var isFixed;\r
605                         return function( x, y )\r
606                         {\r
607                                 // The dialog may be fixed positioned or absolute positioned. Ask the\r
608                                 // browser what is the current situation first.\r
609                                 var element = this._.element.getFirst();\r
610                                 if ( isFixed === undefined )\r
611                                         isFixed = element.getComputedStyle( 'position' ) == 'fixed';\r
612 \r
613                                 if ( isFixed && this._.position && this._.position.x == x && this._.position.y == y )\r
614                                         return;\r
615 \r
616                                 // Save the current position.\r
617                                 this._.position = { x : x, y : y };\r
618 \r
619                                 // If not fixed positioned, add scroll position to the coordinates.\r
620                                 if ( !isFixed )\r
621                                 {\r
622                                         var scrollPosition = CKEDITOR.document.getWindow().getScrollPosition();\r
623                                         x += scrollPosition.x;\r
624                                         y += scrollPosition.y;\r
625                                 }\r
626 \r
627                                 element.setStyles(\r
628                                                 {\r
629                                                         'left'  : ( x > 0 ? x : 0 ) + 'px',\r
630                                                         'top'   : ( y > 0 ? y : 0 ) + 'px'\r
631                                                 });\r
632                         };\r
633                 })(),\r
634 \r
635                 /**\r
636                  * Gets the dialog's position in the window.\r
637                  * @returns {Object} An object with "x" and "y" properties.\r
638                  * @example\r
639                  * var dialogX = dialogObj.getPosition().x;\r
640                  */\r
641                 getPosition : function(){ return CKEDITOR.tools.extend( {}, this._.position ); },\r
642 \r
643                 /**\r
644                  * Shows the dialog box.\r
645                  * @example\r
646                  * dialogObj.show();\r
647                  */\r
648                 show : function()\r
649                 {\r
650                         var editor = this._.editor;\r
651                         if ( editor.mode == 'wysiwyg' && CKEDITOR.env.ie )\r
652                         {\r
653                                 var selection = editor.getSelection();\r
654                                 selection && selection.lock();\r
655                         }\r
656 \r
657                         // Insert the dialog's element to the root document.\r
658                         var element = this._.element;\r
659                         var definition = this.definition;\r
660                         if ( !( element.getParent() && element.getParent().equals( CKEDITOR.document.getBody() ) ) )\r
661                                 element.appendTo( CKEDITOR.document.getBody() );\r
662                         else\r
663                                 element.setStyle( 'display', 'block' );\r
664 \r
665                         // FIREFOX BUG: Fix vanishing caret for Firefox 2 or Gecko 1.8.\r
666                         if ( CKEDITOR.env.gecko && CKEDITOR.env.version < 10900 )\r
667                         {\r
668                                 var dialogElement = this.parts.dialog;\r
669                                 dialogElement.setStyle( 'position', 'absolute' );\r
670                                 setTimeout( function()\r
671                                         {\r
672                                                 dialogElement.setStyle( 'position', 'fixed' );\r
673                                         }, 0 );\r
674                         }\r
675 \r
676 \r
677                         // First, set the dialog to an appropriate size.\r
678                         this.resize( definition.minWidth, definition.minHeight );\r
679 \r
680                         // Select the first tab by default.\r
681                         this.selectPage( this.definition.contents[0].id );\r
682 \r
683                         // Reset all inputs back to their default value.\r
684                         this.reset();\r
685 \r
686                         // Set z-index.\r
687                         if ( CKEDITOR.dialog._.currentZIndex === null )\r
688                                 CKEDITOR.dialog._.currentZIndex = this._.editor.config.baseFloatZIndex;\r
689                         this._.element.getFirst().setStyle( 'z-index', CKEDITOR.dialog._.currentZIndex += 10 );\r
690 \r
691                         // Maintain the dialog ordering and dialog cover.\r
692                         // Also register key handlers if first dialog.\r
693                         if ( CKEDITOR.dialog._.currentTop === null )\r
694                         {\r
695                                 CKEDITOR.dialog._.currentTop = this;\r
696                                 this._.parentDialog = null;\r
697                                 showCover( this._.editor );\r
698 \r
699                                 element.on( 'keydown', accessKeyDownHandler );\r
700                                 element.on( CKEDITOR.env.opera ? 'keypress' : 'keyup', accessKeyUpHandler );\r
701 \r
702                                 // Prevent some keys from bubbling up. (#4269)\r
703                                 for ( var event in { keyup :1, keydown :1, keypress :1 } )\r
704                                         element.on( event, preventKeyBubbling );\r
705                         }\r
706                         else\r
707                         {\r
708                                 this._.parentDialog = CKEDITOR.dialog._.currentTop;\r
709                                 var parentElement = this._.parentDialog.getElement().getFirst();\r
710                                 parentElement.$.style.zIndex  -= Math.floor( this._.editor.config.baseFloatZIndex / 2 );\r
711                                 CKEDITOR.dialog._.currentTop = this;\r
712                         }\r
713 \r
714                         // Register the Esc hotkeys.\r
715                         registerAccessKey( this, this, '\x1b', null, function()\r
716                                         {\r
717                                                 this.getButton( 'cancel' ) && this.getButton( 'cancel' ).click();\r
718                                         } );\r
719 \r
720                         // Reset the hasFocus state.\r
721                         this._.hasFocus = false;\r
722 \r
723                         // Rearrange the dialog to the middle of the window.\r
724                         CKEDITOR.tools.setTimeout( function()\r
725                                 {\r
726                                         var viewSize = CKEDITOR.document.getWindow().getViewPaneSize();\r
727                                         var dialogSize = this.getSize();\r
728 \r
729                                         // We're using definition size for initial position because of\r
730                                         // offten corrupted data in offsetWidth at this point. (#4084)\r
731                                         this.move( ( viewSize.width - definition.minWidth ) / 2, ( viewSize.height - dialogSize.height ) / 2 );\r
732 \r
733                                         this.parts.dialog.setStyle( 'visibility', '' );\r
734 \r
735                                         // Execute onLoad for the first show.\r
736                                         this.fireOnce( 'load', {} );\r
737                                         this.fire( 'show', {} );\r
738                                         this._.editor.fire( 'dialogShow', this );\r
739 \r
740                                         // Save the initial values of the dialog.\r
741                                         this.foreach( function( contentObj ) { contentObj.setInitValue && contentObj.setInitValue(); } );\r
742 \r
743                                 },\r
744                                 100, this );\r
745                 },\r
746 \r
747                 /**\r
748                  * Executes a function for each UI element.\r
749                  * @param {Function} fn Function to execute for each UI element.\r
750                  * @returns {CKEDITOR.dialog} The current dialog object.\r
751                  */\r
752                 foreach : function( fn )\r
753                 {\r
754                         for ( var i in this._.contents )\r
755                         {\r
756                                 for ( var j in this._.contents[i] )\r
757                                         fn( this._.contents[i][j]);\r
758                         }\r
759                         return this;\r
760                 },\r
761 \r
762                 /**\r
763                  * Resets all input values in the dialog.\r
764                  * @example\r
765                  * dialogObj.reset();\r
766                  * @returns {CKEDITOR.dialog} The current dialog object.\r
767                  */\r
768                 reset : (function()\r
769                 {\r
770                         var fn = function( widget ){ if ( widget.reset ) widget.reset(); };\r
771                         return function(){ this.foreach( fn ); return this; };\r
772                 })(),\r
773 \r
774                 setupContent : function()\r
775                 {\r
776                         var args = arguments;\r
777                         this.foreach( function( widget )\r
778                                 {\r
779                                         if ( widget.setup )\r
780                                                 widget.setup.apply( widget, args );\r
781                                 });\r
782                 },\r
783 \r
784                 commitContent : function()\r
785                 {\r
786                         var args = arguments;\r
787                         this.foreach( function( widget )\r
788                                 {\r
789                                         if ( widget.commit )\r
790                                                 widget.commit.apply( widget, args );\r
791                                 });\r
792                 },\r
793 \r
794                 /**\r
795                  * Hides the dialog box.\r
796                  * @example\r
797                  * dialogObj.hide();\r
798                  */\r
799                 hide : function()\r
800                 {\r
801                         if ( !this.parts.dialog.isVisible() )\r
802                                 return;\r
803 \r
804                         this.fire( 'hide', {} );\r
805                         this._.editor.fire( 'dialogHide', this );\r
806                         var element = this._.element;\r
807                         element.setStyle( 'display', 'none' );\r
808                         this.parts.dialog.setStyle( 'visibility', 'hidden' );\r
809                         // Unregister all access keys associated with this dialog.\r
810                         unregisterAccessKey( this );\r
811 \r
812                         // Close any child(top) dialogs first.\r
813                         while( CKEDITOR.dialog._.currentTop != this )\r
814                                 CKEDITOR.dialog._.currentTop.hide();\r
815 \r
816                         // Maintain dialog ordering and remove cover if needed.\r
817                         if ( !this._.parentDialog )\r
818                                 hideCover();\r
819                         else\r
820                         {\r
821                                 var parentElement = this._.parentDialog.getElement().getFirst();\r
822                                 parentElement.setStyle( 'z-index', parseInt( parentElement.$.style.zIndex, 10 ) + Math.floor( this._.editor.config.baseFloatZIndex / 2 ) );\r
823                         }\r
824                         CKEDITOR.dialog._.currentTop = this._.parentDialog;\r
825 \r
826                         // Deduct or clear the z-index.\r
827                         if ( !this._.parentDialog )\r
828                         {\r
829                                 CKEDITOR.dialog._.currentZIndex = null;\r
830 \r
831                                 // Remove access key handlers.\r
832                                 element.removeListener( 'keydown', accessKeyDownHandler );\r
833                                 element.removeListener( CKEDITOR.env.opera ? 'keypress' : 'keyup', accessKeyUpHandler );\r
834 \r
835                                 // Remove bubbling-prevention handler. (#4269)\r
836                                 for ( var event in { keyup :1, keydown :1, keypress :1 } )\r
837                                         element.removeListener( event, preventKeyBubbling );\r
838 \r
839                                 var editor = this._.editor;\r
840                                 editor.focus();\r
841 \r
842                                 if ( editor.mode == 'wysiwyg' && CKEDITOR.env.ie )\r
843                                 {\r
844                                         var selection = editor.getSelection();\r
845                                         selection && selection.unlock( true );\r
846                                 }\r
847                         }\r
848                         else\r
849                                 CKEDITOR.dialog._.currentZIndex -= 10;\r
850 \r
851                         delete this._.parentDialog;\r
852                         // Reset the initial values of the dialog.\r
853                         this.foreach( function( contentObj ) { contentObj.resetInitValue && contentObj.resetInitValue(); } );\r
854                 },\r
855 \r
856                 /**\r
857                  * Adds a tabbed page into the dialog.\r
858                  * @param {Object} contents Content definition.\r
859                  * @example\r
860                  */\r
861                 addPage : function( contents )\r
862                 {\r
863                         var pageHtml = [],\r
864                                 titleHtml = contents.label ? ' title="' + CKEDITOR.tools.htmlEncode( contents.label ) + '"' : '',\r
865                                 elements = contents.elements,\r
866                                 vbox = CKEDITOR.dialog._.uiElementBuilders.vbox.build( this,\r
867                                                 {\r
868                                                         type : 'vbox',\r
869                                                         className : 'cke_dialog_page_contents',\r
870                                                         children : contents.elements,\r
871                                                         expand : !!contents.expand,\r
872                                                         padding : contents.padding,\r
873                                                         style : contents.style || 'width: 100%; height: 100%;'\r
874                                                 }, pageHtml );\r
875 \r
876                         // Create the HTML for the tab and the content block.\r
877                         var page = CKEDITOR.dom.element.createFromHtml( pageHtml.join( '' ) );\r
878                         page.setAttribute( 'role', 'tabpanel' );\r
879 \r
880                         var env = CKEDITOR.env;\r
881                         var tabId = contents.id + '_' + CKEDITOR.tools.getNextNumber(),\r
882                                  tab = CKEDITOR.dom.element.createFromHtml( [\r
883                                         '<a class="cke_dialog_tab"',\r
884                                                 ( this._.pageCount > 0 ? ' cke_last' : 'cke_first' ),\r
885                                                 titleHtml,\r
886                                                 ( !!contents.hidden ? ' style="display:none"' : '' ),\r
887                                                 ' id="', tabId, '"',\r
888                                                 env.gecko && env.version >= 10900 && !env.hc ? '' : ' href="javascript:void(0)"',\r
889                                                 ' tabIndex="-1"',\r
890                                                 ' hidefocus="true"',\r
891                                                 ' role="tab">',\r
892                                                         contents.label,\r
893                                         '</a>'\r
894                                 ].join( '' ) );\r
895 \r
896                         page.setAttribute( 'aria-labelledby', tabId );\r
897 \r
898                         // Take records for the tabs and elements created.\r
899                         this._.tabs[ contents.id ] = [ tab, page ];\r
900                         this._.tabIdList.push( contents.id );\r
901                         !contents.hidden && this._.pageCount++;\r
902                         this._.lastTab = tab;\r
903                         this.updateStyle();\r
904 \r
905                         var contentMap = this._.contents[ contents.id ] = {},\r
906                                 cursor,\r
907                                 children = vbox.getChild();\r
908 \r
909                         while ( ( cursor = children.shift() ) )\r
910                         {\r
911                                 contentMap[ cursor.id ] = cursor;\r
912                                 if ( typeof( cursor.getChild ) == 'function' )\r
913                                         children.push.apply( children, cursor.getChild() );\r
914                         }\r
915 \r
916                         // Attach the DOM nodes.\r
917 \r
918                         page.setAttribute( 'name', contents.id );\r
919                         page.appendTo( this.parts.contents );\r
920 \r
921                         tab.unselectable();\r
922                         this.parts.tabs.append( tab );\r
923 \r
924                         // Add access key handlers if access key is defined.\r
925                         if ( contents.accessKey )\r
926                         {\r
927                                 registerAccessKey( this, this, 'CTRL+' + contents.accessKey,\r
928                                         tabAccessKeyDown, tabAccessKeyUp );\r
929                                 this._.accessKeyMap[ 'CTRL+' + contents.accessKey ] = contents.id;\r
930                         }\r
931                 },\r
932 \r
933                 /**\r
934                  * Activates a tab page in the dialog by its id.\r
935                  * @param {String} id The id of the dialog tab to be activated.\r
936                  * @example\r
937                  * dialogObj.selectPage( 'tab_1' );\r
938                  */\r
939                 selectPage : function( id )\r
940                 {\r
941                         // Hide the non-selected tabs and pages.\r
942                         for ( var i in this._.tabs )\r
943                         {\r
944                                 var tab = this._.tabs[i][0],\r
945                                         page = this._.tabs[i][1];\r
946                                 if ( i != id )\r
947                                 {\r
948                                         tab.removeClass( 'cke_dialog_tab_selected' );\r
949                                         page.hide();\r
950                                 }\r
951                                 page.setAttribute( 'aria-hidden', i != id );\r
952                         }\r
953 \r
954                         var selected = this._.tabs[id];\r
955                         selected[0].addClass( 'cke_dialog_tab_selected' );\r
956                         selected[1].show();\r
957                         this._.currentTabId = id;\r
958                         this._.currentTabIndex = CKEDITOR.tools.indexOf( this._.tabIdList, id );\r
959                 },\r
960 \r
961                 // Dialog state-specific style updates.\r
962                 updateStyle : function()\r
963                 {\r
964                         // If only a single page shown, a different style is used in the central pane.\r
965                         this.parts.dialog[ ( this._.pageCount === 1 ? 'add' : 'remove' ) + 'Class' ]( 'cke_single_page' );\r
966                 },\r
967 \r
968                 /**\r
969                  * Hides a page's tab away from the dialog.\r
970                  * @param {String} id The page's Id.\r
971                  * @example\r
972                  * dialog.hidePage( 'tab_3' );\r
973                  */\r
974                 hidePage : function( id )\r
975                 {\r
976                         var tab = this._.tabs[id] && this._.tabs[id][0];\r
977                         if ( !tab || this._.pageCount == 1 )\r
978                                 return;\r
979                         // Switch to other tab first when we're hiding the active tab.\r
980                         else if ( id == this._.currentTabId )\r
981                                 this.selectPage( getPreviousVisibleTab.call( this ) );\r
982 \r
983                         tab.hide();\r
984                         this._.pageCount--;\r
985                         this.updateStyle();\r
986                 },\r
987 \r
988                 /**\r
989                  * Unhides a page's tab.\r
990                  * @param {String} id The page's Id.\r
991                  * @example\r
992                  * dialog.showPage( 'tab_2' );\r
993                  */\r
994                 showPage : function( id )\r
995                 {\r
996                         var tab = this._.tabs[id] && this._.tabs[id][0];\r
997                         if ( !tab )\r
998                                 return;\r
999                         tab.show();\r
1000                         this._.pageCount++;\r
1001                         this.updateStyle();\r
1002                 },\r
1003 \r
1004                 /**\r
1005                  * Gets the root DOM element of the dialog.\r
1006                  * @returns {CKEDITOR.dom.element} The &lt;span&gt; element containing this dialog.\r
1007                  * @example\r
1008                  * var dialogElement = dialogObj.getElement().getFirst();\r
1009                  * dialogElement.setStyle( 'padding', '5px' );\r
1010                  */\r
1011                 getElement : function()\r
1012                 {\r
1013                         return this._.element;\r
1014                 },\r
1015 \r
1016                 /**\r
1017                  * Gets the name of the dialog.\r
1018                  * @returns {String} The name of this dialog.\r
1019                  * @example\r
1020                  * var dialogName = dialogObj.getName();\r
1021                  */\r
1022                 getName : function()\r
1023                 {\r
1024                         return this._.name;\r
1025                 },\r
1026 \r
1027                 /**\r
1028                  * Gets a dialog UI element object from a dialog page.\r
1029                  * @param {String} pageId id of dialog page.\r
1030                  * @param {String} elementId id of UI element.\r
1031                  * @example\r
1032                  * @returns {CKEDITOR.ui.dialog.uiElement} The dialog UI element.\r
1033                  */\r
1034                 getContentElement : function( pageId, elementId )\r
1035                 {\r
1036                         var page = this._.contents[ pageId ];\r
1037                         return page && page[ elementId ];\r
1038                 },\r
1039 \r
1040                 /**\r
1041                  * Gets the value of a dialog UI element.\r
1042                  * @param {String} pageId id of dialog page.\r
1043                  * @param {String} elementId id of UI element.\r
1044                  * @example\r
1045                  * @returns {Object} The value of the UI element.\r
1046                  */\r
1047                 getValueOf : function( pageId, elementId )\r
1048                 {\r
1049                         return this.getContentElement( pageId, elementId ).getValue();\r
1050                 },\r
1051 \r
1052                 /**\r
1053                  * Sets the value of a dialog UI element.\r
1054                  * @param {String} pageId id of the dialog page.\r
1055                  * @param {String} elementId id of the UI element.\r
1056                  * @param {Object} value The new value of the UI element.\r
1057                  * @example\r
1058                  */\r
1059                 setValueOf : function( pageId, elementId, value )\r
1060                 {\r
1061                         return this.getContentElement( pageId, elementId ).setValue( value );\r
1062                 },\r
1063 \r
1064                 /**\r
1065                  * Gets the UI element of a button in the dialog's button row.\r
1066                  * @param {String} id The id of the button.\r
1067                  * @example\r
1068                  * @returns {CKEDITOR.ui.dialog.button} The button object.\r
1069                  */\r
1070                 getButton : function( id )\r
1071                 {\r
1072                         return this._.buttons[ id ];\r
1073                 },\r
1074 \r
1075                 /**\r
1076                  * Simulates a click to a dialog button in the dialog's button row.\r
1077                  * @param {String} id The id of the button.\r
1078                  * @example\r
1079                  * @returns The return value of the dialog's "click" event.\r
1080                  */\r
1081                 click : function( id )\r
1082                 {\r
1083                         return this._.buttons[ id ].click();\r
1084                 },\r
1085 \r
1086                 /**\r
1087                  * Disables a dialog button.\r
1088                  * @param {String} id The id of the button.\r
1089                  * @example\r
1090                  */\r
1091                 disableButton : function( id )\r
1092                 {\r
1093                         return this._.buttons[ id ].disable();\r
1094                 },\r
1095 \r
1096                 /**\r
1097                  * Enables a dialog button.\r
1098                  * @param {String} id The id of the button.\r
1099                  * @example\r
1100                  */\r
1101                 enableButton : function( id )\r
1102                 {\r
1103                         return this._.buttons[ id ].enable();\r
1104                 },\r
1105 \r
1106                 /**\r
1107                  * Gets the number of pages in the dialog.\r
1108                  * @returns {Number} Page count.\r
1109                  */\r
1110                 getPageCount : function()\r
1111                 {\r
1112                         return this._.pageCount;\r
1113                 },\r
1114 \r
1115                 /**\r
1116                  * Gets the editor instance which opened this dialog.\r
1117                  * @returns {CKEDITOR.editor} Parent editor instances.\r
1118                  */\r
1119                 getParentEditor : function()\r
1120                 {\r
1121                         return this._.editor;\r
1122                 },\r
1123 \r
1124                 /**\r
1125                  * Gets the element that was selected when opening the dialog, if any.\r
1126                  * @returns {CKEDITOR.dom.element} The element that was selected, or null.\r
1127                  */\r
1128                 getSelectedElement : function()\r
1129                 {\r
1130                         return this.getParentEditor().getSelection().getSelectedElement();\r
1131                 },\r
1132 \r
1133                 /**\r
1134                  * Adds element to dialog's focusable list.\r
1135                  *\r
1136                  * @param {CKEDITOR.dom.element} element\r
1137                  * @param {Number} [index]\r
1138                  */\r
1139                 addFocusable: function( element, index ) {\r
1140                         if ( typeof index == 'undefined' )\r
1141                         {\r
1142                                 index = this._.focusList.length;\r
1143                                 this._.focusList.push( new Focusable( this, element, index ) );\r
1144                         }\r
1145                         else\r
1146                         {\r
1147                                 this._.focusList.splice( index, 0, new Focusable( this, element, index ) );\r
1148                                 for ( var i = index + 1 ; i < this._.focusList.length ; i++ )\r
1149                                         this._.focusList[ i ].focusIndex++;\r
1150                         }\r
1151                 }\r
1152         };\r
1153 \r
1154         CKEDITOR.tools.extend( CKEDITOR.dialog,\r
1155                 /**\r
1156                  * @lends CKEDITOR.dialog\r
1157                  */\r
1158                 {\r
1159                         /**\r
1160                          * Registers a dialog.\r
1161                          * @param {String} name The dialog's name.\r
1162                          * @param {Function|String} dialogDefinition\r
1163                          * A function returning the dialog's definition, or the URL to the .js file holding the function.\r
1164                          * The function should accept an argument "editor" which is the current editor instance, and\r
1165                          * return an object conforming to {@link CKEDITOR.dialog.dialogDefinition}.\r
1166                          * @example\r
1167                          * @see CKEDITOR.dialog.dialogDefinition\r
1168                          */\r
1169                         add : function( name, dialogDefinition )\r
1170                         {\r
1171                                 // Avoid path registration from multiple instances override definition.\r
1172                                 if ( !this._.dialogDefinitions[name]\r
1173                                         || typeof  dialogDefinition == 'function' )\r
1174                                         this._.dialogDefinitions[name] = dialogDefinition;\r
1175                         },\r
1176 \r
1177                         exists : function( name )\r
1178                         {\r
1179                                 return !!this._.dialogDefinitions[ name ];\r
1180                         },\r
1181 \r
1182                         getCurrent : function()\r
1183                         {\r
1184                                 return CKEDITOR.dialog._.currentTop;\r
1185                         },\r
1186 \r
1187                         /**\r
1188                          * The default OK button for dialogs. Fires the "ok" event and closes the dialog if the event succeeds.\r
1189                          * @static\r
1190                          * @field\r
1191                          * @example\r
1192                          * @type Function\r
1193                          */\r
1194                         okButton : (function()\r
1195                         {\r
1196                                 var retval = function( editor, override )\r
1197                                 {\r
1198                                         override = override || {};\r
1199                                         return CKEDITOR.tools.extend( {\r
1200                                                 id : 'ok',\r
1201                                                 type : 'button',\r
1202                                                 label : editor.lang.common.ok,\r
1203                                                 'class' : 'cke_dialog_ui_button_ok',\r
1204                                                 onClick : function( evt )\r
1205                                                 {\r
1206                                                         var dialog = evt.data.dialog;\r
1207                                                         if ( dialog.fire( 'ok', { hide : true } ).hide !== false )\r
1208                                                                 dialog.hide();\r
1209                                                 }\r
1210                                         }, override, true );\r
1211                                 };\r
1212                                 retval.type = 'button';\r
1213                                 retval.override = function( override )\r
1214                                 {\r
1215                                         return CKEDITOR.tools.extend( function( editor ){ return retval( editor, override ); },\r
1216                                                         { type : 'button' }, true );\r
1217                                 };\r
1218                                 return retval;\r
1219                         })(),\r
1220 \r
1221                         /**\r
1222                          * The default cancel button for dialogs. Fires the "cancel" event and closes the dialog if no UI element value changed.\r
1223                          * @static\r
1224                          * @field\r
1225                          * @example\r
1226                          * @type Function\r
1227                          */\r
1228                         cancelButton : (function()\r
1229                         {\r
1230                                 var retval = function( editor, override )\r
1231                                 {\r
1232                                         override = override || {};\r
1233                                         return CKEDITOR.tools.extend( {\r
1234                                                 id : 'cancel',\r
1235                                                 type : 'button',\r
1236                                                 label : editor.lang.common.cancel,\r
1237                                                 'class' : 'cke_dialog_ui_button_cancel',\r
1238                                                 onClick : function( evt )\r
1239                                                 {\r
1240                                                         var dialog = evt.data.dialog;\r
1241                                                         if ( dialog.fire( 'cancel', { hide : true } ).hide !== false )\r
1242                                                                 dialog.hide();\r
1243                                                 }\r
1244                                         }, override, true );\r
1245                                 };\r
1246                                 retval.type = 'button';\r
1247                                 retval.override = function( override )\r
1248                                 {\r
1249                                         return CKEDITOR.tools.extend( function( editor ){ return retval( editor, override ); },\r
1250                                                         { type : 'button' }, true );\r
1251                                 };\r
1252                                 return retval;\r
1253                         })(),\r
1254 \r
1255                         /**\r
1256                          * Registers a dialog UI element.\r
1257                          * @param {String} typeName The name of the UI element.\r
1258                          * @param {Function} builder The function to build the UI element.\r
1259                          * @example\r
1260                          */\r
1261                         addUIElement : function( typeName, builder )\r
1262                         {\r
1263                                 this._.uiElementBuilders[ typeName ] = builder;\r
1264                         }\r
1265                 });\r
1266 \r
1267         CKEDITOR.dialog._ =\r
1268         {\r
1269                 uiElementBuilders : {},\r
1270 \r
1271                 dialogDefinitions : {},\r
1272 \r
1273                 currentTop : null,\r
1274 \r
1275                 currentZIndex : null\r
1276         };\r
1277 \r
1278         // "Inherit" (copy actually) from CKEDITOR.event.\r
1279         CKEDITOR.event.implementOn( CKEDITOR.dialog );\r
1280         CKEDITOR.event.implementOn( CKEDITOR.dialog.prototype, true );\r
1281 \r
1282         var defaultDialogDefinition =\r
1283         {\r
1284                 resizable : CKEDITOR.DIALOG_RESIZE_BOTH,\r
1285                 minWidth : 600,\r
1286                 minHeight : 400,\r
1287                 buttons : [ CKEDITOR.dialog.okButton, CKEDITOR.dialog.cancelButton ]\r
1288         };\r
1289 \r
1290         // The buttons in MacOS Apps are in reverse order #4750\r
1291         CKEDITOR.env.mac && defaultDialogDefinition.buttons.reverse();\r
1292 \r
1293         // Tool function used to return an item from an array based on its id\r
1294         // property.\r
1295         var getById = function( array, id, recurse )\r
1296         {\r
1297                 for ( var i = 0, item ; ( item = array[ i ] ) ; i++ )\r
1298                 {\r
1299                         if ( item.id == id )\r
1300                                 return item;\r
1301                         if ( recurse && item[ recurse ] )\r
1302                         {\r
1303                                 var retval = getById( item[ recurse ], id, recurse ) ;\r
1304                                 if ( retval )\r
1305                                         return retval;\r
1306                         }\r
1307                 }\r
1308                 return null;\r
1309         };\r
1310 \r
1311         // Tool function used to add an item into an array.\r
1312         var addById = function( array, newItem, nextSiblingId, recurse, nullIfNotFound )\r
1313         {\r
1314                 if ( nextSiblingId )\r
1315                 {\r
1316                         for ( var i = 0, item ; ( item = array[ i ] ) ; i++ )\r
1317                         {\r
1318                                 if ( item.id == nextSiblingId )\r
1319                                 {\r
1320                                         array.splice( i, 0, newItem );\r
1321                                         return newItem;\r
1322                                 }\r
1323 \r
1324                                 if ( recurse && item[ recurse ] )\r
1325                                 {\r
1326                                         var retval = addById( item[ recurse ], newItem, nextSiblingId, recurse, true );\r
1327                                         if ( retval )\r
1328                                                 return retval;\r
1329                                 }\r
1330                         }\r
1331 \r
1332                         if ( nullIfNotFound )\r
1333                                 return null;\r
1334                 }\r
1335 \r
1336                 array.push( newItem );\r
1337                 return newItem;\r
1338         };\r
1339 \r
1340         // Tool function used to remove an item from an array based on its id.\r
1341         var removeById = function( array, id, recurse )\r
1342         {\r
1343                 for ( var i = 0, item ; ( item = array[ i ] ) ; i++ )\r
1344                 {\r
1345                         if ( item.id == id )\r
1346                                 return array.splice( i, 1 );\r
1347                         if ( recurse && item[ recurse ] )\r
1348                         {\r
1349                                 var retval = removeById( item[ recurse ], id, recurse );\r
1350                                 if ( retval )\r
1351                                         return retval;\r
1352                         }\r
1353                 }\r
1354                 return null;\r
1355         };\r
1356 \r
1357         /**\r
1358          * This class is not really part of the API. It is the "definition" property value\r
1359          * passed to "dialogDefinition" event handlers.\r
1360          * @constructor\r
1361          * @name CKEDITOR.dialog.dialogDefinitionObject\r
1362          * @extends CKEDITOR.dialog.dialogDefinition\r
1363          * @example\r
1364          * CKEDITOR.on( 'dialogDefinition', function( evt )\r
1365          *      {\r
1366          *              var definition = evt.data.definition;\r
1367          *              var content = definition.getContents( 'page1' );\r
1368          *              ...\r
1369          *      } );\r
1370          */\r
1371         var definitionObject = function( dialog, dialogDefinition )\r
1372         {\r
1373                 // TODO : Check if needed.\r
1374                 this.dialog = dialog;\r
1375 \r
1376                 // Transform the contents entries in contentObjects.\r
1377                 var contents = dialogDefinition.contents;\r
1378                 for ( var i = 0, content ; ( content = contents[i] ) ; i++ )\r
1379                         contents[ i ] = new contentObject( dialog, content );\r
1380 \r
1381                 CKEDITOR.tools.extend( this, dialogDefinition );\r
1382         };\r
1383 \r
1384         definitionObject.prototype =\r
1385         /** @lends CKEDITOR.dialog.dialogDefinitionObject.prototype */\r
1386         {\r
1387                 /**\r
1388                  * Gets a content definition.\r
1389                  * @param {String} id The id of the content definition.\r
1390                  * @returns {CKEDITOR.dialog.contentDefinition} The content definition\r
1391                  *              matching id.\r
1392                  */\r
1393                 getContents : function( id )\r
1394                 {\r
1395                         return getById( this.contents, id );\r
1396                 },\r
1397 \r
1398                 /**\r
1399                  * Gets a button definition.\r
1400                  * @param {String} id The id of the button definition.\r
1401                  * @returns {CKEDITOR.dialog.buttonDefinition} The button definition\r
1402                  *              matching id.\r
1403                  */\r
1404                 getButton : function( id )\r
1405                 {\r
1406                         return getById( this.buttons, id );\r
1407                 },\r
1408 \r
1409                 /**\r
1410                  * Adds a content definition object under this dialog definition.\r
1411                  * @param {CKEDITOR.dialog.contentDefinition} contentDefinition The\r
1412                  *              content definition.\r
1413                  * @param {String} [nextSiblingId] The id of an existing content\r
1414                  *              definition which the new content definition will be inserted\r
1415                  *              before. Omit if the new content definition is to be inserted as\r
1416                  *              the last item.\r
1417                  * @returns {CKEDITOR.dialog.contentDefinition} The inserted content\r
1418                  *              definition.\r
1419                  */\r
1420                 addContents : function( contentDefinition, nextSiblingId )\r
1421                 {\r
1422                         return addById( this.contents, contentDefinition, nextSiblingId );\r
1423                 },\r
1424 \r
1425                 /**\r
1426                  * Adds a button definition object under this dialog definition.\r
1427                  * @param {CKEDITOR.dialog.buttonDefinition} buttonDefinition The\r
1428                  *              button definition.\r
1429                  * @param {String} [nextSiblingId] The id of an existing button\r
1430                  *              definition which the new button definition will be inserted\r
1431                  *              before. Omit if the new button definition is to be inserted as\r
1432                  *              the last item.\r
1433                  * @returns {CKEDITOR.dialog.buttonDefinition} The inserted button\r
1434                  *              definition.\r
1435                  */\r
1436                 addButton : function( buttonDefinition, nextSiblingId )\r
1437                 {\r
1438                         return addById( this.buttons, buttonDefinition, nextSiblingId );\r
1439                 },\r
1440 \r
1441                 /**\r
1442                  * Removes a content definition from this dialog definition.\r
1443                  * @param {String} id The id of the content definition to be removed.\r
1444                  * @returns {CKEDITOR.dialog.contentDefinition} The removed content\r
1445                  *              definition.\r
1446                  */\r
1447                 removeContents : function( id )\r
1448                 {\r
1449                         removeById( this.contents, id );\r
1450                 },\r
1451 \r
1452                 /**\r
1453                  * Removes a button definition from the dialog definition.\r
1454                  * @param {String} id The id of the button definition to be removed.\r
1455                  * @returns {CKEDITOR.dialog.buttonDefinition} The removed button\r
1456                  *              definition.\r
1457                  */\r
1458                 removeButton : function( id )\r
1459                 {\r
1460                         removeById( this.buttons, id );\r
1461                 }\r
1462         };\r
1463 \r
1464         /**\r
1465          * This class is not really part of the API. It is the template of the\r
1466          * objects representing content pages inside the\r
1467          * CKEDITOR.dialog.dialogDefinitionObject.\r
1468          * @constructor\r
1469          * @name CKEDITOR.dialog.contentDefinitionObject\r
1470          * @example\r
1471          * CKEDITOR.on( 'dialogDefinition', function( evt )\r
1472          *      {\r
1473          *              var definition = evt.data.definition;\r
1474          *              var content = definition.getContents( 'page1' );\r
1475          *              content.remove( 'textInput1' );\r
1476          *              ...\r
1477          *      } );\r
1478          */\r
1479         function contentObject( dialog, contentDefinition )\r
1480         {\r
1481                 this._ =\r
1482                 {\r
1483                         dialog : dialog\r
1484                 };\r
1485 \r
1486                 CKEDITOR.tools.extend( this, contentDefinition );\r
1487         }\r
1488 \r
1489         contentObject.prototype =\r
1490         /** @lends CKEDITOR.dialog.contentDefinitionObject.prototype */\r
1491         {\r
1492                 /**\r
1493                  * Gets a UI element definition under the content definition.\r
1494                  * @param {String} id The id of the UI element definition.\r
1495                  * @returns {CKEDITOR.dialog.uiElementDefinition}\r
1496                  */\r
1497                 get : function( id )\r
1498                 {\r
1499                         return getById( this.elements, id, 'children' );\r
1500                 },\r
1501 \r
1502                 /**\r
1503                  * Adds a UI element definition to the content definition.\r
1504                  * @param {CKEDITOR.dialog.uiElementDefinition} elementDefinition The\r
1505                  *              UI elemnet definition to be added.\r
1506                  * @param {String} nextSiblingId The id of an existing UI element\r
1507                  *              definition which the new UI element definition will be inserted\r
1508                  *              before. Omit if the new button definition is to be inserted as\r
1509                  *              the last item.\r
1510                  * @returns {CKEDITOR.dialog.uiElementDefinition} The element\r
1511                  *              definition inserted.\r
1512                  */\r
1513                 add : function( elementDefinition, nextSiblingId )\r
1514                 {\r
1515                         return addById( this.elements, elementDefinition, nextSiblingId, 'children' );\r
1516                 },\r
1517 \r
1518                 /**\r
1519                  * Removes a UI element definition from the content definition.\r
1520                  * @param {String} id The id of the UI element definition to be\r
1521                  *              removed.\r
1522                  * @returns {CKEDITOR.dialog.uiElementDefinition} The element\r
1523                  *              definition removed.\r
1524                  * @example\r
1525                  */\r
1526                 remove : function( id )\r
1527                 {\r
1528                         removeById( this.elements, id, 'children' );\r
1529                 }\r
1530         };\r
1531 \r
1532         function initDragAndDrop( dialog )\r
1533         {\r
1534                 var lastCoords = null,\r
1535                         abstractDialogCoords = null,\r
1536                         element = dialog.getElement().getFirst(),\r
1537                         editor = dialog.getParentEditor(),\r
1538                         magnetDistance = editor.config.dialog_magnetDistance,\r
1539                         margins = editor.skin.margins || [ 0, 0, 0, 0 ];\r
1540 \r
1541                 if ( typeof magnetDistance == 'undefined' )\r
1542                         magnetDistance = 20;\r
1543 \r
1544                 function mouseMoveHandler( evt )\r
1545                 {\r
1546                         var dialogSize = dialog.getSize(),\r
1547                                 viewPaneSize = CKEDITOR.document.getWindow().getViewPaneSize(),\r
1548                                 x = evt.data.$.screenX,\r
1549                                 y = evt.data.$.screenY,\r
1550                                 dx = x - lastCoords.x,\r
1551                                 dy = y - lastCoords.y,\r
1552                                 realX, realY;\r
1553 \r
1554                         lastCoords = { x : x, y : y };\r
1555                         abstractDialogCoords.x += dx;\r
1556                         abstractDialogCoords.y += dy;\r
1557 \r
1558                         if ( abstractDialogCoords.x + margins[3] < magnetDistance )\r
1559                                 realX = - margins[3];\r
1560                         else if ( abstractDialogCoords.x - margins[1] > viewPaneSize.width - dialogSize.width - magnetDistance )\r
1561                                 realX = viewPaneSize.width - dialogSize.width + margins[1];\r
1562                         else\r
1563                                 realX = abstractDialogCoords.x;\r
1564 \r
1565                         if ( abstractDialogCoords.y + margins[0] < magnetDistance )\r
1566                                 realY = - margins[0];\r
1567                         else if ( abstractDialogCoords.y - margins[2] > viewPaneSize.height - dialogSize.height - magnetDistance )\r
1568                                 realY = viewPaneSize.height - dialogSize.height + margins[2];\r
1569                         else\r
1570                                 realY = abstractDialogCoords.y;\r
1571 \r
1572                         dialog.move( realX, realY );\r
1573 \r
1574                         evt.data.preventDefault();\r
1575                 }\r
1576 \r
1577                 function mouseUpHandler( evt )\r
1578                 {\r
1579                         CKEDITOR.document.removeListener( 'mousemove', mouseMoveHandler );\r
1580                         CKEDITOR.document.removeListener( 'mouseup', mouseUpHandler );\r
1581 \r
1582                         if ( CKEDITOR.env.ie6Compat )\r
1583                         {\r
1584                                 var coverDoc = currentCover.getChild( 0 ).getFrameDocument();\r
1585                                 coverDoc.removeListener( 'mousemove', mouseMoveHandler );\r
1586                                 coverDoc.removeListener( 'mouseup', mouseUpHandler );\r
1587                         }\r
1588                 }\r
1589 \r
1590                 dialog.parts.title.on( 'mousedown', function( evt )\r
1591                         {\r
1592                                 dialog._.updateSize = true;\r
1593 \r
1594                                 lastCoords = { x : evt.data.$.screenX, y : evt.data.$.screenY };\r
1595 \r
1596                                 CKEDITOR.document.on( 'mousemove', mouseMoveHandler );\r
1597                                 CKEDITOR.document.on( 'mouseup', mouseUpHandler );\r
1598                                 abstractDialogCoords = dialog.getPosition();\r
1599 \r
1600                                 if ( CKEDITOR.env.ie6Compat )\r
1601                                 {\r
1602                                         var coverDoc = currentCover.getChild( 0 ).getFrameDocument();\r
1603                                         coverDoc.on( 'mousemove', mouseMoveHandler );\r
1604                                         coverDoc.on( 'mouseup', mouseUpHandler );\r
1605                                 }\r
1606 \r
1607                                 evt.data.preventDefault();\r
1608                         }, dialog );\r
1609         }\r
1610 \r
1611         function initResizeHandles( dialog )\r
1612         {\r
1613                 var definition = dialog.definition,\r
1614                         minWidth = definition.minWidth || 0,\r
1615                         minHeight = definition.minHeight || 0,\r
1616                         resizable = definition.resizable,\r
1617                         margins = dialog.getParentEditor().skin.margins || [ 0, 0, 0, 0 ];\r
1618 \r
1619                 function topSizer( coords, dy )\r
1620                 {\r
1621                         coords.y += dy;\r
1622                 }\r
1623 \r
1624                 function rightSizer( coords, dx )\r
1625                 {\r
1626                         coords.x2 += dx;\r
1627                 }\r
1628 \r
1629                 function bottomSizer( coords, dy )\r
1630                 {\r
1631                         coords.y2 += dy;\r
1632                 }\r
1633 \r
1634                 function leftSizer( coords, dx )\r
1635                 {\r
1636                         coords.x += dx;\r
1637                 }\r
1638 \r
1639                 var lastCoords = null,\r
1640                         abstractDialogCoords = null,\r
1641                         magnetDistance = dialog._.editor.config.magnetDistance,\r
1642                         parts = [ 'tl', 't', 'tr', 'l', 'r', 'bl', 'b', 'br' ];\r
1643 \r
1644                 function mouseDownHandler( evt )\r
1645                 {\r
1646                         var partName = evt.listenerData.part, size = dialog.getSize();\r
1647                         abstractDialogCoords = dialog.getPosition();\r
1648                         CKEDITOR.tools.extend( abstractDialogCoords,\r
1649                                 {\r
1650                                         x2 : abstractDialogCoords.x + size.width,\r
1651                                         y2 : abstractDialogCoords.y + size.height\r
1652                                 } );\r
1653                         lastCoords = { x : evt.data.$.screenX, y : evt.data.$.screenY };\r
1654 \r
1655                         CKEDITOR.document.on( 'mousemove', mouseMoveHandler, dialog, { part : partName } );\r
1656                         CKEDITOR.document.on( 'mouseup', mouseUpHandler, dialog, { part : partName } );\r
1657 \r
1658                         if ( CKEDITOR.env.ie6Compat )\r
1659                         {\r
1660                                 var coverDoc = currentCover.getChild( 0 ).getFrameDocument();\r
1661                                 coverDoc.on( 'mousemove', mouseMoveHandler, dialog, { part : partName } );\r
1662                                 coverDoc.on( 'mouseup', mouseUpHandler, dialog, { part : partName } );\r
1663                         }\r
1664 \r
1665                         evt.data.preventDefault();\r
1666                 }\r
1667 \r
1668                 function mouseMoveHandler( evt )\r
1669                 {\r
1670                         var x = evt.data.$.screenX,\r
1671                                 y = evt.data.$.screenY,\r
1672                                 dx = x - lastCoords.x,\r
1673                                 dy = y - lastCoords.y,\r
1674                                 viewPaneSize = CKEDITOR.document.getWindow().getViewPaneSize(),\r
1675                                 partName = evt.listenerData.part;\r
1676 \r
1677                         if ( partName.search( 't' ) != -1 )\r
1678                                 topSizer( abstractDialogCoords, dy );\r
1679                         if ( partName.search( 'l' ) != -1 )\r
1680                                 leftSizer( abstractDialogCoords, dx );\r
1681                         if ( partName.search( 'b' ) != -1 )\r
1682                                 bottomSizer( abstractDialogCoords, dy );\r
1683                         if ( partName.search( 'r' ) != -1 )\r
1684                                 rightSizer( abstractDialogCoords, dx );\r
1685 \r
1686                         lastCoords = { x : x, y : y };\r
1687 \r
1688                         var realX, realY, realX2, realY2;\r
1689 \r
1690                         if ( abstractDialogCoords.x + margins[3] < magnetDistance )\r
1691                                 realX = - margins[3];\r
1692                         else if ( partName.search( 'l' ) != -1 && abstractDialogCoords.x2 - abstractDialogCoords.x < minWidth + magnetDistance )\r
1693                                 realX = abstractDialogCoords.x2 - minWidth;\r
1694                         else\r
1695                                 realX = abstractDialogCoords.x;\r
1696 \r
1697                         if ( abstractDialogCoords.y + margins[0] < magnetDistance )\r
1698                                 realY = - margins[0];\r
1699                         else if ( partName.search( 't' ) != -1 && abstractDialogCoords.y2 - abstractDialogCoords.y < minHeight + magnetDistance )\r
1700                                 realY = abstractDialogCoords.y2 - minHeight;\r
1701                         else\r
1702                                 realY = abstractDialogCoords.y;\r
1703 \r
1704                         if ( abstractDialogCoords.x2 - margins[1] > viewPaneSize.width - magnetDistance )\r
1705                                 realX2 = viewPaneSize.width + margins[1] ;\r
1706                         else if ( partName.search( 'r' ) != -1 && abstractDialogCoords.x2 - abstractDialogCoords.x < minWidth + magnetDistance )\r
1707                                 realX2 = abstractDialogCoords.x + minWidth;\r
1708                         else\r
1709                                 realX2 = abstractDialogCoords.x2;\r
1710 \r
1711                         if ( abstractDialogCoords.y2 - margins[2] > viewPaneSize.height - magnetDistance )\r
1712                                 realY2= viewPaneSize.height + margins[2] ;\r
1713                         else if ( partName.search( 'b' ) != -1 && abstractDialogCoords.y2 - abstractDialogCoords.y < minHeight + magnetDistance )\r
1714                                 realY2 = abstractDialogCoords.y + minHeight;\r
1715                         else\r
1716                                 realY2 = abstractDialogCoords.y2 ;\r
1717 \r
1718                         dialog.move( realX, realY );\r
1719                         dialog.resize( realX2 - realX, realY2 - realY );\r
1720 \r
1721                         evt.data.preventDefault();\r
1722                 }\r
1723 \r
1724                 function mouseUpHandler( evt )\r
1725                 {\r
1726                         CKEDITOR.document.removeListener( 'mouseup', mouseUpHandler );\r
1727                         CKEDITOR.document.removeListener( 'mousemove', mouseMoveHandler );\r
1728 \r
1729                         if ( CKEDITOR.env.ie6Compat )\r
1730                         {\r
1731                                 var coverDoc = currentCover.getChild( 0 ).getFrameDocument();\r
1732                                 coverDoc.removeListener( 'mouseup', mouseUpHandler );\r
1733                                 coverDoc.removeListener( 'mousemove', mouseMoveHandler );\r
1734                         }\r
1735                 }\r
1736 \r
1737 // TODO : Simplify the resize logic, having just a single resize grip <div>.\r
1738 //              var widthTest = /[lr]/,\r
1739 //                      heightTest = /[tb]/;\r
1740 //              for ( var i = 0 ; i < parts.length ; i++ )\r
1741 //              {\r
1742 //                      var element = dialog.parts[ parts[i] + '_resize' ];\r
1743 //                      if ( resizable == CKEDITOR.DIALOG_RESIZE_NONE ||\r
1744 //                                      resizable == CKEDITOR.DIALOG_RESIZE_HEIGHT && widthTest.test( parts[i] ) ||\r
1745 //                                      resizable == CKEDITOR.DIALOG_RESIZE_WIDTH && heightTest.test( parts[i] ) )\r
1746 //                      {\r
1747 //                              element.hide();\r
1748 //                              continue;\r
1749 //                      }\r
1750 //                      element.on( 'mousedown', mouseDownHandler, dialog, { part : parts[i] } );\r
1751 //              }\r
1752         }\r
1753 \r
1754         var resizeCover;\r
1755         // Caching resuable covers and allowing only one cover\r
1756         // on screen.\r
1757         var covers = {},\r
1758                 currentCover;\r
1759 \r
1760         function showCover( editor )\r
1761         {\r
1762                 var win = CKEDITOR.document.getWindow();\r
1763                 var backgroundColorStyle = editor.config.dialog_backgroundCoverColor || 'white',\r
1764                         backgroundCoverOpacity = editor.config.dialog_backgroundCoverOpacity,\r
1765                         baseFloatZIndex = editor.config.baseFloatZIndex,\r
1766                         coverKey = CKEDITOR.tools.genKey(\r
1767                                         backgroundColorStyle,\r
1768                                         backgroundCoverOpacity,\r
1769                                         baseFloatZIndex ),\r
1770                         coverElement = covers[ coverKey ];\r
1771 \r
1772                 if ( !coverElement )\r
1773                 {\r
1774                         var html = [\r
1775                                         '<div style="position: ', ( CKEDITOR.env.ie6Compat ? 'absolute' : 'fixed' ),\r
1776                                         '; z-index: ', baseFloatZIndex,\r
1777                                         '; top: 0px; left: 0px; ',\r
1778                                         ( !CKEDITOR.env.ie6Compat ? 'background-color: ' + backgroundColorStyle : '' ),\r
1779                                         '" class="cke_dialog_background_cover">'\r
1780                                 ];\r
1781 \r
1782                         if ( CKEDITOR.env.ie6Compat )\r
1783                         {\r
1784                                 // Support for custom document.domain in IE.\r
1785                                 var isCustomDomain = CKEDITOR.env.isCustomDomain(),\r
1786                                         iframeHtml = '<html><body style=\\\'background-color:' + backgroundColorStyle + ';\\\'></body></html>';\r
1787 \r
1788                                 html.push(\r
1789                                         '<iframe' +\r
1790                                                 ' hidefocus="true"' +\r
1791                                                 ' frameborder="0"' +\r
1792                                                 ' id="cke_dialog_background_iframe"' +\r
1793                                                 ' src="javascript:' );\r
1794 \r
1795                                 html.push( 'void((function(){' +\r
1796                                                                 'document.open();' +\r
1797                                                                 ( isCustomDomain ? 'document.domain=\'' + document.domain + '\';' : '' ) +\r
1798                                                                 'document.write( \'' + iframeHtml + '\' );' +\r
1799                                                                 'document.close();' +\r
1800                                                         '})())' );\r
1801 \r
1802                                 html.push(\r
1803                                                 '"' +\r
1804                                                 ' style="' +\r
1805                                                         'position:absolute;' +\r
1806                                                         'left:0;' +\r
1807                                                         'top:0;' +\r
1808                                                         'width:100%;' +\r
1809                                                         'height: 100%;' +\r
1810                                                         'progid:DXImageTransform.Microsoft.Alpha(opacity=0)">' +\r
1811                                         '</iframe>' );\r
1812                         }\r
1813 \r
1814                         html.push( '</div>' );\r
1815 \r
1816                         coverElement = CKEDITOR.dom.element.createFromHtml( html.join( '' ) );\r
1817                         coverElement.setOpacity( backgroundCoverOpacity != undefined ? backgroundCoverOpacity : 0.5 );\r
1818 \r
1819                         coverElement.appendTo( CKEDITOR.document.getBody() );\r
1820                         covers[ coverKey ] = coverElement;\r
1821                 }\r
1822                 else\r
1823                         coverElement.   show();\r
1824 \r
1825                 currentCover = coverElement;\r
1826                 var resizeFunc = function()\r
1827                 {\r
1828                         var size = win.getViewPaneSize();\r
1829                         coverElement.setStyles(\r
1830                                 {\r
1831                                         width : size.width + 'px',\r
1832                                         height : size.height + 'px'\r
1833                                 } );\r
1834                 };\r
1835 \r
1836                 var scrollFunc = function()\r
1837                 {\r
1838                         var pos = win.getScrollPosition(),\r
1839                                 cursor = CKEDITOR.dialog._.currentTop;\r
1840                         coverElement.setStyles(\r
1841                                         {\r
1842                                                 left : pos.x + 'px',\r
1843                                                 top : pos.y + 'px'\r
1844                                         });\r
1845 \r
1846                         do\r
1847                         {\r
1848                                 var dialogPos = cursor.getPosition();\r
1849                                 cursor.move( dialogPos.x, dialogPos.y );\r
1850                         } while ( ( cursor = cursor._.parentDialog ) );\r
1851                 };\r
1852 \r
1853                 resizeCover = resizeFunc;\r
1854                 win.on( 'resize', resizeFunc );\r
1855                 resizeFunc();\r
1856                 if ( CKEDITOR.env.ie6Compat )\r
1857                 {\r
1858                         // IE BUG: win.$.onscroll assignment doesn't work.. it must be window.onscroll.\r
1859                         // So we need to invent a really funny way to make it work.\r
1860                         var myScrollHandler = function()\r
1861                                 {\r
1862                                         scrollFunc();\r
1863                                         arguments.callee.prevScrollHandler.apply( this, arguments );\r
1864                                 };\r
1865                         win.$.setTimeout( function()\r
1866                                 {\r
1867                                         myScrollHandler.prevScrollHandler = window.onscroll || function(){};\r
1868                                         window.onscroll = myScrollHandler;\r
1869                                 }, 0 );\r
1870                         scrollFunc();\r
1871                 }\r
1872         }\r
1873 \r
1874         function hideCover()\r
1875         {\r
1876                 if ( !currentCover )\r
1877                         return;\r
1878 \r
1879                 var win = CKEDITOR.document.getWindow();\r
1880                 currentCover.hide();\r
1881                 win.removeListener( 'resize', resizeCover );\r
1882 \r
1883                 if ( CKEDITOR.env.ie6Compat )\r
1884                 {\r
1885                         win.$.setTimeout( function()\r
1886                                 {\r
1887                                         var prevScrollHandler = window.onscroll && window.onscroll.prevScrollHandler;\r
1888                                         window.onscroll = prevScrollHandler || null;\r
1889                                 }, 0 );\r
1890                 }\r
1891                 resizeCover = null;\r
1892         }\r
1893 \r
1894         function removeCovers()\r
1895         {\r
1896                 for ( var coverId in covers )\r
1897                         covers[ coverId ].remove();\r
1898                 covers = {};\r
1899         }\r
1900 \r
1901         var accessKeyProcessors = {};\r
1902 \r
1903         var accessKeyDownHandler = function( evt )\r
1904         {\r
1905                 var ctrl = evt.data.$.ctrlKey || evt.data.$.metaKey,\r
1906                         alt = evt.data.$.altKey,\r
1907                         shift = evt.data.$.shiftKey,\r
1908                         key = String.fromCharCode( evt.data.$.keyCode ),\r
1909                         keyProcessor = accessKeyProcessors[( ctrl ? 'CTRL+' : '' ) + ( alt ? 'ALT+' : '') + ( shift ? 'SHIFT+' : '' ) + key];\r
1910 \r
1911                 if ( !keyProcessor || !keyProcessor.length )\r
1912                         return;\r
1913 \r
1914                 keyProcessor = keyProcessor[keyProcessor.length - 1];\r
1915                 keyProcessor.keydown && keyProcessor.keydown.call( keyProcessor.uiElement, keyProcessor.dialog, keyProcessor.key );\r
1916                 evt.data.preventDefault();\r
1917         };\r
1918 \r
1919         var accessKeyUpHandler = function( evt )\r
1920         {\r
1921                 var ctrl = evt.data.$.ctrlKey || evt.data.$.metaKey,\r
1922                         alt = evt.data.$.altKey,\r
1923                         shift = evt.data.$.shiftKey,\r
1924                         key = String.fromCharCode( evt.data.$.keyCode ),\r
1925                         keyProcessor = accessKeyProcessors[( ctrl ? 'CTRL+' : '' ) + ( alt ? 'ALT+' : '') + ( shift ? 'SHIFT+' : '' ) + key];\r
1926 \r
1927                 if ( !keyProcessor || !keyProcessor.length )\r
1928                         return;\r
1929 \r
1930                 keyProcessor = keyProcessor[keyProcessor.length - 1];\r
1931                 if ( keyProcessor.keyup )\r
1932                 {\r
1933                         keyProcessor.keyup.call( keyProcessor.uiElement, keyProcessor.dialog, keyProcessor.key );\r
1934                         evt.data.preventDefault();\r
1935                 }\r
1936         };\r
1937 \r
1938         var registerAccessKey = function( uiElement, dialog, key, downFunc, upFunc )\r
1939         {\r
1940                 var procList = accessKeyProcessors[key] || ( accessKeyProcessors[key] = [] );\r
1941                 procList.push( {\r
1942                                 uiElement : uiElement,\r
1943                                 dialog : dialog,\r
1944                                 key : key,\r
1945                                 keyup : upFunc || uiElement.accessKeyUp,\r
1946                                 keydown : downFunc || uiElement.accessKeyDown\r
1947                         } );\r
1948         };\r
1949 \r
1950         var unregisterAccessKey = function( obj )\r
1951         {\r
1952                 for ( var i in accessKeyProcessors )\r
1953                 {\r
1954                         var list = accessKeyProcessors[i];\r
1955                         for ( var j = list.length - 1 ; j >= 0 ; j-- )\r
1956                         {\r
1957                                 if ( list[j].dialog == obj || list[j].uiElement == obj )\r
1958                                         list.splice( j, 1 );\r
1959                         }\r
1960                         if ( list.length === 0 )\r
1961                                 delete accessKeyProcessors[i];\r
1962                 }\r
1963         };\r
1964 \r
1965         var tabAccessKeyUp = function( dialog, key )\r
1966         {\r
1967                 if ( dialog._.accessKeyMap[key] )\r
1968                         dialog.selectPage( dialog._.accessKeyMap[key] );\r
1969         };\r
1970 \r
1971         var tabAccessKeyDown = function( dialog, key )\r
1972         {\r
1973         };\r
1974 \r
1975         // ESC, ENTER\r
1976         var preventKeyBubblingKeys = { 27 :1, 13 :1 };\r
1977         var preventKeyBubbling = function( e )\r
1978         {\r
1979                 if ( e.data.getKeystroke() in preventKeyBubblingKeys )\r
1980                         e.data.stopPropagation();\r
1981         };\r
1982 \r
1983         (function()\r
1984         {\r
1985                 CKEDITOR.ui.dialog =\r
1986                 {\r
1987                         /**\r
1988                          * The base class of all dialog UI elements.\r
1989                          * @constructor\r
1990                          * @param {CKEDITOR.dialog} dialog Parent dialog object.\r
1991                          * @param {CKEDITOR.dialog.uiElementDefinition} elementDefinition Element\r
1992                          * definition. Accepted fields:\r
1993                          * <ul>\r
1994                          *      <li><strong>id</strong> (Required) The id of the UI element. See {@link\r
1995                          *      CKEDITOR.dialog#getContentElement}</li>\r
1996                          *      <li><strong>type</strong> (Required) The type of the UI element. The\r
1997                          *      value to this field specifies which UI element class will be used to\r
1998                          *      generate the final widget.</li>\r
1999                          *      <li><strong>title</strong> (Optional) The popup tooltip for the UI\r
2000                          *      element.</li>\r
2001                          *      <li><strong>hidden</strong> (Optional) A flag that tells if the element\r
2002                          *      should be initially visible.</li>\r
2003                          *      <li><strong>className</strong> (Optional) Additional CSS class names\r
2004                          *      to add to the UI element. Separated by space.</li>\r
2005                          *      <li><strong>style</strong> (Optional) Additional CSS inline styles\r
2006                          *      to add to the UI element. A semicolon (;) is required after the last\r
2007                          *      style declaration.</li>\r
2008                          *      <li><strong>accessKey</strong> (Optional) The alphanumeric access key\r
2009                          *      for this element. Access keys are automatically prefixed by CTRL.</li>\r
2010                          *      <li><strong>on*</strong> (Optional) Any UI element definition field that\r
2011                          *      starts with <em>on</em> followed immediately by a capital letter and\r
2012                          *      probably more letters is an event handler. Event handlers may be further\r
2013                          *      divided into registered event handlers and DOM event handlers. Please\r
2014                          *      refer to {@link CKEDITOR.ui.dialog.uiElement#registerEvents} and\r
2015                          *      {@link CKEDITOR.ui.dialog.uiElement#eventProcessors} for more\r
2016                          *      information.</li>\r
2017                          * </ul>\r
2018                          * @param {Array} htmlList\r
2019                          * List of HTML code to be added to the dialog's content area.\r
2020                          * @param {Function|String} nodeNameArg\r
2021                          * A function returning a string, or a simple string for the node name for\r
2022                          * the root DOM node. Default is 'div'.\r
2023                          * @param {Function|Object} stylesArg\r
2024                          * A function returning an object, or a simple object for CSS styles applied\r
2025                          * to the DOM node. Default is empty object.\r
2026                          * @param {Function|Object} attributesArg\r
2027                          * A fucntion returning an object, or a simple object for attributes applied\r
2028                          * to the DOM node. Default is empty object.\r
2029                          * @param {Function|String} contentsArg\r
2030                          * A function returning a string, or a simple string for the HTML code inside\r
2031                          * the root DOM node. Default is empty string.\r
2032                          * @example\r
2033                          */\r
2034                         uiElement : function( dialog, elementDefinition, htmlList, nodeNameArg, stylesArg, attributesArg, contentsArg )\r
2035                         {\r
2036                                 if ( arguments.length < 4 )\r
2037                                         return;\r
2038 \r
2039                                 var nodeName = ( nodeNameArg.call ? nodeNameArg( elementDefinition ) : nodeNameArg ) || 'div',\r
2040                                         html = [ '<', nodeName, ' ' ],\r
2041                                         styles = ( stylesArg && stylesArg.call ? stylesArg( elementDefinition ) : stylesArg ) || {},\r
2042                                         attributes = ( attributesArg && attributesArg.call ? attributesArg( elementDefinition ) : attributesArg ) || {},\r
2043                                         innerHTML = ( contentsArg && contentsArg.call ? contentsArg.call( this, dialog, elementDefinition ) : contentsArg ) || '',\r
2044                                         domId = this.domId = attributes.id || CKEDITOR.tools.getNextNumber() + '_uiElement',\r
2045                                         id = this.id = elementDefinition.id,\r
2046                                         i;\r
2047 \r
2048                                 // Set the id, a unique id is required for getElement() to work.\r
2049                                 attributes.id = domId;\r
2050 \r
2051                                 // Set the type and definition CSS class names.\r
2052                                 var classes = {};\r
2053                                 if ( elementDefinition.type )\r
2054                                         classes[ 'cke_dialog_ui_' + elementDefinition.type ] = 1;\r
2055                                 if ( elementDefinition.className )\r
2056                                         classes[ elementDefinition.className ] = 1;\r
2057                                 var attributeClasses = ( attributes['class'] && attributes['class'].split ) ? attributes['class'].split( ' ' ) : [];\r
2058                                 for ( i = 0 ; i < attributeClasses.length ; i++ )\r
2059                                 {\r
2060                                         if ( attributeClasses[i] )\r
2061                                                 classes[ attributeClasses[i] ] = 1;\r
2062                                 }\r
2063                                 var finalClasses = [];\r
2064                                 for ( i in classes )\r
2065                                         finalClasses.push( i );\r
2066                                 attributes['class'] = finalClasses.join( ' ' );\r
2067 \r
2068                                 // Set the popup tooltop.\r
2069                                 if ( elementDefinition.title )\r
2070                                         attributes.title = elementDefinition.title;\r
2071 \r
2072                                 // Write the inline CSS styles.\r
2073                                 var styleStr = ( elementDefinition.style || '' ).split( ';' );\r
2074                                 for ( i in styles )\r
2075                                         styleStr.push( i + ':' + styles[i] );\r
2076                                 if ( elementDefinition.hidden )\r
2077                                         styleStr.push( 'display:none' );\r
2078                                 for ( i = styleStr.length - 1 ; i >= 0 ; i-- )\r
2079                                 {\r
2080                                         if ( styleStr[i] === '' )\r
2081                                                 styleStr.splice( i, 1 );\r
2082                                 }\r
2083                                 if ( styleStr.length > 0 )\r
2084                                         attributes.style = ( attributes.style ? ( attributes.style + '; ' ) : '' ) + styleStr.join( '; ' );\r
2085 \r
2086                                 // Write the attributes.\r
2087                                 for ( i in attributes )\r
2088                                         html.push( i + '="' + CKEDITOR.tools.htmlEncode( attributes[i] ) + '" ');\r
2089 \r
2090                                 // Write the content HTML.\r
2091                                 html.push( '>', innerHTML, '</', nodeName, '>' );\r
2092 \r
2093                                 // Add contents to the parent HTML array.\r
2094                                 htmlList.push( html.join( '' ) );\r
2095 \r
2096                                 ( this._ || ( this._ = {} ) ).dialog = dialog;\r
2097 \r
2098                                 // Override isChanged if it is defined in element definition.\r
2099                                 if ( typeof( elementDefinition.isChanged ) == 'boolean' )\r
2100                                         this.isChanged = function(){ return elementDefinition.isChanged; };\r
2101                                 if ( typeof( elementDefinition.isChanged ) == 'function' )\r
2102                                         this.isChanged = elementDefinition.isChanged;\r
2103 \r
2104                                 // Add events.\r
2105                                 CKEDITOR.event.implementOn( this );\r
2106 \r
2107                                 this.registerEvents( elementDefinition );\r
2108                                 if ( this.accessKeyUp && this.accessKeyDown && elementDefinition.accessKey )\r
2109                                         registerAccessKey( this, dialog, 'CTRL+' + elementDefinition.accessKey );\r
2110 \r
2111                                 var me = this;\r
2112                                 dialog.on( 'load', function()\r
2113                                         {\r
2114                                                 if ( me.getInputElement() )\r
2115                                                 {\r
2116                                                         me.getInputElement().on( 'focus', function()\r
2117                                                                 {\r
2118                                                                         dialog._.tabBarMode = false;\r
2119                                                                         dialog._.hasFocus = true;\r
2120                                                                         me.fire( 'focus' );\r
2121                                                                 }, me );\r
2122                                                 }\r
2123                                         } );\r
2124 \r
2125                                 // Register the object as a tab focus if it can be included.\r
2126                                 if ( this.keyboardFocusable )\r
2127                                 {\r
2128                                         this.tabIndex = elementDefinition.tabIndex || 0;\r
2129 \r
2130                                         this.focusIndex = dialog._.focusList.push( this ) - 1;\r
2131                                         this.on( 'focus', function()\r
2132                                                 {\r
2133                                                         dialog._.currentFocusIndex = me.focusIndex;\r
2134                                                 } );\r
2135                                 }\r
2136 \r
2137                                 // Completes this object with everything we have in the\r
2138                                 // definition.\r
2139                                 CKEDITOR.tools.extend( this, elementDefinition );\r
2140                         },\r
2141 \r
2142                         /**\r
2143                          * Horizontal layout box for dialog UI elements, auto-expends to available width of container.\r
2144                          * @constructor\r
2145                          * @extends CKEDITOR.ui.dialog.uiElement\r
2146                          * @param {CKEDITOR.dialog} dialog\r
2147                          * Parent dialog object.\r
2148                          * @param {Array} childObjList\r
2149                          * Array of {@link CKEDITOR.ui.dialog.uiElement} objects inside this\r
2150                          * container.\r
2151                          * @param {Array} childHtmlList\r
2152                          * Array of HTML code that correspond to the HTML output of all the\r
2153                          * objects in childObjList.\r
2154                          * @param {Array} htmlList\r
2155                          * Array of HTML code that this element will output to.\r
2156                          * @param {CKEDITOR.dialog.uiElementDefinition} elementDefinition\r
2157                          * The element definition. Accepted fields:\r
2158                          * <ul>\r
2159                          *      <li><strong>widths</strong> (Optional) The widths of child cells.</li>\r
2160                          *      <li><strong>height</strong> (Optional) The height of the layout.</li>\r
2161                          *      <li><strong>padding</strong> (Optional) The padding width inside child\r
2162                          *       cells.</li>\r
2163                          *      <li><strong>align</strong> (Optional) The alignment of the whole layout\r
2164                          *      </li>\r
2165                          * </ul>\r
2166                          * @example\r
2167                          */\r
2168                         hbox : function( dialog, childObjList, childHtmlList, htmlList, elementDefinition )\r
2169                         {\r
2170                                 if ( arguments.length < 4 )\r
2171                                         return;\r
2172 \r
2173                                 this._ || ( this._ = {} );\r
2174 \r
2175                                 var children = this._.children = childObjList,\r
2176                                         widths = elementDefinition && elementDefinition.widths || null,\r
2177                                         height = elementDefinition && elementDefinition.height || null,\r
2178                                         styles = {},\r
2179                                         i;\r
2180                                 /** @ignore */\r
2181                                 var innerHTML = function()\r
2182                                 {\r
2183                                         var html = [ '<tbody><tr class="cke_dialog_ui_hbox">' ];\r
2184                                         for ( i = 0 ; i < childHtmlList.length ; i++ )\r
2185                                         {\r
2186                                                 var className = 'cke_dialog_ui_hbox_child',\r
2187                                                         styles = [];\r
2188                                                 if ( i === 0 )\r
2189                                                         className = 'cke_dialog_ui_hbox_first';\r
2190                                                 if ( i == childHtmlList.length - 1 )\r
2191                                                         className = 'cke_dialog_ui_hbox_last';\r
2192                                                 html.push( '<td class="', className, '" role="presentation" ' );\r
2193                                                 if ( widths )\r
2194                                                 {\r
2195                                                         if ( widths[i] )\r
2196                                                                 styles.push( 'width:' + CKEDITOR.tools.cssLength( widths[i] ) );\r
2197                                                 }\r
2198                                                 else\r
2199                                                         styles.push( 'width:' + Math.floor( 100 / childHtmlList.length ) + '%' );\r
2200                                                 if ( height )\r
2201                                                         styles.push( 'height:' + CKEDITOR.tools.cssLength( height ) );\r
2202                                                 if ( elementDefinition && elementDefinition.padding != undefined )\r
2203                                                         styles.push( 'padding:' + CKEDITOR.tools.cssLength( elementDefinition.padding ) );\r
2204                                                 if ( styles.length > 0 )\r
2205                                                         html.push( 'style="' + styles.join('; ') + '" ' );\r
2206                                                 html.push( '>', childHtmlList[i], '</td>' );\r
2207                                         }\r
2208                                         html.push( '</tr></tbody>' );\r
2209                                         return html.join( '' );\r
2210                                 };\r
2211 \r
2212                                 var attribs = { role : 'presentation' };\r
2213                                 elementDefinition && elementDefinition.align && ( attribs.align = elementDefinition.align );\r
2214 \r
2215                                 CKEDITOR.ui.dialog.uiElement.call(\r
2216                                         this,\r
2217                                         dialog,\r
2218                                         elementDefinition || { type : 'hbox' },\r
2219                                         htmlList,\r
2220                                         'table',\r
2221                                         styles,\r
2222                                         attribs,\r
2223                                         innerHTML );\r
2224                         },\r
2225 \r
2226                         /**\r
2227                          * Vertical layout box for dialog UI elements.\r
2228                          * @constructor\r
2229                          * @extends CKEDITOR.ui.dialog.hbox\r
2230                          * @param {CKEDITOR.dialog} dialog\r
2231                          * Parent dialog object.\r
2232                          * @param {Array} childObjList\r
2233                          * Array of {@link CKEDITOR.ui.dialog.uiElement} objects inside this\r
2234                          * container.\r
2235                          * @param {Array} childHtmlList\r
2236                          * Array of HTML code that correspond to the HTML output of all the\r
2237                          * objects in childObjList.\r
2238                          * @param {Array} htmlList\r
2239                          * Array of HTML code that this element will output to.\r
2240                          * @param {CKEDITOR.dialog.uiElementDefinition} elementDefinition\r
2241                          * The element definition. Accepted fields:\r
2242                          * <ul>\r
2243                          *      <li><strong>width</strong> (Optional) The width of the layout.</li>\r
2244                          *      <li><strong>heights</strong> (Optional) The heights of individual cells.\r
2245                          *      </li>\r
2246                          *      <li><strong>align</strong> (Optional) The alignment of the layout.</li>\r
2247                          *      <li><strong>padding</strong> (Optional) The padding width inside child\r
2248                          *      cells.</li>\r
2249                          *      <li><strong>expand</strong> (Optional) Whether the layout should expand\r
2250                          *      vertically to fill its container.</li>\r
2251                          * </ul>\r
2252                          * @example\r
2253                          */\r
2254                         vbox : function( dialog, childObjList, childHtmlList, htmlList, elementDefinition )\r
2255                         {\r
2256                                 if (arguments.length < 3 )\r
2257                                         return;\r
2258 \r
2259                                 this._ || ( this._ = {} );\r
2260 \r
2261                                 var children = this._.children = childObjList,\r
2262                                         width = elementDefinition && elementDefinition.width || null,\r
2263                                         heights = elementDefinition && elementDefinition.heights || null;\r
2264                                 /** @ignore */\r
2265                                 var innerHTML = function()\r
2266                                 {\r
2267                                         var html = [ '<table role="presentation" cellspacing="0" border="0" ' ];\r
2268                                         html.push( 'style="' );\r
2269                                         if ( elementDefinition && elementDefinition.expand )\r
2270                                                 html.push( 'height:100%;' );\r
2271                                         html.push( 'width:' + CKEDITOR.tools.cssLength( width || '100%' ), ';' );\r
2272                                         html.push( '"' );\r
2273                                         html.push( 'align="', CKEDITOR.tools.htmlEncode(\r
2274                                                 ( elementDefinition && elementDefinition.align ) || ( dialog.getParentEditor().lang.dir == 'ltr' ? 'left' : 'right' ) ), '" ' );\r
2275 \r
2276                                         html.push( '><tbody>' );\r
2277                                         for ( var i = 0 ; i < childHtmlList.length ; i++ )\r
2278                                         {\r
2279                                                 var styles = [];\r
2280                                                 html.push( '<tr><td role="presentation" ' );\r
2281                                                 if ( width )\r
2282                                                         styles.push( 'width:' + CKEDITOR.tools.cssLength( width || '100%' ) );\r
2283                                                 if ( heights )\r
2284                                                         styles.push( 'height:' + CKEDITOR.tools.cssLength( heights[i] ) );\r
2285                                                 else if ( elementDefinition && elementDefinition.expand )\r
2286                                                         styles.push( 'height:' + Math.floor( 100 / childHtmlList.length ) + '%' );\r
2287                                                 if ( elementDefinition && elementDefinition.padding != undefined )\r
2288                                                         styles.push( 'padding:' + CKEDITOR.tools.cssLength( elementDefinition.padding ) );\r
2289                                                 if ( styles.length > 0 )\r
2290                                                         html.push( 'style="', styles.join( '; ' ), '" ' );\r
2291                                                 html.push( ' class="cke_dialog_ui_vbox_child">', childHtmlList[i], '</td></tr>' );\r
2292                                         }\r
2293                                         html.push( '</tbody></table>' );\r
2294                                         return html.join( '' );\r
2295                                 };\r
2296                                 CKEDITOR.ui.dialog.uiElement.call( this, dialog, elementDefinition || { type : 'vbox' }, htmlList, 'div', null, { role : 'presentation' }, innerHTML );\r
2297                         }\r
2298                 };\r
2299         })();\r
2300 \r
2301         CKEDITOR.ui.dialog.uiElement.prototype =\r
2302         {\r
2303                 /**\r
2304                  * Gets the root DOM element of this dialog UI object.\r
2305                  * @returns {CKEDITOR.dom.element} Root DOM element of UI object.\r
2306                  * @example\r
2307                  * uiElement.getElement().hide();\r
2308                  */\r
2309                 getElement : function()\r
2310                 {\r
2311                         return CKEDITOR.document.getById( this.domId );\r
2312                 },\r
2313 \r
2314                 /**\r
2315                  * Gets the DOM element that the user inputs values.\r
2316                  * This function is used by setValue(), getValue() and focus(). It should\r
2317                  * be overrided in child classes where the input element isn't the root\r
2318                  * element.\r
2319                  * @returns {CKEDITOR.dom.element} The element where the user input values.\r
2320                  * @example\r
2321                  * var rawValue = textInput.getInputElement().$.value;\r
2322                  */\r
2323                 getInputElement : function()\r
2324                 {\r
2325                         return this.getElement();\r
2326                 },\r
2327 \r
2328                 /**\r
2329                  * Gets the parent dialog object containing this UI element.\r
2330                  * @returns {CKEDITOR.dialog} Parent dialog object.\r
2331                  * @example\r
2332                  * var dialog = uiElement.getDialog();\r
2333                  */\r
2334                 getDialog : function()\r
2335                 {\r
2336                         return this._.dialog;\r
2337                 },\r
2338 \r
2339                 /**\r
2340                  * Sets the value of this dialog UI object.\r
2341                  * @param {Object} value The new value.\r
2342                  * @returns {CKEDITOR.dialog.uiElement} The current UI element.\r
2343                  * @example\r
2344                  * uiElement.setValue( 'Dingo' );\r
2345                  */\r
2346                 setValue : function( value )\r
2347                 {\r
2348                         this.getInputElement().setValue( value );\r
2349                         this.fire( 'change', { value : value } );\r
2350                         return this;\r
2351                 },\r
2352 \r
2353                 /**\r
2354                  * Gets the current value of this dialog UI object.\r
2355                  * @returns {Object} The current value.\r
2356                  * @example\r
2357                  * var myValue = uiElement.getValue();\r
2358                  */\r
2359                 getValue : function()\r
2360                 {\r
2361                         return this.getInputElement().getValue();\r
2362                 },\r
2363 \r
2364                 /**\r
2365                  * Tells whether the UI object's value has changed.\r
2366                  * @returns {Boolean} true if changed, false if not changed.\r
2367                  * @example\r
2368                  * if ( uiElement.isChanged() )\r
2369                  * &nbsp;&nbsp;confirm( 'Value changed! Continue?' );\r
2370                  */\r
2371                 isChanged : function()\r
2372                 {\r
2373                         // Override in input classes.\r
2374                         return false;\r
2375                 },\r
2376 \r
2377                 /**\r
2378                  * Selects the parent tab of this element. Usually called by focus() or overridden focus() methods.\r
2379                  * @returns {CKEDITOR.dialog.uiElement} The current UI element.\r
2380                  * @example\r
2381                  * focus : function()\r
2382                  * {\r
2383                  *              this.selectParentTab();\r
2384                  *              // do something else.\r
2385                  * }\r
2386                  */\r
2387                 selectParentTab : function()\r
2388                 {\r
2389                         var element = this.getInputElement(),\r
2390                                 cursor = element,\r
2391                                 tabId;\r
2392                         while ( ( cursor = cursor.getParent() ) && cursor.$.className.search( 'cke_dialog_page_contents' ) == -1 )\r
2393                         { /*jsl:pass*/ }\r
2394 \r
2395                         // Some widgets don't have parent tabs (e.g. OK and Cancel buttons).\r
2396                         if ( !cursor )\r
2397                                 return this;\r
2398 \r
2399                         tabId = cursor.getAttribute( 'name' );\r
2400                         // Avoid duplicate select.\r
2401                         if ( this._.dialog._.currentTabId != tabId )\r
2402                                 this._.dialog.selectPage( tabId );\r
2403                         return this;\r
2404                 },\r
2405 \r
2406                 /**\r
2407                  * Puts the focus to the UI object. Switches tabs if the UI object isn't in the active tab page.\r
2408                  * @returns {CKEDITOR.dialog.uiElement} The current UI element.\r
2409                  * @example\r
2410                  * uiElement.focus();\r
2411                  */\r
2412                 focus : function()\r
2413                 {\r
2414                         this.selectParentTab().getInputElement().focus();\r
2415                         return this;\r
2416                 },\r
2417 \r
2418                 /**\r
2419                  * Registers the on* event handlers defined in the element definition.\r
2420                  * The default behavior of this function is:\r
2421                  * <ol>\r
2422                  *  <li>\r
2423                  *      If the on* event is defined in the class's eventProcesors list,\r
2424                  *      then the registration is delegated to the corresponding function\r
2425                  *      in the eventProcessors list.\r
2426                  *  </li>\r
2427                  *  <li>\r
2428                  *      If the on* event is not defined in the eventProcessors list, then\r
2429                  *      register the event handler under the corresponding DOM event of\r
2430                  *      the UI element's input DOM element (as defined by the return value\r
2431                  *      of {@link CKEDITOR.ui.dialog.uiElement#getInputElement}).\r
2432                  *  </li>\r
2433                  * </ol>\r
2434                  * This function is only called at UI element instantiation, but can\r
2435                  * be overridded in child classes if they require more flexibility.\r
2436                  * @param {CKEDITOR.dialog.uiElementDefinition} definition The UI element\r
2437                  * definition.\r
2438                  * @returns {CKEDITOR.dialog.uiElement} The current UI element.\r
2439                  * @example\r
2440                  */\r
2441                 registerEvents : function( definition )\r
2442                 {\r
2443                         var regex = /^on([A-Z]\w+)/,\r
2444                                 match;\r
2445 \r
2446                         var registerDomEvent = function( uiElement, dialog, eventName, func )\r
2447                         {\r
2448                                 dialog.on( 'load', function()\r
2449                                 {\r
2450                                         uiElement.getInputElement().on( eventName, func, uiElement );\r
2451                                 });\r
2452                         };\r
2453 \r
2454                         for ( var i in definition )\r
2455                         {\r
2456                                 if ( !( match = i.match( regex ) ) )\r
2457                                         continue;\r
2458                                 if ( this.eventProcessors[i] )\r
2459                                         this.eventProcessors[i].call( this, this._.dialog, definition[i] );\r
2460                                 else\r
2461                                         registerDomEvent( this, this._.dialog, match[1].toLowerCase(), definition[i] );\r
2462                         }\r
2463 \r
2464                         return this;\r
2465                 },\r
2466 \r
2467                 /**\r
2468                  * The event processor list used by\r
2469                  * {@link CKEDITOR.ui.dialog.uiElement#getInputElement} at UI element\r
2470                  * instantiation. The default list defines three on* events:\r
2471                  * <ol>\r
2472                  *  <li>onLoad - Called when the element's parent dialog opens for the\r
2473                  *  first time</li>\r
2474                  *  <li>onShow - Called whenever the element's parent dialog opens.</li>\r
2475                  *  <li>onHide - Called whenever the element's parent dialog closes.</li>\r
2476                  * </ol>\r
2477                  * @field\r
2478                  * @type Object\r
2479                  * @example\r
2480                  * // This connects the 'click' event in CKEDITOR.ui.dialog.button to onClick\r
2481                  * // handlers in the UI element's definitions.\r
2482                  * CKEDITOR.ui.dialog.button.eventProcessors = CKEDITOR.tools.extend( {},\r
2483                  * &nbsp;&nbsp;CKEDITOR.ui.dialog.uiElement.prototype.eventProcessors,\r
2484                  * &nbsp;&nbsp;{ onClick : function( dialog, func ) { this.on( 'click', func ); } },\r
2485                  * &nbsp;&nbsp;true );\r
2486                  */\r
2487                 eventProcessors :\r
2488                 {\r
2489                         onLoad : function( dialog, func )\r
2490                         {\r
2491                                 dialog.on( 'load', func, this );\r
2492                         },\r
2493 \r
2494                         onShow : function( dialog, func )\r
2495                         {\r
2496                                 dialog.on( 'show', func, this );\r
2497                         },\r
2498 \r
2499                         onHide : function( dialog, func )\r
2500                         {\r
2501                                 dialog.on( 'hide', func, this );\r
2502                         }\r
2503                 },\r
2504 \r
2505                 /**\r
2506                  * The default handler for a UI element's access key down event, which\r
2507                  * tries to put focus to the UI element.<br />\r
2508                  * Can be overridded in child classes for more sophisticaed behavior.\r
2509                  * @param {CKEDITOR.dialog} dialog The parent dialog object.\r
2510                  * @param {String} key The key combination pressed. Since access keys\r
2511                  * are defined to always include the CTRL key, its value should always\r
2512                  * include a 'CTRL+' prefix.\r
2513                  * @example\r
2514                  */\r
2515                 accessKeyDown : function( dialog, key )\r
2516                 {\r
2517                         this.focus();\r
2518                 },\r
2519 \r
2520                 /**\r
2521                  * The default handler for a UI element's access key up event, which\r
2522                  * does nothing.<br />\r
2523                  * Can be overridded in child classes for more sophisticated behavior.\r
2524                  * @param {CKEDITOR.dialog} dialog The parent dialog object.\r
2525                  * @param {String} key The key combination pressed. Since access keys\r
2526                  * are defined to always include the CTRL key, its value should always\r
2527                  * include a 'CTRL+' prefix.\r
2528                  * @example\r
2529                  */\r
2530                 accessKeyUp : function( dialog, key )\r
2531                 {\r
2532                 },\r
2533 \r
2534                 /**\r
2535                  * Disables a UI element.\r
2536                  * @example\r
2537                  */\r
2538                 disable : function()\r
2539                 {\r
2540                         var element = this.getInputElement();\r
2541                         element.setAttribute( 'disabled', 'true' );\r
2542                         element.addClass( 'cke_disabled' );\r
2543                 },\r
2544 \r
2545                 /**\r
2546                  * Enables a UI element.\r
2547                  * @example\r
2548                  */\r
2549                 enable : function()\r
2550                 {\r
2551                         var element = this.getInputElement();\r
2552                         element.removeAttribute( 'disabled' );\r
2553                         element.removeClass( 'cke_disabled' );\r
2554                 },\r
2555 \r
2556                 /**\r
2557                  * Determines whether an UI element is enabled or not.\r
2558                  * @returns {Boolean} Whether the UI element is enabled.\r
2559                  * @example\r
2560                  */\r
2561                 isEnabled : function()\r
2562                 {\r
2563                         return !this.getInputElement().getAttribute( 'disabled' );\r
2564                 },\r
2565 \r
2566                 /**\r
2567                  * Determines whether an UI element is visible or not.\r
2568                  * @returns {Boolean} Whether the UI element is visible.\r
2569                  * @example\r
2570                  */\r
2571                 isVisible : function()\r
2572                 {\r
2573                         return this.getInputElement().isVisible();\r
2574                 },\r
2575 \r
2576                 /**\r
2577                  * Determines whether an UI element is focus-able or not.\r
2578                  * Focus-able is defined as being both visible and enabled.\r
2579                  * @returns {Boolean} Whether the UI element can be focused.\r
2580                  * @example\r
2581                  */\r
2582                 isFocusable : function()\r
2583                 {\r
2584                         if ( !this.isEnabled() || !this.isVisible() )\r
2585                                 return false;\r
2586                         return true;\r
2587                 }\r
2588         };\r
2589 \r
2590         CKEDITOR.ui.dialog.hbox.prototype = CKEDITOR.tools.extend( new CKEDITOR.ui.dialog.uiElement,\r
2591                 /**\r
2592                  * @lends CKEDITOR.ui.dialog.hbox.prototype\r
2593                  */\r
2594                 {\r
2595                         /**\r
2596                          * Gets a child UI element inside this container.\r
2597                          * @param {Array|Number} indices An array or a single number to indicate the child's\r
2598                          * position in the container's descendant tree. Omit to get all the children in an array.\r
2599                          * @returns {Array|CKEDITOR.ui.dialog.uiElement} Array of all UI elements in the container\r
2600                          * if no argument given, or the specified UI element if indices is given.\r
2601                          * @example\r
2602                          * var checkbox = hbox.getChild( [0,1] );\r
2603                          * checkbox.setValue( true );\r
2604                          */\r
2605                         getChild : function( indices )\r
2606                         {\r
2607                                 // If no arguments, return a clone of the children array.\r
2608                                 if ( arguments.length < 1 )\r
2609                                         return this._.children.concat();\r
2610 \r
2611                                 // If indices isn't array, make it one.\r
2612                                 if ( !indices.splice )\r
2613                                         indices = [ indices ];\r
2614 \r
2615                                 // Retrieve the child element according to tree position.\r
2616                                 if ( indices.length < 2 )\r
2617                                         return this._.children[ indices[0] ];\r
2618                                 else\r
2619                                         return ( this._.children[ indices[0] ] && this._.children[ indices[0] ].getChild ) ?\r
2620                                                 this._.children[ indices[0] ].getChild( indices.slice( 1, indices.length ) ) :\r
2621                                                 null;\r
2622                         }\r
2623                 }, true );\r
2624 \r
2625         CKEDITOR.ui.dialog.vbox.prototype = new CKEDITOR.ui.dialog.hbox();\r
2626 \r
2627 \r
2628 \r
2629         (function()\r
2630         {\r
2631                 var commonBuilder = {\r
2632                         build : function( dialog, elementDefinition, output )\r
2633                         {\r
2634                                 var children = elementDefinition.children,\r
2635                                         child,\r
2636                                         childHtmlList = [],\r
2637                                         childObjList = [];\r
2638                                 for ( var i = 0 ; ( i < children.length && ( child = children[i] ) ) ; i++ )\r
2639                                 {\r
2640                                         var childHtml = [];\r
2641                                         childHtmlList.push( childHtml );\r
2642                                         childObjList.push( CKEDITOR.dialog._.uiElementBuilders[ child.type ].build( dialog, child, childHtml ) );\r
2643                                 }\r
2644                                 return new CKEDITOR.ui.dialog[elementDefinition.type]( dialog, childObjList, childHtmlList, output, elementDefinition );\r
2645                         }\r
2646                 };\r
2647 \r
2648                 CKEDITOR.dialog.addUIElement( 'hbox', commonBuilder );\r
2649                 CKEDITOR.dialog.addUIElement( 'vbox', commonBuilder );\r
2650         })();\r
2651 \r
2652         /**\r
2653          * Generic dialog command. It opens a specific dialog when executed.\r
2654          * @constructor\r
2655          * @augments CKEDITOR.commandDefinition\r
2656          * @param {string} dialogName The name of the dialog to open when executing\r
2657          *              this command.\r
2658          * @example\r
2659          * // Register the "link" command, which opens the "link" dialog.\r
2660          * editor.addCommand( 'link', <b>new CKEDITOR.dialogCommand( 'link' )</b> );\r
2661          */\r
2662         CKEDITOR.dialogCommand = function( dialogName )\r
2663         {\r
2664                 this.dialogName = dialogName;\r
2665         };\r
2666 \r
2667         CKEDITOR.dialogCommand.prototype =\r
2668         {\r
2669                 /** @ignore */\r
2670                 exec : function( editor )\r
2671                 {\r
2672                         editor.openDialog( this.dialogName );\r
2673                 },\r
2674 \r
2675                 // Dialog commands just open a dialog ui, thus require no undo logic,\r
2676                 // undo support should dedicate to specific dialog implementation.\r
2677                 canUndo: false,\r
2678 \r
2679                 editorFocus : CKEDITOR.env.ie || CKEDITOR.env.webkit\r
2680         };\r
2681 \r
2682         (function()\r
2683         {\r
2684                 var notEmptyRegex = /^([a]|[^a])+$/,\r
2685                         integerRegex = /^\d*$/,\r
2686                         numberRegex = /^\d*(?:\.\d+)?$/;\r
2687 \r
2688                 CKEDITOR.VALIDATE_OR = 1;\r
2689                 CKEDITOR.VALIDATE_AND = 2;\r
2690 \r
2691                 CKEDITOR.dialog.validate =\r
2692                 {\r
2693                         functions : function()\r
2694                         {\r
2695                                 return function()\r
2696                                 {\r
2697                                         /**\r
2698                                          * It's important for validate functions to be able to accept the value\r
2699                                          * as argument in addition to this.getValue(), so that it is possible to\r
2700                                          * combine validate functions together to make more sophisticated\r
2701                                          * validators.\r
2702                                          */\r
2703                                         var value = this && this.getValue ? this.getValue() : arguments[0];\r
2704 \r
2705                                         var msg = undefined,\r
2706                                                 relation = CKEDITOR.VALIDATE_AND,\r
2707                                                 functions = [], i;\r
2708 \r
2709                                         for ( i = 0 ; i < arguments.length ; i++ )\r
2710                                         {\r
2711                                                 if ( typeof( arguments[i] ) == 'function' )\r
2712                                                         functions.push( arguments[i] );\r
2713                                                 else\r
2714                                                         break;\r
2715                                         }\r
2716 \r
2717                                         if ( i < arguments.length && typeof( arguments[i] ) == 'string' )\r
2718                                         {\r
2719                                                 msg = arguments[i];\r
2720                                                 i++;\r
2721                                         }\r
2722 \r
2723                                         if ( i < arguments.length && typeof( arguments[i]) == 'number' )\r
2724                                                 relation = arguments[i];\r
2725 \r
2726                                         var passed = ( relation == CKEDITOR.VALIDATE_AND ? true : false );\r
2727                                         for ( i = 0 ; i < functions.length ; i++ )\r
2728                                         {\r
2729                                                 if ( relation == CKEDITOR.VALIDATE_AND )\r
2730                                                         passed = passed && functions[i]( value );\r
2731                                                 else\r
2732                                                         passed = passed || functions[i]( value );\r
2733                                         }\r
2734 \r
2735                                         if ( !passed )\r
2736                                         {\r
2737                                                 if ( msg !== undefined )\r
2738                                                         alert( msg );\r
2739                                                 if ( this && ( this.select || this.focus ) )\r
2740                                                         ( this.select || this.focus )();\r
2741                                                 return false;\r
2742                                         }\r
2743 \r
2744                                         return true;\r
2745                                 };\r
2746                         },\r
2747 \r
2748                         regex : function( regex, msg )\r
2749                         {\r
2750                                 /*\r
2751                                  * Can be greatly shortened by deriving from functions validator if code size\r
2752                                  * turns out to be more important than performance.\r
2753                                  */\r
2754                                 return function()\r
2755                                 {\r
2756                                         var value = this && this.getValue ? this.getValue() : arguments[0];\r
2757                                         if ( !regex.test( value ) )\r
2758                                         {\r
2759                                                 if ( msg !== undefined )\r
2760                                                         alert( msg );\r
2761                                                 if ( this && ( this.select || this.focus ) )\r
2762                                                 {\r
2763                                                         if ( this.select )\r
2764                                                                 this.select();\r
2765                                                         else\r
2766                                                                 this.focus();\r
2767                                                 }\r
2768                                                 return false;\r
2769                                         }\r
2770                                         return true;\r
2771                                 };\r
2772                         },\r
2773 \r
2774                         notEmpty : function( msg )\r
2775                         {\r
2776                                 return this.regex( notEmptyRegex, msg );\r
2777                         },\r
2778 \r
2779                         integer : function( msg )\r
2780                         {\r
2781                                 return this.regex( integerRegex, msg );\r
2782                         },\r
2783 \r
2784                         'number' : function( msg )\r
2785                         {\r
2786                                 return this.regex( numberRegex, msg );\r
2787                         },\r
2788 \r
2789                         equals : function( value, msg )\r
2790                         {\r
2791                                 return this.functions( function( val ){ return val == value; }, msg );\r
2792                         },\r
2793 \r
2794                         notEqual : function( value, msg )\r
2795                         {\r
2796                                 return this.functions( function( val ){ return val != value; }, msg );\r
2797                         }\r
2798                 };\r
2799 \r
2800         CKEDITOR.on( 'instanceDestroyed', function( evt )\r
2801         {\r
2802                 // Remove dialog cover on last instance destroy.\r
2803                 if ( CKEDITOR.tools.isEmpty( CKEDITOR.instances ) )\r
2804                 {\r
2805                         var currentTopDialog;\r
2806                         while ( ( currentTopDialog = CKEDITOR.dialog._.currentTop ) )\r
2807                                 currentTopDialog.hide();\r
2808                         removeCovers();\r
2809                 }\r
2810 \r
2811                 var dialogs = evt.editor._.storedDialogs;\r
2812                 for ( var name in dialogs )\r
2813                         dialogs[ name ].destroy();\r
2814 \r
2815         });\r
2816 \r
2817         })();\r
2818 })();\r
2819 \r
2820 // Extend the CKEDITOR.editor class with dialog specific functions.\r
2821 CKEDITOR.tools.extend( CKEDITOR.editor.prototype,\r
2822         /** @lends CKEDITOR.editor.prototype */\r
2823         {\r
2824                 /**\r
2825                  * Loads and opens a registered dialog.\r
2826                  * @param {String} dialogName The registered name of the dialog.\r
2827                  * @param {Function} callback The function to be invoked after dialog instance created.\r
2828                  * @see CKEDITOR.dialog.add\r
2829                  * @example\r
2830                  * CKEDITOR.instances.editor1.openDialog( 'smiley' );\r
2831                  * @returns {CKEDITOR.dialog} The dialog object corresponding to the dialog displayed. null if the dialog name is not registered.\r
2832                  */\r
2833                 openDialog : function( dialogName, callback )\r
2834                 {\r
2835                         var dialogDefinitions = CKEDITOR.dialog._.dialogDefinitions[ dialogName ],\r
2836                                         dialogSkin = this.skin.dialog;\r
2837 \r
2838                         // If the dialogDefinition is already loaded, open it immediately.\r
2839                         if ( typeof dialogDefinitions == 'function' && dialogSkin._isLoaded )\r
2840                         {\r
2841                                 var storedDialogs = this._.storedDialogs ||\r
2842                                         ( this._.storedDialogs = {} );\r
2843 \r
2844                                 var dialog = storedDialogs[ dialogName ] ||\r
2845                                         ( storedDialogs[ dialogName ] = new CKEDITOR.dialog( this, dialogName ) );\r
2846 \r
2847                                 callback && callback.call( dialog, dialog );\r
2848                                 dialog.show();\r
2849 \r
2850                                 return dialog;\r
2851                         }\r
2852                         else if ( dialogDefinitions == 'failed' )\r
2853                                 throw new Error( '[CKEDITOR.dialog.openDialog] Dialog "' + dialogName + '" failed when loading definition.' );\r
2854 \r
2855                         // Not loaded? Load the .js file first.\r
2856                         var body = CKEDITOR.document.getBody(),\r
2857                                 cursor = body.$.style.cursor,\r
2858                                 me = this;\r
2859 \r
2860                         body.setStyle( 'cursor', 'wait' );\r
2861 \r
2862                         function onDialogFileLoaded( success )\r
2863                         {\r
2864                                 var dialogDefinition = CKEDITOR.dialog._.dialogDefinitions[ dialogName ],\r
2865                                                 skin = me.skin.dialog;\r
2866 \r
2867                                 // Check if both skin part and definition is loaded.\r
2868                                 if ( !skin._isLoaded || loadDefinition && typeof success == 'undefined' )\r
2869                                         return;\r
2870 \r
2871                                 // In case of plugin error, mark it as loading failed.\r
2872                                 if ( typeof dialogDefinition != 'function' )\r
2873                                         CKEDITOR.dialog._.dialogDefinitions[ dialogName ] = 'failed';\r
2874 \r
2875                                 me.openDialog( dialogName, callback );\r
2876                                 body.setStyle( 'cursor', cursor );\r
2877                         }\r
2878 \r
2879                         if ( typeof dialogDefinitions == 'string' )\r
2880                         {\r
2881                                 var loadDefinition = 1;\r
2882                                 CKEDITOR.scriptLoader.load( CKEDITOR.getUrl( dialogDefinitions ), onDialogFileLoaded );\r
2883                         }\r
2884 \r
2885                         CKEDITOR.skins.load( this, 'dialog', onDialogFileLoaded );\r
2886 \r
2887                         return null;\r
2888                 }\r
2889         });\r
2890 \r
2891 CKEDITOR.plugins.add( 'dialog',\r
2892         {\r
2893                 requires : [ 'dialogui' ]\r
2894         });\r
2895 \r
2896 // Dialog related configurations.\r
2897 \r
2898 /**\r
2899  * The color of the dialog background cover. It should be a valid CSS color\r
2900  * string.\r
2901  * @name CKEDITOR.config.dialog_backgroundCoverColor\r
2902  * @type String\r
2903  * @default 'white'\r
2904  * @example\r
2905  * config.dialog_backgroundCoverColor = 'rgb(255, 254, 253)';\r
2906  */\r
2907 \r
2908 /**\r
2909  * The opacity of the dialog background cover. It should be a number within the\r
2910  * range [0.0, 1.0].\r
2911  * @name CKEDITOR.config.dialog_backgroundCoverOpacity\r
2912  * @type Number\r
2913  * @default 0.5\r
2914  * @example\r
2915  * config.dialog_backgroundCoverOpacity = 0.7;\r
2916  */\r
2917 \r
2918 /**\r
2919  * If the dialog has more than one tab, put focus into the first tab as soon as dialog is opened.\r
2920  * @name CKEDITOR.config.dialog_startupFocusTab\r
2921  * @type Boolean\r
2922  * @default false\r
2923  * @example\r
2924  * config.dialog_startupFocusTab = true;\r
2925  */\r
2926 \r
2927 /**\r
2928  * The distance of magnetic borders used in moving and resizing dialogs,\r
2929  * measured in pixels.\r
2930  * @name CKEDITOR.config.dialog_magnetDistance\r
2931  * @type Number\r
2932  * @default 20\r
2933  * @example\r
2934  * config.dialog_magnetDistance = 30;\r
2935  */\r
2936 \r
2937 /**\r
2938  * Fired when a dialog definition is about to be used to create a dialog into\r
2939  * an editor instance. This event makes it possible to customize the definition\r
2940  * before creating it.\r
2941  * <p>Note that this event is called only the first time a specific dialog is\r
2942  * opened. Successive openings will use the cached dialog, and this event will\r
2943  * not get fired.</p>\r
2944  * @name CKEDITOR#dialogDefinition\r
2945  * @event\r
2946  * @param {CKEDITOR.dialog.dialogDefinition} data The dialog defination that\r
2947  *              is being loaded.\r
2948  * @param {CKEDITOR.editor} editor The editor instance that will use the\r
2949  *              dialog.\r
2950  */\r