Report an issue
Class

CKEDITOR.style

class

A class representing a style instance for the specific style definition. In this approach, a style is a set of properties, like attributes and styles, which can be applied to and removed from a selection through editor methods: CKEDITOR.editor.applyStyle and CKEDITOR.editor.removeStyle, respectively.

Three default style types are available: STYLE_BLOCK, STYLE_INLINE, and STYLE_OBJECT. Based on its type, a style heavily changes its behavior. You can read more about style types in the Style Types section of the Styles guide.

It is possible to define a custom style type by subclassing this class by using the addCustomHandler method. However, because of great complexity of the styles handling job, it is only possible in very specific cases.

Usage

Basic usage:

// Define a block style.
var style = new CKEDITOR.style( { element: 'h1' } );

// Considering the following selection:
// <p>Foo</p><p>Bar^</p>
// Executing:
editor.applyStyle( style );
// Will give:
// <p>Foo</p><h1>Bar^</h1>
style.checkActive( editor.elementPath(), editor ); // -> true

editor.removeStyle( style );
// Will give:
// <p>Foo</p><p>Bar^</p>

style.checkActive( editor.elementPath(), editor ); // -> false

Object style:

// Define an object style.
var style = new CKEDITOR.style( { element: 'img', attributes: { 'class': 'foo' } } );

// Considering the following selection:
// <p><img src="bar.png" alt="" />Foo^</p>
// Executing:
editor.applyStyle( style );
// Will not apply the style, because the image is not selected.
// You can check if a style can be applied on the current selection with:
style.checkApplicable( editor.elementPath(), editor ); // -> false

// Considering the following selection:
// <p>[<img src="bar.png" alt="" />]Foo</p>
// Executing
editor.applyStyle( style );
// Will give:
// <p>[<img src="bar.png" alt="" class="foo" />]Foo</p>
API changes introduced in CKEditor 4.4.0

Before CKEditor 4.4.0 all style instances had no access at all to the editor instance within which the style is used. Neither the style constructor, nor style methods were requiring passing the editor instance which made styles independent of the editor and hence its settings and state. This design decision came from CKEditor 3; it started causing problems and became an unsolvable obstacle for the widget style handler which we introduced in CKEditor 4.4.

There were two possible solutions. Passing an editor instance to the style constructor or to every method. The first approach would be clean, however, having in mind the backward compatibility, we did not decide to go for it. It would bind the style to one editor instance, making it unusable with other editor instances. That could break many implementations reusing styles between editors. Therefore, we decided to take the longer but safer path — the editor instance became an argument for nearly all style methods, however, for backward compatibility reasons, all these methods will work without it. Even the newly implemented widget style handler's methods will not fail, although they will also not work by aborting at an early stage.

Therefore, you can safely upgrade to CKEditor 4.4.0 even if you use style methods without providing the editor instance. You must only align your code if your implementation should handle widget styles or any other custom style handler. Of course, we recommend doing this in any case to avoid potential problems in the future.

Filtering

Properties

  • since 4.0.0

    alwaysRemoveElement : Boolean

    Indicates that any matches element of this style will be eventually removed when calling CKEDITOR.editor.removeStyle.

    Defaults to false

  • since 3.5.0

    includeReadonly : Boolean

    Indicates that fully selected read-only elements will be included when applying the style (for inline styles only).

    Defaults to false

  • since 4.15.0

    unstylableElements : String[]

    List of all elements that are ignored during styling.

    Defaults to []

Methods

  • constructor( styleDefinition, variablesValues ) → style

    Creates a style class instance.

    Parameters

    styleDefinition : definition
    variablesValues : Object

    Returns

    style
  • apply( editor )

    Applies the style on the editor's current selection.

    Before the style is applied, the method checks if the style is applicable.

    Note: The recommended way of applying the style is by using the CKEDITOR.editor.applyStyle method, which is a shorthand for this method.

    Parameters

    editor : editor | document

    The editor instance in which the style will be applied. A CKEDITOR.dom.document instance is accepted for backward compatibility reasons, although since CKEditor 4.4.0 this type of argument is deprecated. Read more about the signature change in the CKEDITOR.style documentation.

  • applyToObject( element, editor )

    Applies the style to the element. This method bypasses all checks and applies the style attributes directly on the provided element. Use with caution.

    See CKEDITOR.editor.applyStyle.

    Parameters

    element : element
    editor : editor

    The editor instance. Required argument since CKEditor 4.4. The style system will work without it, but it is highly recommended to provide it for integration with all features. Read more about the signature change in the CKEDITOR.style documentation.

  • applyToRange( range, editor )

    Applies the style on the provided range. Unlike apply this method does not take care of setting the selection, however, the range is updated to the correct place.

    Note: If you want to apply the style on the editor selection, you probably want to use CKEDITOR.editor.applyStyle.

    Parameters

    range : range
    editor : editor

    The editor instance. Required argument since CKEditor 4.4. The style system will work without it, but it is highly recommended to provide it for integration with all features. Read more about the signature change in the CKEDITOR.style documentation.

  • buildPreview( [ label ] ) → String

    Builds the preview HTML based on the styles definition.

    Parameters

    [ label ] : String

    The label used in the style preview.

    Returns

    String

    The HTML of preview.

  • checkActive( elementPath, editor ) → Boolean

    Gets the style state inside the elements path.

    Parameters

    elementPath : elementPath
    editor : editor

    The editor instance. Required argument since CKEditor 4.4. The style system will work without it, but it is highly recommended to provide it for integration with all features. Read more about the signature change in the CKEDITOR.style documentation.

    Returns

    Boolean

    true if the element is active in the elements path.

  • checkApplicable( elementPath, editor, [ filter ] ) → Boolean

    Whether this style can be applied at the specified elements path.

    Parameters

    elementPath : elementPath

    The elements path to check the style against.

    editor : editor

    The editor instance. Required argument since CKEditor 4.4. The style system will work without it, but it is highly recommended to provide it for integration with all features. Read more about the signature change in the CKEDITOR.style documentation.

    [ filter ] : filter

    If defined, the style will be checked against this filter as well.

    Returns

    Boolean

    true if this style can be applied at the elements path.

  • checkElementMatch( element, fullMatch, editor ) → Boolean

    Checks if the element matches the current style definition.

    Parameters

    element : element
    fullMatch : Boolean
    editor : editor

    The editor instance. Required argument since CKEditor 4.4. The style system will work without it, but it is highly recommended to provide it for integration with all features. Read more about the signature change in the CKEDITOR.style documentation.

    Returns

    Boolean
  • checkElementRemovable( element, fullMatch, editor ) → Boolean

    Checks if an element, or any of its attributes, is removable by the current style definition.

    Parameters

    element : element
    fullMatch : Boolean
    editor : editor

    The editor instance. Required argument since CKEditor 4.4. The style system will work without it, but it is highly recommended to provide it for integration with all features. Read more about the signature change in the CKEDITOR.style documentation.

    Returns

    Boolean
  • since 4.1.0

    getDefinition() → Object

    Returns the style definition.

    Returns

    Object
  • remove( editor )

    Removes the style from the editor's current selection.

    Before the style is applied, the method checks if style could be applied.

    Note: The recommended way of removing the style is by using the CKEDITOR.editor.removeStyle method, which is a shorthand for this method.

    Parameters

    editor : editor | document

    The editor instance in which the style will be removed. A CKEDITOR.dom.document instance is accepted for backward compatibility reasons, although since CKEditor 4.4.0 this type of argument is deprecated. Read more about the signature change in the CKEDITOR.style documentation.

  • removeFromRange( range, editor )

    Removes the style from the provided range. Unlike remove this method does not take care of setting the selection, however, the range is updated to the correct place.

    Note: If you want to remove the style from the editor selection, you probably want to use CKEDITOR.editor.removeStyle.

    Parameters

    range : range
    editor : editor

    The editor instance. Required argument since CKEditor 4.4. The style system will work without it, but it is highly recommended to provide it for integration with all features. Read more about the signature change in the CKEDITOR.style documentation.

  • since 4.4.0

    toAllowedContentRules( [ editor ] ) → allowedContentRules

    If defined (for example by custom style handler), it returns the allowed content rules which should be added to the CKEDITOR.filter when enabling this style.

    Note: This method is not defined in the CKEDITOR.style class.

    Parameters

    [ editor ] : editor

    The editor instance.

    Returns

    allowedContentRules

    The rules that should represent this style in the CKEDITOR.filter.

Static methods

  • since 4.4.0 static

    addCustomHandler( definition ) → style

    Creates a CKEDITOR.style subclass and registers it in the style system. Registered class will be used as a handler for a style of this type. This allows to extend the styles system, which by default uses only the CKEDITOR.style, with new functionality. Registered classes are accessible in the CKEDITOR.style.customHandlers.

    The Style Class Definition

    The definition object is used to override properties in a prototype inherited from the CKEDITOR.style class. It must contain a type property which is a name of the new type and therefore it must be unique. The default style types (STYLE_BLOCK, STYLE_INLINE, and STYLE_OBJECT) are integers, but for easier identification it is recommended to use strings as custom type names.

    Besides type, the definition may contain two more special properties:

    • setup {Function} – An optional callback executed when a style instance is created. Like the style constructor, it is executed in style context and with the style definition as an argument.
    • assignedTo {Number} – Can be set to one of the default style types. Some editor features like the Styles drop-down assign styles to one of the default groups based on the style type. By using this property it is possible to notify them to which group this custom style should be assigned. It defaults to the CKEDITOR.STYLE_OBJECT.

    Other properties of the definition object will just be used to extend the prototype inherited from the CKEDITOR.style class. So if the definition contains an apply method, it will override the apply method.

    Usage

    Registering a basic handler:

    var styleClass = CKEDITOR.style.addCustomHandler( {
        type: 'custom'
    } );
    
    var style = new styleClass( { ... } );
    style instanceof styleClass; // -> true
    style instanceof CKEDITOR.style; // -> true
    style.type; // -> 'custom'
    

    The CKEDITOR.style constructor used as a factory:

    var styleClass = CKEDITOR.style.addCustomHandler( {
        type: 'custom'
    } );
    
    // Style constructor accepts style definition (do not confuse with style class definition).
    var style = new CKEDITOR.style( { type: 'custom', attributes: ... } );
    style instanceof styleClass; // -> true
    

    Thanks to that, integration code using styles does not need to know which style handler it should use. It is determined by the CKEDITOR.style constructor.

    Overriding existing CKEDITOR.style methods:

    var styleClass = CKEDITOR.style.addCustomHandler( {
        type: 'custom',
        apply: function( editor ) {
            console.log( 'apply' );
        },
        remove: function( editor ) {
            console.log( 'remove' );
        }
    } );
    
    var style = new CKEDITOR.style( { type: 'custom', attributes: ... } );
    editor.applyStyle( style ); // logged 'apply'
    
    style = new CKEDITOR.style( { element: 'img', attributes: { 'class': 'foo' } } );
    editor.applyStyle( style ); // style is really applied if image was selected
    
    Practical Recommendations

    The style handling job, which includes such tasks as applying, removing, checking state, and checking if a style can be applied, is very complex. Therefore without deep knowledge about DOM and especially ranges and DOM walker it is impossible to implement a completely custom style handler able to handle block, inline, and object type styles. However, it is possible to customize the default implementation by overriding default methods and reusing them.

    The only style handler which can be implemented from scratch without huge effort is a style applicable to objects (read more about types). Such style can only be applied when a specific object is selected. An example implementation can be found in the widget plugin.

    When implementing a style handler from scratch at least the following methods must be defined:

    Parameters

    definition : Object

    The style class definition.

    Returns

    style

    The new style class created for the provided definition.

  • static

    getStyleText( styleDefinition ) → String

    Builds the inline style text based on the style definition.

    Parameters

    styleDefinition : Object

    Returns

    String

    Inline style text.