JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.5
[ckeditor.git] / _source / core / editor.js
index 7168ad0..b124703 100644 (file)
@@ -118,10 +118,46 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                                '_source/' +    // @Packager.RemoveLine\r
                                'skins/' + skinName + '/' ) );\r
 \r
+               /**\r
+                * The name of the skin used by this editor instance. The skin name can\r
+                * be set though the {@link CKEDITOR.config.skin} setting.\r
+                * @name CKEDITOR.editor.prototype.skinName\r
+                * @type String\r
+                * @example\r
+                * alert( editor.skinName );  // "kama" (e.g.)\r
+                */\r
                editor.skinName = skinName;\r
+\r
+               /**\r
+                * The full URL of the skin directory.\r
+                * @name CKEDITOR.editor.prototype.skinPath\r
+                * @type String\r
+                * @example\r
+                * alert( editor.skinPath );  // "http://example.com/ckeditor/skins/kama/" (e.g.)\r
+                */\r
                editor.skinPath = skinPath;\r
+\r
+               /**\r
+                * The CSS class name used for skin identification purposes.\r
+                * @name CKEDITOR.editor.prototype.skinClass\r
+                * @type String\r
+                * @example\r
+                * alert( editor.skinClass );  // "cke_skin_kama" (e.g.)\r
+                */\r
                editor.skinClass = 'cke_skin_' + skinName;\r
 \r
+               /**\r
+                * The <a href="http://en.wikipedia.org/wiki/Tabbing_navigation">tabbing\r
+                * navigation</a> order that has been calculated for this editor\r
+                * instance. This can be set by the {@link CKEDITOR.config.tabIndex}\r
+                * setting or taken from the "tabindex" attribute of the\r
+                * {@link #element} associated to the editor.\r
+                * @name CKEDITOR.editor.prototype.tabIndex\r
+                * @type Number\r
+                * @default 0 (zero)\r
+                * @example\r
+                * alert( editor.tabIndex );  // "0" (e.g.)\r
+                */\r
                editor.tabIndex = editor.config.tabIndex || editor.element.getAttribute( 'tabindex' ) || 0;\r
 \r
                // Fire the "configLoaded" event.\r
@@ -135,8 +171,24 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
        {\r
                CKEDITOR.lang.load( editor.config.language, editor.config.defaultLanguage, function( languageCode, lang )\r
                        {\r
+                               /**\r
+                                * The code for the language resources that have been loaded\r
+                                * for the user internface elements of this editor instance.\r
+                                * @name CKEDITOR.editor.prototype.langCode\r
+                                * @type String\r
+                                * @example\r
+                                * alert( editor.langCode );  // "en" (e.g.)\r
+                                */\r
                                editor.langCode = languageCode;\r
 \r
+                               /**\r
+                                * An object holding all language strings used by the editor\r
+                                * interface.\r
+                                * @name CKEDITOR.editor.prototype.lang\r
+                                * @type CKEDITOR.lang\r
+                                * @example\r
+                                * alert( editor.lang.bold );  // "Negrito" (e.g. if language is Portuguese)\r
+                                */\r
                                // As we'll be adding plugin specific entries that could come\r
                                // from different language code files, we need a copy of lang,\r
                                // not a direct reference to it.\r
@@ -146,6 +198,9 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                                if ( CKEDITOR.env.gecko && CKEDITOR.env.version < 10900 && editor.lang.dir == 'rtl' )\r
                                        editor.lang.dir = 'ltr';\r
 \r
+                               var config = editor.config;\r
+                               config.contentsLangDirection == 'ui' && ( config.contentsLangDirection = editor.lang.dir );\r
+\r
                                loadPlugins( editor );\r
                        });\r
        };\r
@@ -172,6 +227,9 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                        plugins = plugins.replace( removeRegex, '' );\r
                }\r
 \r
+               // Load the Adobe AIR plugin conditionally.\r
+               CKEDITOR.env.air && ( plugins += ',adobeair' );\r
+\r
                // Load all plugins defined in the "plugins" setting.\r
                CKEDITOR.plugins.load( plugins.split( ',' ), function( plugins )\r
                        {\r
@@ -185,7 +243,14 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                                // The list of URLs to language files.\r
                                var languageFiles = [];\r
 \r
-                               // Cache the loaded plugin names.\r
+                               /**\r
+                                * And object holding references to all plugins used by this\r
+                                * editor istance.\r
+                                * @name CKEDITOR.editor.prototype.plugins\r
+                                * @type Object\r
+                                * @example\r
+                                * alert( editor.plugins.dialog.path );  // "http://example.com/ckeditor/plugins/dialog/" (e.g.)\r
+                                */\r
                                editor.plugins = plugins;\r
 \r
                                // Loop through all plugins, to build the list of language\r
@@ -268,6 +333,13 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                var theme = editor.config.theme;\r
                CKEDITOR.themes.load( theme, function()\r
                        {\r
+                               /**\r
+                                * The theme used by this editor instance.\r
+                                * @name CKEDITOR.editor.prototype.theme\r
+                                * @type CKEDITOR.theme\r
+                                * @example\r
+                                * alert( editor.theme );  "http://example.com/ckeditor/themes/default/" (e.g.)\r
+                                */\r
                                var editorTheme = editor.theme = CKEDITOR.themes.get( theme );\r
                                editorTheme.path = CKEDITOR.themes.getPath( theme );\r
                                editorTheme.build( editor );\r
@@ -331,7 +403,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                for ( var name in commands )\r
                {\r
                        command = commands[ name ];\r
-                       command[ command.modes[ mode ] ? 'enable' : 'disable' ]();\r
+                       command[ command.startDisabled ? 'disable' : command.modes[ mode ] ? 'enable' : 'disable' ]();\r
                }\r
        }\r
 \r
@@ -380,6 +452,13 @@ For licensing, see LICENSE.html or http://ckeditor.com/license
                                throw '[CKEDITOR.editor] The instance "' + this.name + '" already exists.';\r
 \r
                        /**\r
+                        * A unique random string assigned to each editor instance in the page.\r
+                        * @name CKEDITOR.editor.prototype.id\r
+                        * @type String\r
+                        */\r
+                       this.id = CKEDITOR.tools.getNextId();\r
+\r
+                       /**\r
                         * The configurations for this editor instance. It inherits all\r
                         * settings defined in (@link CKEDITOR.config}, combined with settings\r
                         * loaded from custom configuration files and those defined inline in\r
@@ -468,7 +547,43 @@ CKEDITOR.tools.extend( CKEDITOR.editor.prototype,
                        if ( !noUpdate )\r
                                this.updateElement();\r
 \r
+                       if ( this.mode )\r
+                       {\r
+                               // ->           currentMode.unload( holderElement );\r
+                               this._.modes[ this.mode ].unload( this.getThemeSpace( 'contents' ) );\r
+                       }\r
+\r
                        this.theme.destroy( this );\r
+\r
+                       var toolbars,\r
+                               index = 0,\r
+                               j,\r
+                               items,\r
+                               instance;\r
+\r
+                       if ( this.toolbox )\r
+                       {\r
+                               toolbars = this.toolbox.toolbars;\r
+                               for ( ; index < toolbars.length ; index++ )\r
+                               {\r
+                                       items = toolbars[ index ].items;\r
+                                       for ( j = 0 ; j < items.length ; j++ )\r
+                                       {\r
+                                               instance = items[ j ];\r
+                                               if ( instance.clickFn ) CKEDITOR.tools.removeFunction( instance.clickFn );\r
+                                               if ( instance.keyDownFn ) CKEDITOR.tools.removeFunction( instance.keyDownFn );\r
+\r
+                                               if ( instance.index ) CKEDITOR.ui.button._.instances[ instance.index ] = null;\r
+                                       }\r
+                               }\r
+                       }\r
+\r
+                       if ( this.contextMenu )\r
+                               CKEDITOR.tools.removeFunction( this.contextMenu._.functionId );\r
+\r
+                       if ( this._.filebrowserFn )\r
+                               CKEDITOR.tools.removeFunction( this._.filebrowserFn );\r
+\r
                        this.fire( 'destroy' );\r
                        CKEDITOR.remove( this );\r
                        CKEDITOR.fire( 'instanceDestroyed', null, this );\r
@@ -557,6 +672,16 @@ CKEDITOR.tools.extend( CKEDITOR.editor.prototype,
                        return eventData.dataValue;\r
                },\r
 \r
+               /**\r
+                * Gets the "raw data" currently available in the editor. This is a\r
+                * fast method which return the data as is, without processing, so it's\r
+                * not recommended to use it on resulting pages. It can be used instead\r
+                * combined with the {@link #loadSnapshot} so one can automatic save\r
+                * the editor data from time to time while the user is using the\r
+                * editor, to avoid data loss, without risking performance issues.\r
+                * @example\r
+                * alert( editor.getSnapshot() );\r
+                */\r
                getSnapshot : function()\r
                {\r
                        var data = this.fire( 'getSnapshot' );\r
@@ -571,6 +696,15 @@ CKEDITOR.tools.extend( CKEDITOR.editor.prototype,
                        return data;\r
                },\r
 \r
+               /**\r
+                * Loads "raw data" in the editor. This data is loaded with processing\r
+                * straight to the editing area. It should not be used as a way to load\r
+                * any kind of data, but instead in combination with\r
+                * {@link #getSnapshot} produced data.\r
+                * @example\r
+                * var data = editor.getSnapshot();\r
+                * editor.<b>loadSnapshot( data )</b>;\r
+                */\r
                loadSnapshot : function( snapshot )\r
                {\r
                        this.fire( 'loadSnapshot', snapshot );\r
@@ -625,6 +759,22 @@ CKEDITOR.tools.extend( CKEDITOR.editor.prototype,
                },\r
 \r
                /**\r
+                * Insert text content into the currently selected position in the\r
+                * editor, in WYSIWYG mode, styles of the selected element will be applied to the inserted text,\r
+                * spaces around the text will be leaving untouched.\r
+                * <strong>Note:</strong> two subsequent line-breaks will introduce one paragraph, which element depends on {@link CKEDITOR.config.enterMode};\r
+                * A single line-break will be instead translated into one &lt;br /&gt;.\r
+                * @since 3.5\r
+                * @param {String} text Text to be inserted into the editor.\r
+                * @example\r
+                * CKEDITOR.instances.editor1.<b>insertText( ' line1 \n\n line2' )</b>;\r
+                */\r
+               insertText : function( text )\r
+               {\r
+                       this.fire( 'insertText', text );\r
+               },\r
+\r
+               /**\r
                 * Inserts an element into the currently selected position in the\r
                 * editor.\r
                 * @param {CKEDITOR.dom.element} element The element to be inserted\r
@@ -638,11 +788,38 @@ CKEDITOR.tools.extend( CKEDITOR.editor.prototype,
                        this.fire( 'insertElement', element );\r
                },\r
 \r
+               /**\r
+                * Checks whether the current editor contents present changes when\r
+                * compared to the contents loaded into the editor at startup, or to\r
+                * the contents available in the editor when {@link #resetDirty} has\r
+                * been called.\r
+                * @returns {Boolean} "true" is the contents present changes.\r
+                * @example\r
+                * function beforeUnload( e )\r
+                * {\r
+                *     if ( CKEDITOR.instances.editor1.<b>checkDirty()</b> )\r
+                *              return e.returnValue = "You'll loose the changes made in the editor.";\r
+                * }\r
+                *\r
+                * if ( window.addEventListener )\r
+                *     window.addEventListener( 'beforeunload', beforeUnload, false );\r
+                * else\r
+                *     window.attachEvent( 'onbeforeunload', beforeUnload );\r
+                */\r
                checkDirty : function()\r
                {\r
                        return ( this.mayBeDirty && this._.previousValue !== this.getSnapshot() );\r
                },\r
 \r
+               /**\r
+                * Resets the "dirty state" of the editor so subsequent calls to\r
+                * {@link #checkDirty} will return "false" if the user will not make\r
+                * further changes to the contents.\r
+                * @example\r
+                * alert( editor.checkDirty() );  // "true" (e.g.)\r
+                * editor.<b>resetDirty()</b>;\r
+                * alert( editor.checkDirty() );  // "false"\r
+                */\r
                resetDirty : function()\r
                {\r
                        if ( this.mayBeDirty )\r
@@ -717,4 +894,50 @@ CKEDITOR.on( 'loaded', function()
  * Fired when all plugins are loaded and initialized into the editor instance.\r
  * @name CKEDITOR#pluginsLoaded\r
  * @event\r
+ * @param {CKEDITOR.editor} editor The editor instance that has been destroyed.\r
+ */\r
+\r
+/**\r
+ * Fired before the command execution when {@link #execCommand} is called.\r
+ * @name CKEDITOR.editor#beforeCommandExec\r
+ * @event\r
+ * @param {CKEDITOR.editor} editor This editor instance.\r
+ * @param {String} data.name The command name.\r
+ * @param {Object} data.commandData The data to be sent to the command. This\r
+ *             can be manipulated by the event listener.\r
+ * @param {CKEDITOR.command} data.command The command itself.\r
+ */\r
+\r
+/**\r
+ * Fired after the command execution when {@link #execCommand} is called.\r
+ * @name CKEDITOR.editor#afterCommandExec\r
+ * @event\r
+ * @param {CKEDITOR.editor} editor This editor instance.\r
+ * @param {String} data.name The command name.\r
+ * @param {Object} data.commandData The data sent to the command.\r
+ * @param {CKEDITOR.command} data.command The command itself.\r
+ * @param {Object} data.returnValue The value returned by the command execution.\r
+ */\r
+\r
+/**\r
+ * Fired every custom configuration file is loaded, before the final\r
+ * configurations initialization.<br />\r
+ * <br />\r
+ * Custom configuration files can be loaded thorugh the\r
+ * {@link CKEDITOR.config.customConfig} setting. Several files can be loading\r
+ * by chaning this setting.\r
+ * @name CKEDITOR.editor#customConfigLoaded\r
+ * @event\r
+ * @param {CKEDITOR.editor} editor This editor instance.\r
+ * @example\r
+ */\r
+\r
+/**\r
+ * Fired once the editor configuration is ready (loaded and processed).\r
+ * @name CKEDITOR.editor#configLoaded\r
+ * @event\r
+ * @param {CKEDITOR.editor} editor This editor instance.\r
+ * @example\r
+ * if( editor.config.fullPage )\r
+ *     alert( 'This is a full page editor' );\r
  */\r