使用鼠标移动形状 : 鼠标 « 事件 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 事件 » 鼠标屏幕截图 
使用鼠标移动形状
使用鼠标移动形状
  
import java.applet.Applet;
import java.awt.BasicStroke;
import java.awt.BorderLayout;
import java.awt.Canvas;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Frame;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Label;
import java.awt.Rectangle;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.JApplet;
//Use double buffering to remove rectangle flickers and make it repaint faster.
public class ShapeMover extends JApplet {
  static protected Label label = new Label(
      "Drag rectangle around within the area");

  public void init() {

    getContentPane().setLayout(new BorderLayout());
    getContentPane().add(new MyCanvas());

    getContentPane().add("South", label);
  }

  public static void main(String s[]) {
    Frame f = new Frame("ShapeMover");
    f.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
    Applet applet = new ShapeMover();
    f.add("Center", applet);
    applet.init();
    f.pack();
    f.setSize(new Dimension(550250));
    f.show();
  }
}

class MyCanvas extends Canvas implements MouseListener, MouseMotionListener {
  Rectangle rect = new Rectangle(0010050);

  Graphics2D g2;

  int preX, preY;

  boolean isFirstTime = true;

  Rectangle area;

  boolean pressOut = false;

  public MyCanvas() {
    setBackground(Color.white);
    addMouseMotionListener(this);
    addMouseListener(this);
  }

  public void mousePressed(MouseEvent e) {
    preX = rect.x - e.getX();
    preY = rect.y - e.getY();

    if (rect.contains(e.getX(), e.getY()))
      updateLocation(e);
    else {
      ShapeMover.label.setText("Drag it.");
      pressOut = true;
    }
  }

  public void mouseDragged(MouseEvent e) {
    if (!pressOut)
      updateLocation(e);
    else
      ShapeMover.label.setText("Drag it.");
  }

  public void mouseReleased(MouseEvent e) {
    if (rect.contains(e.getX(), e.getY()))
      updateLocation(e);
    else {
      ShapeMover.label.setText("Drag it.");
      pressOut = false;
    }
  }

  public void mouseMoved(MouseEvent e) {
  }

  public void mouseClicked(MouseEvent e) {
  }

  public void mouseExited(MouseEvent e) {
  }

  public void mouseEntered(MouseEvent e) {
  }

  public void updateLocation(MouseEvent e) {
    rect.setLocation(preX + e.getX(), preY + e.getY());

    if (checkRect()) {
      ShapeMover.label.setText(rect.getX() ", " + rect.getY());
    else {
      ShapeMover.label.setText("drag inside the area.");
    }

    repaint();
  }

  public void paint(Graphics g) {
    update(g);
  }

  public void update(Graphics g) {
    Graphics2D g2 = (Graphics2Dg;
    Dimension dim = getSize();
    int w = (intdim.getWidth();
    int h = (intdim.getHeight();
    g2.setStroke(new BasicStroke(8.0f));

    if (isFirstTime) {
      area = new Rectangle(dim);
      rect.setLocation(w / 50, h / 25);
      isFirstTime = false;
    }

    // Clears the rectangle that was previously drawn.
    g2.setPaint(Color.white);
    g2.fillRect(00, w, h);

    g2.setColor(Color.red);
    g2.draw(rect);
    g2.setColor(Color.black);
    g2.fill(rect);
  }

  boolean checkRect() {
    if (area == null) {
      return false;
    }

    if (area.contains(rect.x, rect.y, 10050)) {
      return true;
    }
    int new_x = rect.x;
    int new_y = rect.y;

    if ((rect.x + 100> area.getWidth()) {
      new_x = (intarea.getWidth() 99;
    }
    if (rect.x < 0) {
      new_x = -1;
    }
    if ((rect.y + 50> area.getHeight()) {
      new_y = (intarea.getHeight() 49;
    }
    if (rect.y < 0) {
      new_y = -1;
    }
    rect.setLocation(new_x, new_y);
    return false;
  }
}
           
         
    
  
Related examples in the same category
1. 拖拽的图片拖拽的图片
2. 鼠标滚轮事件演示鼠标滚轮事件演示
3. 鼠标拖动和绘制鼠标拖动和绘制
4. MouseMotion事件:鼠标移动并拖拽MouseMotion事件:鼠标移动并拖拽
5. MouseDrag-简单鼠标拖动窗口MouseDrag-简单鼠标拖动窗口
6. MouseDragClip -- implement simple mouse drag in a window. Speed up by using clipping regions
7. 鼠标运动事件演示鼠标运动事件演示
8. 鼠标事件演示鼠标事件演示
9. 鼠标事件处理
10. 处理鼠标按钮点击事件?
11. 移动图形对象
12. 检测双重和三重点击
13. InputEvent.BUTTON1_MASK (for left mouse button)
14. InputEvent.BUTTON2_MASK (for middle mouse button)
15. InputEvent.BUTTON3_MASK (for right mouse button)
16. 处理鼠标点击
17. 处理鼠标运动
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.