📄 xdocumentlistener.java
字号:
/****************************************************************
* 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.doc.event;
import java.awt.*;
import xbrowser.doc.*;
/** Hooks to document lifecycle events. */
public interface XDocumentListener
{
/** {@link xbrowser.doc.XDocument} <code>doc</code> started loading. */
public void documentLoadingStarted(XDocument doc);
/** {@link xbrowser.doc.XDocument} <code>doc</code> is loaded or loading was stopped. */
public void documentLoadingFinished(XDocument doc);
/** {@link xbrowser.doc.XDocument} was added to history. */
public void pageAddedToDocumentHistory(XDocument doc, String url);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -