xdocumentcontainerlistener.java

来自「java写的浏览器」· Java 代码 · 共 27 行

JAVA
27
字号
/****************************************************************
*              XBrowser  -  eXtended web Browser                *
*                                                               *
*           Copyright (c) 2000-2001  Armond Avanes              *
*     Refer to ReadMe & License files for more information      *
*                                                               *
*                                                               *
*                      By: Armond Avanes                        *
*       Armond555@yahoo.com     &    Armond333@yahoo.com        *
*                http://xbrowser.sourceforge.net/               *
*****************************************************************/
package xbrowser.container.event;

import java.awt.*;
import xbrowser.doc.*;

/** Listener for changing windows set and state in MDI application area. */
public interface XDocumentContainerListener
{
    /** Window is activated in application. */
    public void documentActivated(XDocument doc);
    /** New window is opened in application. */
    public void documentAdded(XDocument doc);
    /** Document is closed in application. */
    public void documentClosed(XDocument doc);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?