对话框和创建自己的组件 : 对话框 « 图形用户界面 « 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 » 图形用户界面 » 对话框屏幕截图 
对话框和创建自己的组件
对话框和创建自己的组件

// : c14:TicTacToe.java
// Dialog boxes and creating your own components.
// <applet code=TicTacToe width=200 height=100></applet>
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.Graphics;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;

import javax.swing.JApplet;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;

public class TicTacToe extends JApplet {
  private JTextField rows = new JTextField("3"), cols = new JTextField("3");

  private static final int BLANK = 0, XX = 1, OO = 2;

  class ToeDialog extends JDialog {
    private int turn = XX; // Start with x's turn

    ToeDialog(int cellsWide, int cellsHigh) {
      setTitle("The game itself");
      Container cp = getContentPane();
      cp.setLayout(new GridLayout(cellsWide, cellsHigh));
      for (int i = 0; i < cellsWide * cellsHigh; i++)
        cp.add(new ToeButton());
      setSize(cellsWide * 50, cellsHigh * 50);
      setDefaultCloseOperation(DISPOSE_ON_CLOSE);
    }

    class ToeButton extends JPanel {
      private int state = BLANK;

      public ToeButton() {
        addMouseListener(new ML());
      }

      public void paintComponent(Graphics g) {
        super.paintComponent(g);
        int x1 = 0, y1 = 0, x2 = getSize().width - 1, y2 = getSize().height - 1;
        g.drawRect(x1, y1, x2, y2);
        x1 = x2 / 4;
        y1 = y2 / 4;
        int wide = x2 / 2, high = y2 / 2;
        if (state == XX) {
          g.drawLine(x1, y1, x1 + wide, y1 + high);
          g.drawLine(x1, y1 + high, x1 + wide, y1);
        }
        if (state == OO)
          g.drawOval(x1, y1, x1 + wide / 2, y1 + high / 2);
      }

      class ML extends MouseAdapter {
        public void mousePressed(MouseEvent e) {
          if (state == BLANK) {
            state = turn;
            turn = (turn == XX ? OO : XX);
          else
            state = (state == XX ? OO : XX);
          repaint();
        }
      }
    }
  }

  class BL implements ActionListener {
    public void actionPerformed(ActionEvent e) {
      JDialog d = new ToeDialog(Integer.parseInt(rows.getText()), Integer
          .parseInt(cols.getText()));
      d.setVisible(true);
    }
  }

  public void init() {
    JPanel p = new JPanel();
    p.setLayout(new GridLayout(22));
    p.add(new JLabel("Rows", JLabel.CENTER));
    p.add(rows);
    p.add(new JLabel("Columns", JLabel.CENTER));
    p.add(cols);
    Container cp = getContentPane();
    cp.add(p, BorderLayout.NORTH);
    JButton b = new JButton("go");
    b.addActionListener(new BL());
    cp.add(b, BorderLayout.SOUTH);
  }

  public static void main(String[] args) {
    run(new TicTacToe()200100);
  }

  public static void run(JApplet applet, int width, int height) {
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().add(applet);
    frame.setSize(width, height);
    applet.init();
    applet.start();
    frame.setVisible(true);
  }
///:~



           
       
Related examples in the same category
1. 创建和使用对话框创建和使用对话框
2. 画框,可以很容易地支持内部框架对话框画框,可以很容易地支持内部框架对话框
3. 使用JOptionPane,自定义的选项列表使用JOptionPane,自定义的选项列表
4. 区别不同类型的选项窗格区别不同类型的选项窗格
5. 表决对话框表决对话框
6. 创建简单的关于对话框创建简单的关于对话框
7. 对话框分隔器对话框分隔器
8. 消息对话框消息对话框
9. 错误信息对话框错误信息对话框
10. 信息对话框定制标志信息对话框定制标志
11. 输入对话框与用户定义的标识输入对话框与用户定义的标识
12. 确认对话框确认对话框
13. 默认按钮对话框:按Enter键以激活默认按钮对话框:按Enter键以激活
14. 简单的对话:是否简单的对话:是否
15. 提示用户的ID和密码
16. 简单的保存对话框演示简单的保存对话框演示
17. JOptionPane实例JOptionPane实例
18. 创建弹出彩色样本创建弹出彩色样本
19. 简单输入对话框简单输入对话框
20. 没有按钮的对话框没有按钮的对话框
21. Message Dialog demo Message Dialog demo
22. 对话框Esc键对话框Esc键
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.