实现InternalFrameListener : 子窗口 « 图形用户界面 « 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 » 图形用户界面 » 子窗口屏幕截图 
实现InternalFrameListener
实现InternalFrameListener

/* From http://java.sun.com/docs/books/tutorial/index.html */

/*
 * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * -Redistribution of source code must retain the above copyright notice, this
 *  list of conditions and the following disclaimer.
 *
 * -Redistribution in binary form must reproduce the above copyright notice,
 *  this list of conditions and the following disclaimer in the documentation
 *  and/or other materials provided with the distribution.
 *
 * Neither the name of Sun Microsystems, Inc. or the names of contributors may
 * be used to endorse or promote products derived from this software without
 * specific prior written permission.
 *
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
 * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
 * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN")
 * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
 * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
 * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
 * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
 * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
 * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 * You acknowledge that this software is not designed, licensed or intended
 * for use in the design, construction, operation or maintenance of any
 * nuclear facility.
 */

/*
 * InternalFrameEventDemo.java is a 1.4 example that requires no other files.
 */

import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.BorderFactory;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JInternalFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.WindowConstants;
import javax.swing.event.InternalFrameEvent;
import javax.swing.event.InternalFrameListener;

public class InternalFrameEventDemo extends JFrame implements
    InternalFrameListener, ActionListener {
  JTextArea display;

  JDesktopPane desktop;

  JInternalFrame displayWindow;

  JInternalFrame listenedToWindow;

  static final String SHOW = "show";

  static final String CLEAR = "clear";

  String newline = "\n";

  static final int desktopWidth = 500;

  static final int desktopHeight = 300;

  public InternalFrameEventDemo(String title) {
    super(title);

    //Set up the GUI.
    desktop = new JDesktopPane();
    desktop.putClientProperty("JDesktopPane.dragMode""outline");
    //Because we use pack, it's not enough to call setSize.
    //We must set the desktop's preferred size.
    desktop.setPreferredSize(new Dimension(desktopWidth, desktopHeight));
    setContentPane(desktop);

    createDisplayWindow();
    desktop.add(displayWindow)//DON'T FORGET THIS!!!
    Dimension displaySize = displayWindow.getSize();
    displayWindow.setSize(desktopWidth, displaySize.height);
  }

  //Create the window that displays event information.
  protected void createDisplayWindow() {
    JButton b1 = new JButton("Show internal frame");
    b1.setActionCommand(SHOW);
    b1.addActionListener(this);

    JButton b2 = new JButton("Clear event info");
    b2.setActionCommand(CLEAR);
    b2.addActionListener(this);

    display = new JTextArea(330);
    display.setEditable(false);
    JScrollPane textScroller = new JScrollPane(display);
    //Have to supply a preferred size, or else the scroll
    //area will try to stay as large as the text area.
    textScroller.setPreferredSize(new Dimension(20075));
    textScroller.setMinimumSize(new Dimension(1010));

    displayWindow = new JInternalFrame("Event Watcher", true, //resizable
        false, //not closable
        false, //not maximizable
        true)//iconifiable
    JPanel contentPane = new JPanel();
    contentPane.setBorder(BorderFactory.createEmptyBorder(10101010));
    contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.PAGE_AXIS));
    b1.setAlignmentX(CENTER_ALIGNMENT);
    contentPane.add(b1);
    contentPane.add(Box.createRigidArea(new Dimension(05)));
    contentPane.add(textScroller);
    contentPane.add(Box.createRigidArea(new Dimension(05)));
    b2.setAlignmentX(CENTER_ALIGNMENT);
    contentPane.add(b2);

    displayWindow.setContentPane(contentPane);
    displayWindow.pack();
    displayWindow.setVisible(true);
  }

  public void internalFrameClosing(InternalFrameEvent e) {
    displayMessage("Internal frame closing", e);
  }

  public void internalFrameClosed(InternalFrameEvent e) {
    displayMessage("Internal frame closed", e);
  }

  public void internalFrameOpened(InternalFrameEvent e) {
    displayMessage("Internal frame opened", e);
  }

  public void internalFrameIconified(InternalFrameEvent e) {
    displayMessage("Internal frame iconified", e);
  }

  public void internalFrameDeiconified(InternalFrameEvent e) {
    displayMessage("Internal frame deiconified", e);
  }

  public void internalFrameActivated(InternalFrameEvent e) {
    displayMessage("Internal frame activated", e);
  }

  public void internalFrameDeactivated(InternalFrameEvent e) {
    displayMessage("Internal frame deactivated", e);
  }

  //Add some text to the text area.
  void displayMessage(String prefix, InternalFrameEvent e) {
    String s = prefix + ": " + e.getSource();
    display.append(s + newline);
    display.setCaretPosition(display.getDocument().getLength());
  }

  //Handle events on the two buttons.
  public void actionPerformed(ActionEvent e) {
    if (SHOW.equals(e.getActionCommand())) {
      //They clicked the Show button.

      //Create the internal frame if necessary.
      if (listenedToWindow == null) {
        listenedToWindow = new JInternalFrame("Event Generator", true, //resizable
            true, //closable
            true, //maximizable
            true)//iconifiable
        //We want to reuse the internal frame, so we need to
        //make it hide (instead of being disposed of, which is
        //the default) when the user closes it.
        listenedToWindow
            .setDefaultCloseOperation(WindowConstants.HIDE_ON_CLOSE);

        //Add an internal frame listener so we can see
        //what internal frame events it generates.
        listenedToWindow.addInternalFrameListener(this);

        //And we mustn't forget to add it to the desktop pane!
        desktop.add(listenedToWindow);

        //Set its size and location. We'd use pack() to set the size
        //if the window contained anything.
        listenedToWindow.setSize(300100);
        listenedToWindow.setLocation(desktopWidth / 2
            - listenedToWindow.getWidth() 2, desktopHeight
            - listenedToWindow.getHeight());
      }

      //Show the internal frame.
      listenedToWindow.setVisible(true);

    else //They clicked the Clear button.
      display.setText("");
    }
  }

  /**
   * Create the GUI and show it. For thread safety, this method should be
   * invoked from the event-dispatching thread.
   */
  private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);

    //Create and set up the window.
    JFrame frame = new InternalFrameEventDemo("InternalFrameEventDemo");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    //Display the window.
    frame.pack();
    frame.setVisible(true);
  }

  public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
      public void run() {
        createAndShowGUI();
      }
    });
  }
}

           
       
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. JDesktopPane演示JDesktopPane演示
4. 桌面和子窗口
5. 子窗口演示子窗口演示
6. InternalFrame试验InternalFrame试验
7. JDesktopPane梯级演示JDesktopPane梯级演示
8. Java X视窗Java X视窗
9. 桌面管理器演示桌面管理器演示
10. Internal Frame Listener Demo Internal Frame Listener Demo
11. 分层窗体演示分层窗体演示
12. LayeredPane演示2 :自定义的MDILayeredPane演示2 :自定义的MDI
13. LayeredPane演示3 :自定义的MDILayeredPane演示3 :自定义的MDI
14. LayeredPane演示4 :自定义的MDILayeredPane演示4 :自定义的MDI
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.