Question

I tried and it sets a new simple border.

My simple code is:

import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;

public class LabelBorder {

    public static void main (String [] args) {
        Display display = new Display ();
        Shell shell = new Shell(display);

        //here it makes simple border

        Label label = new Label(shell, SWT.BORDER);
        label.setSize(100,30);
        label.setLocation(50, 50);
        label.setText("I am a Label");


        shell.setSize(300,300);
        shell.open ();
        while (!shell.isDisposed ()) {
            if (!display.readAndDispatch ()) display.sleep ();
        }
        display.dispose ();
    }
}

I want to make rounded border and some color with a label and center Text

Help me.

Was it helpful?

Solution

This should be a good starting point:

public static void main(String[] args)
{
    final Display display = new Display();
    final Shell shell = new Shell(display);
    shell.setLayout(new FillLayout());
    shell.setText("StackOverflow");

    final RoundedLabel label = new RoundedLabel(shell, SWT.NONE);
    label.setText("This is a label");

    shell.pack();
    shell.open();

    while (!shell.isDisposed())
    {
        if (!display.readAndDispatch())
        {
            display.sleep();
        }
    }

    display.dispose();
}

private static class RoundedLabel extends Canvas
{
    private String           text   = "";
    private static final int MARGIN = 3;

    public RoundedLabel(Composite parent, int style)
    {
        super(parent, style);

        addPaintListener(new PaintListener()
        {
            @Override
            public void paintControl(PaintEvent e)
            {
                RoundedLabel.this.paintControl(e);
            }
        });
    }

    void paintControl(PaintEvent e)
    {
        Point rect = getSize();
        e.gc.fillRectangle(0, 0, rect.x, rect.x);
        e.gc.drawRoundRectangle(MARGIN, MARGIN, rect.x - 2 * MARGIN - 1, rect.y - 2 * MARGIN - 1, MARGIN, MARGIN);
        e.gc.drawText(text, 2 * MARGIN, 2 * MARGIN);
    }

    public String getText()
    {
        return text;
    }

    public void setText(String text)
    {
        this.text = text;
        redraw();
    }

    @Override
    public Point computeSize(int wHint, int hHint, boolean changed)
    {
        GC gc = new GC(this);

        Point pt = gc.stringExtent(text);

        gc.dispose();

        return new Point(pt.x + 4 * MARGIN, pt.y + 4 * MARGIN);
    }
}

Looks like this:

enter image description here


Feel free to play around with the margin

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top