绘制玻璃面板 : 玻璃面板 « 图形用户界面 « 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.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Graphics;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionAdapter;

import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;

public class Main extends JComponent {
  public static void main(String[] args) {

    JFrame frame = new JFrame();

    final JButton activate = new JButton("Show");
    frame.add(activate);

    frame.pack();
    frame.setVisible(true);

    final Main glass = new Main(frame);
    frame.setGlassPane(glass);

    activate.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent evt) {
        glass.setVisible(true);
      }
    });
  }

  JFrame frame;

  Point cursor;

  public Main(JFrame frame) {
    this.frame = frame;
    cursor = new Point();
    this.addMouseMotionListener(new MouseMotionAdapter() {
      public void mouseMoved(MouseEvent evt) {
        cursor = new Point(evt.getPoint());
        Main.this.repaint();
      }
    });
    this.addMouseListener(new MouseAdapter() {
      public void mouseClicked(MouseEvent evt) {
        Main.this.setVisible(false);
      }
    });
  }

  public void paint(Graphics g) {
    Container root = frame.getContentPane();
    myPaint(root, g);
  }

  private void myPaint(Component comp, Graphics g) {
    int x = comp.getX();
    int y = comp.getY();
    g.translate(x, y);
    cursor.translate(-x, -y);
    if (comp.contains(cursor)) {
      String cls_name = comp.getClass().getName();
      g.setColor(Color.black);
      g.drawString(cls_name, 010);
    }
    if (comp instanceof Container) {
      Container cont = (Containercomp;
      for (int i = 0; i < cont.getComponentCount(); i++) {
        Component child = cont.getComponent(i);
        myPaint(child, g);
      }
    }

    cursor.translate(x, y);
    g.translate(-x, -y);
  }

}

   
  
Related examples in the same category
1. Show how a glass pane can be used to block mouse (and key!) eventsShow how a glass pane can be used to block mouse (and key!) events
2. 使用GlassPane使用GlassPane
3. 鼠标和键盘事件的应用
4. 取代现有的GlassPane
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.