JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
7dbb92cf89597b3805ef05cc4a3d7d4072af3759
[ckeditor.git] / _source / plugins / editingblock / 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 default editing block plugin, which holds the editing area\r
8  *              and source view.\r
9  */\r
10 \r
11 (function()\r
12 {\r
13         var getMode = function( editor, mode )\r
14         {\r
15                 return editor._.modes && editor._.modes[ mode || editor.mode ];\r
16         };\r
17 \r
18         // This is a semaphore used to avoid recursive calls between\r
19         // the following data handling functions.\r
20         var isHandlingData;\r
21 \r
22         CKEDITOR.plugins.add( 'editingblock',\r
23         {\r
24                 init : function( editor )\r
25                 {\r
26                         if ( !editor.config.editingBlock )\r
27                                 return;\r
28 \r
29                         editor.on( 'themeSpace', function( event )\r
30                                 {\r
31                                         if ( event.data.space == 'contents' )\r
32                                                 event.data.html += '<br>';\r
33                                 });\r
34 \r
35                         editor.on( 'themeLoaded', function()\r
36                                 {\r
37                                         editor.fireOnce( 'editingBlockReady' );\r
38                                 });\r
39 \r
40                         editor.on( 'uiReady', function()\r
41                                 {\r
42                                         editor.setMode( editor.config.startupMode );\r
43                                 });\r
44 \r
45                         editor.on( 'afterSetData', function()\r
46                                 {\r
47                                         if ( !isHandlingData )\r
48                                         {\r
49                                                 function setData()\r
50                                                 {\r
51                                                         isHandlingData = true;\r
52                                                         getMode( editor ).loadData( editor.getData() );\r
53                                                         isHandlingData = false;\r
54                                                 }\r
55 \r
56                                                 if ( editor.mode )\r
57                                                         setData();\r
58                                                 else\r
59                                                 {\r
60                                                         editor.on( 'mode', function()\r
61                                                                 {\r
62                                                                         setData();\r
63                                                                         editor.removeListener( 'mode', arguments.callee );\r
64                                                                 });\r
65                                                 }\r
66                                         }\r
67                                 });\r
68 \r
69                         editor.on( 'beforeGetData', function()\r
70                                 {\r
71                                         if ( !isHandlingData && editor.mode )\r
72                                         {\r
73                                                 isHandlingData = true;\r
74                                                 editor.setData( getMode( editor ).getData() );\r
75                                                 isHandlingData = false;\r
76                                         }\r
77                                 });\r
78 \r
79                         editor.on( 'getSnapshot', function( event )\r
80                                 {\r
81                                         if ( editor.mode )\r
82                                                 event.data = getMode( editor ).getSnapshotData();\r
83                                 });\r
84 \r
85                         editor.on( 'loadSnapshot', function( event )\r
86                                 {\r
87                                         if ( editor.mode )\r
88                                                 getMode( editor ).loadSnapshotData( event.data );\r
89                                 });\r
90 \r
91                         // For the first "mode" call, we'll also fire the "instanceReady"\r
92                         // event.\r
93                         editor.on( 'mode', function( event )\r
94                                 {\r
95                                         // Do that once only.\r
96                                         event.removeListener();\r
97 \r
98                                         // Redirect the focus into editor for webkit. (#5713)\r
99                                         CKEDITOR.env.webkit && editor.container.on( 'focus', function()\r
100                                                 {\r
101                                                         editor.focus();\r
102                                                 });\r
103 \r
104                                         if ( editor.config.startupFocus )\r
105                                                 editor.focus();\r
106 \r
107                                         // Fire instanceReady for both the editor and CKEDITOR, but\r
108                                         // defer this until the whole execution has completed\r
109                                         // to guarantee the editor is fully responsible.\r
110                                         setTimeout( function(){\r
111                                                 editor.fireOnce( 'instanceReady' );\r
112                                                 CKEDITOR.fire( 'instanceReady', null, editor );\r
113                                         }, 0 );\r
114                                 });\r
115                 }\r
116         });\r
117 \r
118         /**\r
119          * The current editing mode. An editing mode is basically a viewport for\r
120          * editing or content viewing. By default the possible values for this\r
121          * property are "wysiwyg" and "source".\r
122          * @type String\r
123          * @example\r
124          * alert( CKEDITOR.instances.editor1.mode );  // "wysiwyg" (e.g.)\r
125          */\r
126         CKEDITOR.editor.prototype.mode = '';\r
127 \r
128         /**\r
129          * Registers an editing mode. This function is to be used mainly by plugins.\r
130          * @param {String} mode The mode name.\r
131          * @param {Object} modeEditor The mode editor definition.\r
132          * @example\r
133          */\r
134         CKEDITOR.editor.prototype.addMode = function( mode, modeEditor )\r
135         {\r
136                 modeEditor.name = mode;\r
137                 ( this._.modes || ( this._.modes = {} ) )[ mode ] = modeEditor;\r
138         };\r
139 \r
140         /**\r
141          * Sets the current editing mode in this editor instance.\r
142          * @param {String} mode A registered mode name.\r
143          * @example\r
144          * // Switch to "source" view.\r
145          * CKEDITOR.instances.editor1.setMode( 'source' );\r
146          */\r
147         CKEDITOR.editor.prototype.setMode = function( mode )\r
148         {\r
149                 var data,\r
150                         holderElement = this.getThemeSpace( 'contents' ),\r
151                         isDirty = this.checkDirty();\r
152 \r
153                 // Unload the previous mode.\r
154                 if ( this.mode )\r
155                 {\r
156                         if ( mode == this.mode )\r
157                                 return;\r
158 \r
159                         this.fire( 'beforeModeUnload' );\r
160 \r
161                         var currentMode = getMode( this );\r
162                         data = currentMode.getData();\r
163                         currentMode.unload( holderElement );\r
164                         this.mode = '';\r
165                 }\r
166 \r
167                 holderElement.setHtml( '' );\r
168 \r
169                 // Load required mode.\r
170                 var modeEditor = getMode( this, mode );\r
171                 if ( !modeEditor )\r
172                         throw '[CKEDITOR.editor.setMode] Unknown mode "' + mode + '".';\r
173 \r
174                 if ( !isDirty )\r
175                 {\r
176                         this.on( 'mode', function()\r
177                                 {\r
178                                         this.resetDirty();\r
179                                         this.removeListener( 'mode', arguments.callee );\r
180                                 });\r
181                 }\r
182 \r
183                 modeEditor.load( holderElement, ( typeof data ) != 'string'  ? this.getData() : data);\r
184         };\r
185 \r
186         /**\r
187          * Moves the selection focus to the editing are space in the editor.\r
188          */\r
189         CKEDITOR.editor.prototype.focus = function()\r
190         {\r
191                 var mode = getMode( this );\r
192                 if ( mode )\r
193                         mode.focus();\r
194         };\r
195 })();\r
196 \r
197 /**\r
198  * The mode to load at the editor startup. It depends on the plugins\r
199  * loaded. By default, the "wysiwyg" and "source" modes are available.\r
200  * @type String\r
201  * @default 'wysiwyg'\r
202  * @example\r
203  * config.startupMode = 'source';\r
204  */\r
205 CKEDITOR.config.startupMode = 'wysiwyg';\r
206 \r
207 /**\r
208  * Sets whether the editor should have the focus when the page loads.\r
209  * @type Boolean\r
210  * @default false\r
211  * @example\r
212  * config.startupFocus = true;\r
213  */\r
214 CKEDITOR.config.startupFocus = false;\r
215 \r
216 /**\r
217  * Whether to render or not the editing block area in the editor interface.\r
218  * @type Boolean\r
219  * @default true\r
220  * @example\r
221  * config.editingBlock = false;\r
222  */\r
223 CKEDITOR.config.editingBlock = true;\r
224 \r
225 /**\r
226  * Fired when a CKEDITOR instance is created, fully initialized and ready for interaction.\r
227  * @name CKEDITOR#instanceReady\r
228  * @event\r
229  * @param {CKEDITOR.editor} editor The editor instance that has been created.\r
230  */\r