Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Nebula TitledSeparator

Revision as of 09:20, 18 February 2018 by Unnamed Poltroon (Talk)

Introduction

TitledSeparator.png

An enhanced separator, with a title and/or an image.

Usage

The titled separator is composed of a text and optionally an image, initialized by the methods setText() and setImage().

You can change the alignment of the text (left, center, right) by using the method setAlignment(int value) with the following values : SWT.LEFT, SWT.CENTER and SWT.LEFT.

Finally, you can change the foreground color, the background color and the font by using the setters setForeground(), setBackground() and setFont().

Example

An example called TitledSeparatorSnippet.java is located in the plugin org.eclipse.nebula.widgets.opal.titledseparator.snippets.

This example is also available here : https://git.eclipse.org/c/nebula/org.eclipse.nebula.git/tree/widgets/opal/titledseparator/org.eclipse.nebula.widgets.opal.titledseparator.snippets/src/org/eclipse/nebula/widgets/opal/titledseparator/snippets/TitledSeparatorSnippet.java

Back to the top