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

📄 uitextareaimpl.java

📁 这是我模仿window自带的小游戏扫雷编的,很简单,只实现了扫雷的基本功能,现拿出来与大家分享!
💻 JAVA
字号:
/*
 * Created on 27-Apr-2004
 * Created by Paul Gardner
 * Copyright (C) 2004, 2005, 2006 Aelitis, All Rights Reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 * 
 * AELITIS, SAS au capital de 46,603.30 euros
 * 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France.
 *
 */

package org.gudy.azureus2.pluginsimpl.local.ui.components;

/**
 * @author parg
 *
 */

import java.io.*;

import org.gudy.azureus2.core3.util.AEMonitor;
import org.gudy.azureus2.core3.util.AETemporaryFileHandler;
import org.gudy.azureus2.core3.util.FileUtil;

import org.gudy.azureus2.plugins.ui.components.*;


public class 
UITextAreaImpl	
	extends		UIComponentImpl
	implements 	UITextArea
{
	private int	max_size		= DEFAULT_MAX_SIZE;
	
	PrintWriter pw;
	
	File file;
	
	boolean useFile = true;
	
	AEMonitor file_mon = new AEMonitor("filemon");
	
	public
	UITextAreaImpl()
	{
		setText("");
	}
	
	public void
	setText(
		String		text )
	{
		if (useFile) {
			try {
				file_mon.enter();
				if (pw == null) {
					try {
						file = AETemporaryFileHandler.createTempFile();

						FileWriter fr = new FileWriter(file);
						pw = new PrintWriter(fr);

						pw.print(text);
						pw.flush();

						return;
					} catch (IOException e) {
					}
				}
			} finally {
				file_mon.exit();
			}
		}
		
		// has property change listener, or error while doing file (fallthrough)
		
		if ( text.length() > max_size ){
				
			int	size_to_show = max_size - 10000;
			
			if ( size_to_show < 0 ){
				
				size_to_show	= max_size;
			}
			
			text = text.substring( text.length() - size_to_show );
		}
		
		setProperty( PT_VALUE, text );
	}
		
	public void
	appendText(
		String		text )
	{
		if (useFile && pw != null) {
			try {
				file_mon.enter();
				pw.print(text);
				pw.flush();
				return;
			} finally {
				file_mon.exit();
			}
		}

		String	str = getText();
		
		if ( str == null ){
			
			setText( text );
			
		}else{
			
			setText( str + text );
		}
	}
	
	public String
	getText()
	{
		if (useFile && pw != null) {
			return getFileText();
		}

		return((String)getProperty( PT_VALUE ));
	}
	
	public void
	setMaximumSize(
		int	_max_size )
	{
		max_size	= _max_size;
	}
	
	private String getFileText() {
		boolean recreate = pw != null;

		try {
			file_mon.enter();

			if (recreate) {
				pw.close();
			}

			String text = null;
			try {
				text = FileUtil.readFileEndAsString(file, max_size);
			} catch (IOException e) {
				e.printStackTrace();
			}

			if (text == null) {
				text = "";
			}

			if (recreate) {
				try {
					FileWriter fr = new FileWriter(file, true);
					pw = new PrintWriter(fr);
				} catch (IOException e) {
					useFile = false;
					e.printStackTrace();
				}
			}
			return text;
		} finally {
			file_mon.exit();
		}
	}
	
	public void addPropertyChangeListener(UIPropertyChangeListener l) {
		if (useFile) {
			if (pw != null) {
				try {
					file_mon.enter();

					pw.close();
					pw = null;
				} finally {
					file_mon.exit();
				}
			}

			useFile = false;
			setText(getFileText());
		}

		super.addPropertyChangeListener(l);
	}
}

⌨️ 快捷键说明

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