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