Package org.eclipse.swt.widgets

Examples of org.eclipse.swt.widgets.Shell.addKeyListener()


    shell.addPaintListener(new PaintListener() {
      public void paintControl(PaintEvent e) {
        e.gc.drawImage(image, 0, 0);
      }
    });
    shell.addKeyListener(new KeyListener() {
      public void keyPressed(KeyEvent e) {
        if (e.character == SWT.ESC)
          shell.close();
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.