Styling a SWT label to be italic

java, swt

Solution

Create a new Font object.

Display display = new Display();
Shell shell = new Shell(display);
shell.setLayout(new GridLayout());
Label label = new Label(shell, SWT.NONE);
label.setText("I am italic");
FontData fontData = label.getFont().getFontData()[0];
Font font = new Font(display, new FontData(fontData.getName(), fontData
    .getHeight(), SWT.ITALIC));
label.setFont(font);
shell.open();
while (!shell.isDisposed()) {
  if (!display.readAndDispatch())
    display.sleep();
}
font.dispose();
display.dispose();

Problem

How would I go about styling a SWT label created along the following lines so it is displayed italicised? ``` Label label = formToolkit.createLabel(composite, "My label name"); ```

Original source