JDesktopPane演示 : 子窗口 « 图形用户界面 « 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 » 图形用户界面 » 子窗口屏幕截图 
JDesktopPane演示
JDesktopPane演示

/*
Definitive Guide to Swing for Java 2, Second Edition
By John Zukowski     
ISBN: 1-893115-78-X
Publisher: APress
*/

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Graphics;
import java.awt.GridLayout;
import java.awt.Polygon;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.Icon;
import javax.swing.JButton;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JOptionPane;

public class Examples {
  public static void main(String args[]) {

    JFrame frame = new JFrame("Example Popup");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Container contentPane = frame.getContentPane();
    contentPane.setLayout(new GridLayout(01));

    JFrame frame2 = new JFrame("Desktop");
    final JDesktopPane desktop = new JDesktopPane();
    frame2.getContentPane().add(desktop);
    JButton pick = new JButton("Pick");
    pick.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        System.out.println("Hi");
      }
    });
    frame2.getContentPane().add(pick, BorderLayout.SOUTH);

    JButton messagePopup = new JButton("Message");
    contentPane.add(messagePopup);
    messagePopup.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        Component source = (ComponentactionEvent.getSource();
        JOptionPane.showMessageDialog(source, "Printing complete");
        JOptionPane.showInternalMessageDialog(desktop,
            "Printing complete");
      }
    });

    JButton confirmPopup = new JButton("Confirm");
    contentPane.add(confirmPopup);
    confirmPopup.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        Component source = (ComponentactionEvent.getSource();
        JOptionPane.showConfirmDialog(source, "Continue printing?");
        JOptionPane.showInternalConfirmDialog(desktop,
            "Continue printing?");
      }
    });

    JButton inputPopup = new JButton("Input");
    contentPane.add(inputPopup);
    inputPopup.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        Component source = (ComponentactionEvent.getSource();
        JOptionPane.showInputDialog(source, "Enter printer name:");
        // Moons of Neptune
        String smallList[] "Naiad""Thalassa""Despina",
            "Galatea""Larissa""Proteus""Triton""Nereid" };
        JOptionPane.showInternalInputDialog(desktop, "Pick a printer",
            "Input", JOptionPane.QUESTION_MESSAGE, null, smallList,
            "Triton");
        // Moons of Saturn - includes two provisional designations to
        // make 20
        String bigList[] "Pan""Atlas""Prometheus""Pandora",
            "Epimetheus""Janus""Mimas""Enceladus""Tethys",
            "Telesto""Calypso""Dione""Helene""Rhea",
            "Titan""Hyperion""Iapetus""Phoebe""S/1995 S 2",
            "S/1981 S 18" };
        //        Object saturnMoon = JOptionPane.showInputDialog(source, "Pick
        // a printer", "Input", JOptionPane.QUESTION_MESSAGE, null,
        // bigList, "Titan");
        Object saturnMoon = JOptionPane.showInputDialog(source,
            "Pick a printer""Input",
            JOptionPane.QUESTION_MESSAGE, null, bigList, null);
        System.out.println("Saturn Moon: " + saturnMoon);
      }
    });

    JButton optionPopup = new JButton("Option");
    contentPane.add(optionPopup);
    optionPopup.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent actionEvent) {
        Component source = (ComponentactionEvent.getSource();

        Icon greenIcon = new DiamondIcon(Color.green);
        Icon redIcon = new DiamondIcon(Color.red);
        Object iconArray[] greenIcon, redIcon };
        JOptionPane.showOptionDialog(source, "Continue printing?",
            "Select an Option", JOptionPane.YES_NO_OPTION,
            JOptionPane.QUESTION_MESSAGE, null, iconArray,
            iconArray[1]);

        Icon blueIcon = new DiamondIcon(Color.blue);
        Object stringArray[] "Do It""No Way" };
        JOptionPane.showInternalOptionDialog(desktop,
            "Continue printing?""Select an Option",
            JOptionPane.YES_NO_OPTION,
            JOptionPane.QUESTION_MESSAGE, blueIcon, stringArray,
            stringArray[0]);
      }
    });

    frame.setSize(300200);
    frame.setVisible(true);
    frame2.setSize(300200);
    frame2.setVisible(true);
  }
}

class DiamondIcon implements Icon {
  private Color color;

  private boolean selected;

  private int width;

  private int height;

  private Polygon poly;

  private static final int DEFAULT_WIDTH = 10;

  private static final int DEFAULT_HEIGHT = 10;

  public DiamondIcon(Color color) {
    this(color, true, DEFAULT_WIDTH, DEFAULT_HEIGHT);
  }

  public DiamondIcon(Color color, boolean selected) {
    this(color, selected, DEFAULT_WIDTH, DEFAULT_HEIGHT);
  }

  public DiamondIcon(Color color, boolean selected, int width, int height) {
    this.color = color;
    this.selected = selected;
    this.width = width;
    this.height = height;
    initPolygon();
  }

  private void initPolygon() {
    poly = new Polygon();
    int halfWidth = width / 2;
    int halfHeight = height / 2;
    poly.addPoint(0, halfHeight);
    poly.addPoint(halfWidth, 0);
    poly.addPoint(width, halfHeight);
    poly.addPoint(halfWidth, height);
  }

  public int getIconHeight() {
    return height;
  }

  public int getIconWidth() {
    return width;
  }

  public void paintIcon(Component c, Graphics g, int x, int y) {
    g.setColor(color);
    g.translate(x, y);
    if (selected) {
      g.fillPolygon(poly);
    else {
      g.drawPolygon(poly);
    }
    g.translate(-x, -y);
  }
}

           
       
Related examples in the same category
1. A quick demonstration of setting up an internal frame in an applicationA quick demonstration of setting up an internal frame in an application
2. A simple extension of the JInternalFrame class that contains a list
3. 桌面和子窗口
4. 子窗口演示子窗口演示
5. InternalFrame试验InternalFrame试验
6. JDesktopPane梯级演示JDesktopPane梯级演示
7. Java X视窗Java X视窗
8. 桌面管理器演示桌面管理器演示
9. Internal Frame Listener Demo Internal Frame Listener Demo
10. 分层窗体演示分层窗体演示
11. LayeredPane演示2 :自定义的MDILayeredPane演示2 :自定义的MDI
12. LayeredPane演示3 :自定义的MDILayeredPane演示3 :自定义的MDI
13. LayeredPane演示4 :自定义的MDILayeredPane演示4 :自定义的MDI
14. 实现InternalFrameListener实现InternalFrameListener
15. InternalFrame演示InternalFrame演示
16. InternalFrameEvent演示InternalFrameEvent演示
17. A few interesting things using JInternalFrames, JDesktopPane, and DesktopManagerA few interesting things using JInternalFrames, JDesktopPane, and DesktopManager
18. 子窗口的应用子窗口的应用
19. Interesting things using JInternalFrames, JDesktopPane, and DesktopManager 2Interesting things using JInternalFrames, JDesktopPane, and DesktopManager 2
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.