Intercept mouse events (drag a button with the mouse) : Mouse Key « SWT JFace Eclipse « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » SWT JFace Eclipse » Mouse KeyScreenshots 
Intercept mouse events (drag a button with the mouse)
Intercept mouse events (drag a button with the mouse)



 
/*
 * Composite example snippet: intercept mouse events (drag a button with the mouse)
 *
 * For a list of all SWT example snippets see
 * http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/dev.html#snippets
 */
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;

public class Snippet46 {
public static void main (String [] args) {
  Display display = new Display ();
  final Shell shell = new Shell (display);
  final Composite composite = new Composite (shell, SWT.NONE);
  composite.setEnabled (false);
  composite.setLayout (new FillLayout ());
  Button button = new Button (composite, SWT.PUSH);
  button.setText ("Button");
  composite.pack ();
  composite.setLocation (1010);
  final Point [] offset = new Point [1];
  Listener listener = new Listener () {
    public void handleEvent (Event event) {
      switch (event.type) {
        case SWT.MouseDown:
          Rectangle rect = composite.getBounds ();
          if (rect.contains (event.x, event.y)) {
            Point pt1 = composite.toDisplay (00);
            Point pt2 = shell.toDisplay (event.x, event.y)
            offset [0new Point (pt2.x - pt1.x, pt2.y - pt1.y);
          }
          break;
        case SWT.MouseMove:
          if (offset [0!= null) {
            Point pt = offset [0];
            composite.setLocation (event.x - pt.x, event.y - pt.y);
          }
          break;
        case SWT.MouseUp:
          offset [0null;
          break;
      }
    }
  };
  shell.addListener (SWT.MouseDown, listener);
  shell.addListener (SWT.MouseUp, listener);
  shell.addListener (SWT.MouseMove, listener);
  shell.setSize (300300);
  shell.open ();
  while (!shell.isDisposed ()) {
    if (!display.readAndDispatch ()) display.sleep ();
  }
  display.dispose ();
}
}

           
       
Related examples in the same category
1. Mouse Track Example
2. Mouse Move Listener Example
3. Mouse Listener Example
4. SWT Mouse: A tracker (drag when 'torn off')SWT Mouse: A tracker (drag when 'torn off')
5. SWT Mouse : drag on mouse downSWT Mouse : drag on mouse down
6. UI Automation (for testing tools) snippet: post key eventsUI Automation (for testing tools) snippet: post key events
7. UI Automation (for testing tools) snippet: post mouse eventsUI Automation (for testing tools) snippet: post mouse events
8. Detect mouse enter, exit and hover eventsDetect mouse enter, exit and hover events
9. How to implement hover help feedback using the MouseTrackListenerHow to implement hover help feedback using the MouseTrackListener
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.