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

📄 drafts.java

📁 利用設定來製作簡易地 applet, 可以很快速的寫出 applet 來.
💻 JAVA
字号:
package thinlet.drafts;

import java.awt.*;
import thinlet.*;

/**
 *
 */
public class Drafts extends Thinlet {

	/**
	 *
	 */
	public Drafts() {
		//setFont(new Font("Trebuchet MS", Font.PLAIN, 12));
		try {
			add(parse("drafts.xml"));
		} catch (Exception exc) { exc.printStackTrace(); }
	}
	
	/**
	 *
	 */
	public void loadDraft(Object splitpane, Object tree) {
		if (getCount(splitpane) > 2) {
			remove(getItem(splitpane, 1));
		}
		Object node = getSelectedItem(tree);
		if (node != null) {
			Object draft = getProperty(node, "draft");
			if (draft == null) {
				String ui = (String) getProperty(node, "ui");
				String logic = (String) getProperty(node, "logic");
				if ((ui != null) && (logic != null)) {
					try {
						Object handler = Class.forName(logic).getConstructor(null).newInstance(null);
						draft = parse(ui, handler);
						putProperty(node, "draft", draft);
					} catch (Exception exc) { exc.printStackTrace(); }
				}
			}
			if (draft != null) {
				add(splitpane, draft, 1);
			}
		}
	}
	
	/**
	 *
	 */
	public void paint(Graphics g) {
		Utilities.getUtilities().initGraphics(g);
		super.paint(g);
	}
	
	/**
	 *
	 */
	protected void handleException(Throwable throwable) {
		new ExceptionDialog(this, throwable);
	}
	
	/**
	 *
	 */
	public static void main(String[] args) {
		new FrameLauncher("Thinlet Drafts", new Drafts(), 580, 435);
	}
}

⌨️ 快捷键说明

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