Dialog boxes and creating your own components : Dialog « Swing JFC « 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 » Swing JFC » DialogScreenshots 
Dialog boxes and creating your own components
Dialog boxes and creating your own components
  
// : 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. Creating and using Dialog BoxesCreating and using Dialog Boxes
2. A frame that can easily support internal frame dialogsA frame that can easily support internal frame dialogs
3. An example of using the JOptionPane with a custom list of options in anAn example of using the JOptionPane with a custom list of options in an
4. See the differences between various types of option panesSee the differences between various types of option panes
5. Vote DialogVote Dialog
6. Create simple about dialogCreate simple about dialog
7. Dialog separatorDialog separator
8. Message dialogMessage dialog
9. Error message dialogError message dialog
10. Information dialog with customized logoInformation dialog with customized logo
11. Input dialog with user-defined logoInput dialog with user-defined logo
12. Confirmation dialogConfirmation dialog
13. Default button for dialog: press Enter to activateDefault button for dialog: press Enter to activate
14. Simple dialog for asking a yes no questionSimple dialog for asking a yes no question
15. Class to Prompt the User for an ID and Password
16. Simple Save Dialog demoSimple Save Dialog demo
17. Demonstrate JOptionPaneDemonstrate JOptionPane
18. Create Color Sample PopupCreate Color Sample Popup
19. Simple Input DialogSimple Input Dialog
20. No button dialogNo button dialog
21. Message Dialog demo Message Dialog demo
22. Escape Key close Dialog
23. Dialog can be closed by pressing the escape key
24. Dialog which displays indeterminate progress
25. Dialog with Escape KeyDialog with Escape Key
26. Modal Message Dialog
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.