CaretImage.java Source code

Java tutorial

Introduction

Here is the source code for CaretImage.java

Source

import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Caret;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class CaretImage {

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

        Caret caret = new Caret(shell, SWT.NONE);
        Image image = new Image(display, "yourFile.gif");
        caret.setLocation(10, 10);
        caret.setImage(image);
        caret.setVisible(true);

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

        display.dispose();
    }
}