⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xhistorypane.java

📁 java写的浏览器
💻 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.plugin.defaults.historypane;

import java.awt.*;
import javax.swing.*;

import xbrowser.plugin.*;
import xbrowser.widgets.*;
import xbrowser.options.*;

public class XHistoryPane implements XGUIPlugin
{
	public void init()
	{
	}

	public void start()
	{
	}

	public void stop()
	{
	}

	public void destroy()
	{
	}

	public void setContext(XPluginContext context)
	{
		this.context = context;
		context.getResourceManager().initResourceBundle("XHistoryPane");
	}

	public Component getComponent()
	{
	XHistoryTable history_table = new XHistoryTable();

		history_table.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
		return( new JScrollPane(history_table) );
	}

	public String getTitle()
	{
		return context.getResourceManager().getProperty(this, "Title");
	}

	public XOptionPage getOptionPage()
	{
		return null;
	}

// Attributes:
	private XPluginContext context;
}

⌨️ 快捷键说明

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