We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
< Back to Nebula Main Page
A floating text widget that combines a label an a text in a composite and floats the label above the text.
Instantiate a FloatingText and then operate on the Text.
FloatingText
final FloatingText txt1 = new FloatingText(group, SWT.BORDER); txt1.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false)); txt1.getText().setMessage("Floating text");
And voilà !
You can decorate the FloatingText in various ways, for example by adding a separator and playing with the colors:
final FloatingText txt11 = new FloatingText(group, SWT.BORDER | SWT.SEPARATOR); txt11.setLayoutData(new GridData(GridData.FILL, GridData.FILL, true, false)); txt11.getText().setMessage("Text + Separator + Gray label"); txt11.getLabel().setForeground(txt11.getDisplay().getSystemColor(SWT.COLOR\_GRAY));
We have snippets with more examples in the FloatingText Snippet Directory