Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Add Text and Image Both in a SWT LABEL

Is there any way to add Text and Image in SWT label in a single line. Once I add image, text goes off.

like image 613
Abhishek Choudhary Avatar asked May 29 '12 06:05

Abhishek Choudhary


1 Answers

No you can't have an image and text simultaneously in a Label (unless you custom draw it). Else use org.eclipse.swt.custom.CLabel:

Code:

import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.CLabel;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

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

        Image image = new Image(display, "next.png");

        CLabel label = new CLabel(shell, SWT.BORDER);
        label.setImage(image);
        label.setText("This is a CLabel !!");

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


        while (!shell.isDisposed()) {
            if (!display.readAndDispatch())
                display.sleep();
        }
        if(image != null)
        {
            image.dispose();
            image = null;
        }
        display.dispose();

    }
}

Output:

enter image description here

like image 126
Favonius Avatar answered Oct 26 '22 12:10

Favonius