JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
vanilla ckeditor-3.2.2
[ckeditor.git] / _source / plugins / format / 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 CKEDITOR.plugins.add( 'format',\r
7 {\r
8         requires : [ 'richcombo', 'styles' ],\r
9 \r
10         init : function( editor )\r
11         {\r
12                 var config = editor.config,\r
13                         lang = editor.lang.format;\r
14 \r
15                 // Gets the list of tags from the settings.\r
16                 var tags = config.format_tags.split( ';' );\r
17 \r
18                 // Create style objects for all defined styles.\r
19                 var styles = {};\r
20                 for ( var i = 0 ; i < tags.length ; i++ )\r
21                 {\r
22                         var tag = tags[ i ];\r
23                         styles[ tag ] = new CKEDITOR.style( config[ 'format_' + tag ] );\r
24                         styles[ tag ]._.enterMode = editor.config.enterMode;\r
25                 }\r
26 \r
27                 editor.ui.addRichCombo( 'Format',\r
28                         {\r
29                                 label : lang.label,\r
30                                 title : lang.panelTitle,\r
31                                 className : 'cke_format',\r
32                                 panel :\r
33                                 {\r
34                                         css : editor.skin.editor.css.concat( config.contentsCss ),\r
35                                         multiSelect : false,\r
36                                         attributes : { 'aria-label' : lang.panelTitle }\r
37                                 },\r
38 \r
39                                 init : function()\r
40                                 {\r
41                                         this.startGroup( lang.panelTitle );\r
42 \r
43                                         for ( var tag in styles )\r
44                                         {\r
45                                                 var label = lang[ 'tag_' + tag ];\r
46 \r
47                                                 // Add the tag entry to the panel list.\r
48                                                 this.add( tag, '<' + tag + '>' + label + '</' + tag + '>', label );\r
49                                         }\r
50                                 },\r
51 \r
52                                 onClick : function( value )\r
53                                 {\r
54                                         editor.focus();\r
55                                         editor.fire( 'saveSnapshot' );\r
56 \r
57                                         styles[ value ].apply( editor.document );\r
58 \r
59                                         // Save the undo snapshot after all changes are affected. (#4899)\r
60                                         setTimeout( function()\r
61                                         {\r
62                                                 editor.fire( 'saveSnapshot' );\r
63                                         }, 0 );\r
64                                 },\r
65 \r
66                                 onRender : function()\r
67                                 {\r
68                                         editor.on( 'selectionChange', function( ev )\r
69                                                 {\r
70                                                         var currentTag = this.getValue();\r
71 \r
72                                                         var elementPath = ev.data.path;\r
73 \r
74                                                         for ( var tag in styles )\r
75                                                         {\r
76                                                                 if ( styles[ tag ].checkActive( elementPath ) )\r
77                                                                 {\r
78                                                                         if ( tag != currentTag )\r
79                                                                                 this.setValue( tag, editor.lang.format[ 'tag_' + tag ] );\r
80                                                                         return;\r
81                                                                 }\r
82                                                         }\r
83 \r
84                                                         // If no styles match, just empty it.\r
85                                                         this.setValue( '' );\r
86                                                 },\r
87                                                 this);\r
88                                 }\r
89                         });\r
90         }\r
91 });\r
92 \r
93 /**\r
94  * A list of semi colon separated style names (by default tags) representing\r
95  * the style definition for each entry to be displayed in the Format combo in\r
96  * the toolbar. Each entry must have its relative definition configuration in a\r
97  * setting named "format_(tagName)". For example, the "p" entry has its\r
98  * definition taken from config.format_p.\r
99  * @type String\r
100  * @default 'p;h1;h2;h3;h4;h5;h6;pre;address;div'\r
101  * @example\r
102  * config.format_tags = 'p;h2;h3;pre'\r
103  */\r
104 CKEDITOR.config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div';\r
105 \r
106 /**\r
107  * The style definition to be used to apply the "Normal" format.\r
108  * @type Object\r
109  * @default { element : 'p' }\r
110  * @example\r
111  * config.format_p = { element : 'p', attributes : { class : 'normalPara' } };\r
112  */\r
113 CKEDITOR.config.format_p = { element : 'p' };\r
114 \r
115 /**\r
116  * The style definition to be used to apply the "Normal (DIV)" format.\r
117  * @type Object\r
118  * @default { element : 'div' }\r
119  * @example\r
120  * config.format_div = { element : 'div', attributes : { class : 'normalDiv' } };\r
121  */\r
122 CKEDITOR.config.format_div = { element : 'div' };\r
123 \r
124 /**\r
125  * The style definition to be used to apply the "Formatted" format.\r
126  * @type Object\r
127  * @default { element : 'pre' }\r
128  * @example\r
129  * config.format_pre = { element : 'pre', attributes : { class : 'code' } };\r
130  */\r
131 CKEDITOR.config.format_pre = { element : 'pre' };\r
132 \r
133 /**\r
134  * The style definition to be used to apply the "Address" format.\r
135  * @type Object\r
136  * @default { element : 'address' }\r
137  * @example\r
138  * config.format_address = { element : 'address', attributes : { class : 'styledAddress' } };\r
139  */\r
140 CKEDITOR.config.format_address = { element : 'address' };\r
141 \r
142 /**\r
143  * The style definition to be used to apply the "Heading 1" format.\r
144  * @type Object\r
145  * @default { element : 'h1' }\r
146  * @example\r
147  * config.format_h1 = { element : 'h1', attributes : { class : 'contentTitle1' } };\r
148  */\r
149 CKEDITOR.config.format_h1 = { element : 'h1' };\r
150 \r
151 /**\r
152  * The style definition to be used to apply the "Heading 1" format.\r
153  * @type Object\r
154  * @default { element : 'h2' }\r
155  * @example\r
156  * config.format_h2 = { element : 'h2', attributes : { class : 'contentTitle2' } };\r
157  */\r
158 CKEDITOR.config.format_h2 = { element : 'h2' };\r
159 \r
160 /**\r
161  * The style definition to be used to apply the "Heading 1" format.\r
162  * @type Object\r
163  * @default { element : 'h3' }\r
164  * @example\r
165  * config.format_h3 = { element : 'h3', attributes : { class : 'contentTitle3' } };\r
166  */\r
167 CKEDITOR.config.format_h3 = { element : 'h3' };\r
168 \r
169 /**\r
170  * The style definition to be used to apply the "Heading 1" format.\r
171  * @type Object\r
172  * @default { element : 'h4' }\r
173  * @example\r
174  * config.format_h4 = { element : 'h4', attributes : { class : 'contentTitle4' } };\r
175  */\r
176 CKEDITOR.config.format_h4 = { element : 'h4' };\r
177 \r
178 /**\r
179  * The style definition to be used to apply the "Heading 1" format.\r
180  * @type Object\r
181  * @default { element : 'h5' }\r
182  * @example\r
183  * config.format_h5 = { element : 'h5', attributes : { class : 'contentTitle5' } };\r
184  */\r
185 CKEDITOR.config.format_h5 = { element : 'h5' };\r
186 \r
187 /**\r
188  * The style definition to be used to apply the "Heading 1" format.\r
189  * @type Object\r
190  * @default { element : 'h6' }\r
191  * @example\r
192  * config.format_h6 = { element : 'h6', attributes : { class : 'contentTitle6' } };\r
193  */\r
194 CKEDITOR.config.format_h6 = { element : 'h6' };\r