2 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
3 For licensing, see LICENSE.html or http://ckeditor.com/license
6 CKEDITOR
.plugins
.add( 'basicstyles',
8 requires
: [ 'styles', 'button' ],
10 init : function( editor
)
12 // All buttons use the same code to register. So, to avoid
13 // duplications, let's use this tool function.
14 var addButtonCommand = function( buttonName
, buttonLabel
, commandName
, styleDefiniton
)
16 var style
= new CKEDITOR
.style( styleDefiniton
);
18 editor
.attachStyleStateChange( style
, function( state
)
20 !editor
.readOnly
&& editor
.getCommand( commandName
).setState( state
);
23 editor
.addCommand( commandName
, new CKEDITOR
.styleCommand( style
) );
25 editor
.ui
.addButton( buttonName
,
32 var config
= editor
.config
,
35 addButtonCommand( 'Bold' , lang
.bold
, 'bold' , config
.coreStyles_bold
);
36 addButtonCommand( 'Italic' , lang
.italic
, 'italic' , config
.coreStyles_italic
);
37 addButtonCommand( 'Underline' , lang
.underline
, 'underline' , config
.coreStyles_underline
);
38 addButtonCommand( 'Strike' , lang
.strike
, 'strike' , config
.coreStyles_strike
);
39 addButtonCommand( 'Subscript' , lang
.subscript
, 'subscript' , config
.coreStyles_subscript
);
40 addButtonCommand( 'Superscript' , lang
.superscript
, 'superscript' , config
.coreStyles_superscript
);
44 // Basic Inline Styles.
47 * The style definition to be used to apply the bold style in the text.
50 * config.coreStyles_bold = { element : 'b', overrides : 'strong' };
52 * config.coreStyles_bold = { element : 'span', attributes : {'class': 'Bold'} };
54 CKEDITOR
.config
.coreStyles_bold
= { element
: 'strong', overrides
: 'b' };
57 * The style definition to be used to apply the italic style in the text.
59 * @default { element : 'em', overrides : 'i' }
61 * config.coreStyles_italic = { element : 'i', overrides : 'em' };
63 * CKEDITOR.config.coreStyles_italic = { element : 'span', attributes : {'class': 'Italic'} };
65 CKEDITOR
.config
.coreStyles_italic
= { element
: 'em', overrides
: 'i' };
68 * The style definition to be used to apply the underline style in the text.
70 * @default { element : 'u' }
72 * CKEDITOR.config.coreStyles_underline = { element : 'span', attributes : {'class': 'Underline'}};
74 CKEDITOR
.config
.coreStyles_underline
= { element
: 'u' };
77 * The style definition to be used to apply the strike style in the text.
79 * @default { element : 'strike' }
81 * CKEDITOR.config.coreStyles_strike = { element : 'span', attributes : {'class': 'StrikeThrough'}, overrides : 'strike' };
83 CKEDITOR
.config
.coreStyles_strike
= { element
: 'strike' };
86 * The style definition to be used to apply the subscript style in the text.
88 * @default { element : 'sub' }
90 * CKEDITOR.config.coreStyles_subscript = { element : 'span', attributes : {'class': 'Subscript'}, overrides : 'sub' };
92 CKEDITOR
.config
.coreStyles_subscript
= { element
: 'sub' };
95 * The style definition to be used to apply the superscript style in the text.
97 * @default { element : 'sup' }
99 * CKEDITOR.config.coreStyles_superscript = { element : 'span', attributes : {'class': 'Superscript'}, overrides : 'sup' };
101 CKEDITOR
.config
.coreStyles_superscript
= { element
: 'sup' };