Mouse Listener Example : Mouse Key « SWT JFace Eclipse « Java






Mouse Listener Example

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.MouseEvent;
import org.eclipse.swt.events.MouseListener;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;

public class MouseListenerExample {
  final Display d;

  final Shell s;

  public MouseListenerExample() {
    d = new Display();
    s = new Shell(d);

    s.setSize(250, 200);
    
    s.setText("A MouseListener Example");
    s.open();

    s.addMouseListener(new MouseListener() {
      public void mouseDown(MouseEvent e) {
        Label l = new Label(s, SWT.FLAT);
        l.setText("Mouse Button Down at:" + e.x + " " + e.y);
        l.setBounds(e.x, e.y, 150, 15);

      }

      public void mouseUp(MouseEvent e) {
        Label l = new Label(s, SWT.FLAT);
        l.setText("Mouse Button up at:" + e.x + " " + e.y);
        l.setBounds(e.x, e.y, 150, 15);
      }

      public void mouseDoubleClick(MouseEvent e) {

      }
    });

    while (!s.isDisposed()) {
      if (!d.readAndDispatch())
        d.sleep();
    }
    d.dispose();
  }

  public static void main() {
    new MouseListenerExample();
  }

}

           
       








Related examples in the same category

1.Mouse Track Example
2.Mouse Move Listener Example
3.SWT Mouse: A tracker (drag when 'torn off')SWT Mouse: A tracker (drag when 'torn off')
4.SWT Mouse : drag on mouse downSWT Mouse : drag on mouse down
5.UI Automation (for testing tools) snippet: post key eventsUI Automation (for testing tools) snippet: post key events
6.UI Automation (for testing tools) snippet: post mouse eventsUI Automation (for testing tools) snippet: post mouse events
7.Detect mouse enter, exit and hover eventsDetect mouse enter, exit and hover events
8.Intercept mouse events (drag a button with the mouse)Intercept mouse events (drag a button with the mouse)
9.How to implement hover help feedback using the MouseTrackListenerHow to implement hover help feedback using the MouseTrackListener