2 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license
\r
6 CKEDITOR.plugins.add( 'format',
\r
8 requires : [ 'richcombo', 'styles' ],
\r
10 init : function( editor )
\r
12 var config = editor.config,
\r
13 lang = editor.lang.format;
\r
15 // Gets the list of tags from the settings.
\r
16 var tags = config.format_tags.split( ';' );
\r
18 // Create style objects for all defined styles.
\r
20 for ( var i = 0 ; i < tags.length ; i++ )
\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
27 editor.ui.addRichCombo( 'Format',
\r
30 title : lang.panelTitle,
\r
31 className : 'cke_format',
\r
34 css : editor.skin.editor.css.concat( config.contentsCss ),
\r
35 multiSelect : false,
\r
36 attributes : { 'aria-label' : lang.panelTitle }
\r
41 this.startGroup( lang.panelTitle );
\r
43 for ( var tag in styles )
\r
45 var label = lang[ 'tag_' + tag ];
\r
47 // Add the tag entry to the panel list.
\r
48 this.add( tag, '<' + tag + '>' + label + '</' + tag + '>', label );
\r
52 onClick : function( value )
\r
55 editor.fire( 'saveSnapshot' );
\r
57 var style = styles[ value ],
\r
58 elementPath = new CKEDITOR.dom.elementPath( editor.getSelection().getStartElement() );
\r
60 style[ style.checkActive( elementPath ) ? 'remove' : 'apply' ]( editor.document );
\r
62 // Save the undo snapshot after all changes are affected. (#4899)
\r
63 setTimeout( function()
\r
65 editor.fire( 'saveSnapshot' );
\r
69 onRender : function()
\r
71 editor.on( 'selectionChange', function( ev )
\r
73 var currentTag = this.getValue();
\r
75 var elementPath = ev.data.path;
\r
77 for ( var tag in styles )
\r
79 if ( styles[ tag ].checkActive( elementPath ) )
\r
81 if ( tag != currentTag )
\r
82 this.setValue( tag, editor.lang.format[ 'tag_' + tag ] );
\r
87 // If no styles match, just empty it.
\r
88 this.setValue( '' );
\r
97 * A list of semi colon separated style names (by default tags) representing
\r
98 * the style definition for each entry to be displayed in the Format combo in
\r
99 * the toolbar. Each entry must have its relative definition configuration in a
\r
100 * setting named "format_(tagName)". For example, the "p" entry has its
\r
101 * definition taken from config.format_p.
\r
103 * @default 'p;h1;h2;h3;h4;h5;h6;pre;address;div'
\r
105 * config.format_tags = 'p;h2;h3;pre'
\r
107 CKEDITOR.config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address;div';
\r
110 * The style definition to be used to apply the "Normal" format.
\r
112 * @default { element : 'p' }
\r
114 * config.format_p = { element : 'p', attributes : { 'class' : 'normalPara' } };
\r
116 CKEDITOR.config.format_p = { element : 'p' };
\r
119 * The style definition to be used to apply the "Normal (DIV)" format.
\r
121 * @default { element : 'div' }
\r
123 * config.format_div = { element : 'div', attributes : { 'class' : 'normalDiv' } };
\r
125 CKEDITOR.config.format_div = { element : 'div' };
\r
128 * The style definition to be used to apply the "Formatted" format.
\r
130 * @default { element : 'pre' }
\r
132 * config.format_pre = { element : 'pre', attributes : { 'class' : 'code' } };
\r
134 CKEDITOR.config.format_pre = { element : 'pre' };
\r
137 * The style definition to be used to apply the "Address" format.
\r
139 * @default { element : 'address' }
\r
141 * config.format_address = { element : 'address', attributes : { 'class' : 'styledAddress' } };
\r
143 CKEDITOR.config.format_address = { element : 'address' };
\r
146 * The style definition to be used to apply the "Heading 1" format.
\r
148 * @default { element : 'h1' }
\r
150 * config.format_h1 = { element : 'h1', attributes : { 'class' : 'contentTitle1' } };
\r
152 CKEDITOR.config.format_h1 = { element : 'h1' };
\r
155 * The style definition to be used to apply the "Heading 1" format.
\r
157 * @default { element : 'h2' }
\r
159 * config.format_h2 = { element : 'h2', attributes : { 'class' : 'contentTitle2' } };
\r
161 CKEDITOR.config.format_h2 = { element : 'h2' };
\r
164 * The style definition to be used to apply the "Heading 1" format.
\r
166 * @default { element : 'h3' }
\r
168 * config.format_h3 = { element : 'h3', attributes : { 'class' : 'contentTitle3' } };
\r
170 CKEDITOR.config.format_h3 = { element : 'h3' };
\r
173 * The style definition to be used to apply the "Heading 1" format.
\r
175 * @default { element : 'h4' }
\r
177 * config.format_h4 = { element : 'h4', attributes : { 'class' : 'contentTitle4' } };
\r
179 CKEDITOR.config.format_h4 = { element : 'h4' };
\r
182 * The style definition to be used to apply the "Heading 1" format.
\r
184 * @default { element : 'h5' }
\r
186 * config.format_h5 = { element : 'h5', attributes : { 'class' : 'contentTitle5' } };
\r
188 CKEDITOR.config.format_h5 = { element : 'h5' };
\r
191 * The style definition to be used to apply the "Heading 1" format.
\r
193 * @default { element : 'h6' }
\r
195 * config.format_h6 = { element : 'h6', attributes : { 'class' : 'contentTitle6' } };
\r
197 CKEDITOR.config.format_h6 = { element : 'h6' };
\r