Class RichTextEditorConfiguration
java.lang.Object
org.eclipse.nebula.widgets.richtext.RichTextEditorConfiguration
public class RichTextEditorConfiguration
extends java.lang.Object
Configuration class that is used for general configurations of the CKEditor instance.
Note: This configuration class replaces the ToolbarConfiguration.
- Since:
- 1.1
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringDEFAULT_LANGUAGEKey for the default language configuration.static java.lang.StringLANGUAGEKey for the language configuration.static java.lang.StringREMOVE_BUTTONSKey for toolbar buttons that should not be rendered.static java.lang.StringREMOVE_PLUGINSKey to configure a list of plugins that must not be loaded.static java.lang.StringRESIZE_DIRKey to configure the dimensions for which the editor resizing is enabled.static java.lang.StringRESIZE_ENABLEDKey to configure whether to enable the resizing feature.static java.lang.StringRESIZE_MINHEIGHTKey to configure the minimum editor height, in pixels, when resizing the editor interface by using the resize handle..static java.lang.StringRESIZE_MINWIDTHKey to configure the minimum editor width, in pixels, when resizing the editor interface by using the resize handle..static java.util.Collection<java.lang.String>SUPPORTED_LANGUAGESCollection of languages that are supported by CKEditor.static java.lang.StringTOOLBAR_CAN_COLLAPSEKey to configure whether the toolbar can be collapsed by the user.static java.lang.StringTOOLBAR_GROUPSKey for toolbar groups configuration.static java.lang.StringTOOLBAR_STARTUP_EXPANDEDKey to configure whether the toolbar must start expanded when the editor is loaded. -
Constructor Summary
Constructors Constructor Description RichTextEditorConfiguration()Creates a new instance for general configurations that are added to the created CKEditor instance at initialization.RichTextEditorConfiguration(ToolbarConfiguration config)Deprecated.Use the no-arg constructor instead and set the values directly to the createdRichTextEditorConfiguration -
Method Summary
Modifier and Type Method Description voidaddDefaultToolbarButton(java.lang.String... buttonNames)Adds the CKEditor default button for the given name to the toolbar.voidaddToolbarButton(ToolbarButton button)Adds a custom button to the CKEditor toolbar.voidaddToolbarButton(ToolbarButton button, org.eclipse.swt.browser.BrowserFunction function)Adds a custom button to the CKEditor toolbar.voidcustomizeToolbar()Adds custom buttons to the toolbar of the CKEditor based on the configurations applied in thisRichTextEditorConfiguration.voiddispose()Dispose the registeredBrowserFunctions.java.util.Map<java.lang.String,java.lang.Object>getAllOptions()org.eclipse.swt.browser.BrowsergetBrowser()protected java.lang.StringgetCustomButtonConfiguration()java.lang.ObjectgetOption(java.lang.String key)Returns a configuration option set in thisRichTextEditorConfiguration.booleanisAutoUrlFormattingDisabled()voidremoveDefaultToolbarButton(java.lang.String... buttonNames)Removes the CKEditor default button for the given name from the toolbar.voidremoveToolbarButton(ToolbarButton button)Removes the givenToolbarButtonfrom the local list of custom toolbar buttons.voidsetAutoUrlFormattingDisabled(boolean autoUrlFormattingDisabled)Configure if the auto-formatting of URLs should be disabled on Windows systems with an Internet Explorer as system browser.voidsetBrowser(org.eclipse.swt.browser.Browser browser)voidsetDefaultLanguage(java.lang.String lang)voidsetDefaultLanguage(java.util.Locale locale)voidsetLanguage(java.lang.String lang)voidsetLanguage(java.util.Locale locale)voidsetMinSize(int minWidth, int minHeight)The minimum editor size, in pixels, when resizing the editor interface by using the resize handle.voidsetOption(java.lang.String key, java.lang.Object value)Adds a new option to the configuration.voidsetRemoveFormat(boolean removeFormat)voidsetRemovePasteFromWord(boolean removePasteFromWord)voidsetRemovePasteText(boolean removePasteText)voidsetRemoveStyles(boolean removeStyles)voidsetResizable(boolean resizable)Whether to enable the resizing feature.voidsetResizeDirection(java.lang.String direction)voidsetToolbarCollapsible(boolean toolbarCollapsible)Configure if the toolbar should be collapsible.voidsetToolbarInitialExpanded(boolean toolbarInitialExpanded)Configure if the toolbar should be initially expanded.
-
Field Details
-
DEFAULT_LANGUAGE
public static final java.lang.String DEFAULT_LANGUAGEKey for the default language configuration.- See Also:
- Constant Field Values
-
LANGUAGE
public static final java.lang.String LANGUAGEKey for the language configuration.- See Also:
- Constant Field Values
-
TOOLBAR_GROUPS
public static final java.lang.String TOOLBAR_GROUPSKey for toolbar groups configuration.- See Also:
- Constant Field Values
-
REMOVE_BUTTONS
public static final java.lang.String REMOVE_BUTTONSKey for toolbar buttons that should not be rendered.- See Also:
- Constant Field Values
-
TOOLBAR_CAN_COLLAPSE
public static final java.lang.String TOOLBAR_CAN_COLLAPSEKey to configure whether the toolbar can be collapsed by the user.- See Also:
- Constant Field Values
-
TOOLBAR_STARTUP_EXPANDED
public static final java.lang.String TOOLBAR_STARTUP_EXPANDEDKey to configure whether the toolbar must start expanded when the editor is loaded.- See Also:
- Constant Field Values
-
REMOVE_PLUGINS
public static final java.lang.String REMOVE_PLUGINSKey to configure a list of plugins that must not be loaded.- See Also:
- Constant Field Values
-
RESIZE_ENABLED
public static final java.lang.String RESIZE_ENABLEDKey to configure whether to enable the resizing feature.- See Also:
- Constant Field Values
-
RESIZE_DIR
public static final java.lang.String RESIZE_DIRKey to configure the dimensions for which the editor resizing is enabled. Possible values are both, vertical, and horizontal.- See Also:
- Constant Field Values
-
RESIZE_MINWIDTH
public static final java.lang.String RESIZE_MINWIDTHKey to configure the minimum editor width, in pixels, when resizing the editor interface by using the resize handle..- See Also:
- Constant Field Values
-
RESIZE_MINHEIGHT
public static final java.lang.String RESIZE_MINHEIGHTKey to configure the minimum editor height, in pixels, when resizing the editor interface by using the resize handle..- See Also:
- Constant Field Values
-
SUPPORTED_LANGUAGES
public static final java.util.Collection<java.lang.String> SUPPORTED_LANGUAGESCollection of languages that are supported by CKEditor.
-
-
Constructor Details
-
RichTextEditorConfiguration
public RichTextEditorConfiguration()Creates a new instance for general configurations that are added to the created CKEditor instance at initialization. -
RichTextEditorConfiguration
Deprecated.Use the no-arg constructor instead and set the values directly to the createdRichTextEditorConfigurationCreates aRichTextEditorConfigurationthat is initialized with the configuration values out of the givenToolbarConfiguration. This constructor is used for backwards compatibility only in case adopters use the old ToolbarConfiguration. Therefore it is deprecated from the beginning.- Parameters:
config- TheToolbarConfigurationthat should be used to initialized theRichTextEditorConfiguration.- Since:
- 1.2
-
-
Method Details
-
setOption
public void setOption(java.lang.String key, java.lang.Object value)Adds a new option to the configuration.- Parameters:
key- The configuration option key.value- The configuration option value.- See Also:
- CKEDITOR.config
-
getOption
public java.lang.Object getOption(java.lang.String key)Returns a configuration option set in thisRichTextEditorConfiguration.- Parameters:
key- The configuration option key for which the value is requested.- Returns:
- The configuration option value for the given key or
nullin case there is nothing configured for that key.
-
getAllOptions
public java.util.Map<java.lang.String,java.lang.Object> getAllOptions()- Returns:
- An unmodifiable map that contains all configuration option values.
-
setLanguage
public void setLanguage(java.lang.String lang)- Parameters:
lang- The user interface language localization to use. If left empty, the editor will automatically be localized to the user language. If the user language is not supported, the language specified in the defaultLanguage configuration setting is used.
-
setLanguage
public void setLanguage(java.util.Locale locale)- Parameters:
locale- The user interface language localization to use. If left empty, the editor will automatically be localized to the user language. If the user language is not supported, the language specified in the defaultLanguage configuration setting is used.
-
setDefaultLanguage
public void setDefaultLanguage(java.lang.String lang)- Parameters:
lang- The language to be used if the language setting is left empty and it is not possible to localize the editor to the user language.
-
setDefaultLanguage
public void setDefaultLanguage(java.util.Locale locale)- Parameters:
locale- The language to be used if the language setting is left empty and it is not possible to localize the editor to the user language.
-
setResizable
public void setResizable(boolean resizable)Whether to enable the resizing feature. If this feature is disabled, the resize handle will not be visible.- Parameters:
resizable-trueto enable the resizing feature.
-
setMinSize
public void setMinSize(int minWidth, int minHeight)The minimum editor size, in pixels, when resizing the editor interface by using the resize handle. Note: It falls back to editor's actual height if it is smaller than the default value.- Parameters:
minWidth- the minimum editor width, in pixelsminHeight- the minimum editor height, in pixels
-
setResizeDirection
public void setResizeDirection(java.lang.String direction)- Parameters:
direction- The dimensions for which the editor resizing is enabled. Possible values areboth,vertical, andhorizontal.
-
setToolbarCollapsible
public void setToolbarCollapsible(boolean toolbarCollapsible)Configure if the toolbar should be collapsible. Default isfalse.- Parameters:
toolbarCollapsible-trueif the toolbar should be collapsible,falseif not.
-
setToolbarInitialExpanded
public void setToolbarInitialExpanded(boolean toolbarInitialExpanded)Configure if the toolbar should be initially expanded. Is only interpreted if#toolbarCollapsibleis set totrue. Default istrue.- Parameters:
toolbarInitialExpanded-trueif the toolbar should be initially expanded,falseif not.
-
setRemovePasteText
public void setRemovePasteText(boolean removePasteText)- Parameters:
removePasteText-trueto remove the paste text button from the toolbar.
-
setRemovePasteFromWord
public void setRemovePasteFromWord(boolean removePasteFromWord)- Parameters:
removePasteFromWord-trueto remove the paste from word button from the toolbar.
-
setRemoveStyles
public void setRemoveStyles(boolean removeStyles)- Parameters:
removeStyles-trueto remove the styles combo box from the toolbar.
-
setRemoveFormat
public void setRemoveFormat(boolean removeFormat)- Parameters:
removeFormat-trueto remove format combo box from the toolbar.
-
addDefaultToolbarButton
public void addDefaultToolbarButton(java.lang.String... buttonNames)Adds the CKEditor default button for the given name to the toolbar.Note: This works only for buttons that have been removed using
removeDefaultToolbarButton(String[])- Parameters:
buttonNames- The names of the CKEditor default button to add.
-
removeDefaultToolbarButton
public void removeDefaultToolbarButton(java.lang.String... buttonNames)Removes the CKEditor default button for the given name from the toolbar.- Parameters:
buttonNames- The names of the CKEditor default button to remove.
-
getCustomButtonConfiguration
protected java.lang.String getCustomButtonConfiguration()- Returns:
- The configuration for adding custom commands and buttons to the toolbar.
-
addToolbarButton
Adds a custom button to the CKEditor toolbar. Internally creates an anonymousBrowserFunctionthat executesToolbarButton.execute()via callback on pressing the button.- Parameters:
button- The button to add.
-
addToolbarButton
public void addToolbarButton(ToolbarButton button, org.eclipse.swt.browser.BrowserFunction function)Adds a custom button to the CKEditor toolbar. Executes the givenBrowserFunctionvia callback on pressing the button.- Parameters:
button- The button to add.function- TheBrowserFunctionthat should be called on pressing the button.
-
removeToolbarButton
Removes the givenToolbarButtonfrom the local list of custom toolbar buttons.- Parameters:
button- TheToolbarButtonto remove.
-
customizeToolbar
public void customizeToolbar()Adds custom buttons to the toolbar of the CKEditor based on the configurations applied in thisRichTextEditorConfiguration. -
getBrowser
public org.eclipse.swt.browser.Browser getBrowser()- Returns:
- The
Browserinstance to which thisRichTextEditorConfigurationis connected to.
-
setBrowser
public void setBrowser(org.eclipse.swt.browser.Browser browser)- Parameters:
browser- TheBrowserinstance to which thisRichTextEditorConfigurationshould be connected to.
-
dispose
public void dispose()Dispose the registeredBrowserFunctions. -
isAutoUrlFormattingDisabled
public boolean isAutoUrlFormattingDisabled()- Returns:
trueif the auto-formatting of URLs in IE is disabled,falseif not.- Since:
- 1.5
-
setAutoUrlFormattingDisabled
public void setAutoUrlFormattingDisabled(boolean autoUrlFormattingDisabled)Configure if the auto-formatting of URLs should be disabled on Windows systems with an Internet Explorer as system browser.- Parameters:
autoUrlFormattingDisabled-trueif the auto-formatting of URLs in IE should be disabled,falseif not.- Since:
- 1.5
-