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

📄 registers.java

📁 用java 编写的源码开放的文本编辑器。有很多有用的特性
💻 JAVA
字号:
/* * Registers.java - Register manager * :tabSize=8:indentSize=8:noTabs=false: * :folding=explicit:collapseFolds=1: * * Copyright (C) 1999, 2000, 2001 Slava Pestov * * 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 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. */package org.gjt.sp.jedit;//{{{ Importsimport java.awt.datatransfer.*;import java.awt.Toolkit;import java.io.*;import org.gjt.sp.jedit.gui.*;import org.gjt.sp.jedit.textarea.*;import org.gjt.sp.util.Log;//}}}/** * jEdit's registers are an extension of the clipboard metaphor.<p> * * A {@link Registers.Register} is string of text indexed by a * single character. Typically the text is taken from selected buffer text * and the index character is a keyboard character selected by the user.<p> * * This class defines a number of static methods * that give each register the properties of a virtual clipboard.<p> * * Two classes implement the {@link Registers.Register} interface. A * {@link Registers.ClipboardRegister} is tied to the contents of the * system clipboard. jEdit assigns a * {@link Registers.ClipboardRegister} to the register indexed under * the character <code>$</code>. A * {@link Registers.StringRegister} is created for registers assigned * by the user. In addition, jEdit assigns <code>%</code> to * the last text segment selected in the text area. On Windows this is a * {@link Registers.StringRegister}, on Unix under Java 2 version 1.4, a * {@link Registers.ClipboardRegister}. * * @author Slava Pestov * @author John Gellene (API documentation) * @version $Id: Registers.java,v 1.10 2003/02/08 18:53:02 spestov Exp $ */public class Registers{	//{{{ copy() method	/**	 * Copies the text selected in the text area into the specified register.	 * This will replace the existing contents of the designated register.	 *	 * @param textArea The text area	 * @param register The register	 * @since jEdit 2.7pre2	 */	public static void copy(JEditTextArea textArea, char register)	{		String selection = textArea.getSelectedText();		if(selection == null)			return;		setRegister(register,selection);		HistoryModel.getModel("clipboard").addItem(selection);	} //}}}	//{{{ cut() method	/**	 * Copies the text selected in the text area into the specified	 * register, and then removes it from the buffer.	 *	 * @param textArea The text area	 * @param register The register	 * @since jEdit 2.7pre2	 */	public static void cut(JEditTextArea textArea, char register)	{		if(textArea.isEditable())		{			String selection = textArea.getSelectedText();			if(selection == null)				return;			setRegister(register,selection);			HistoryModel.getModel("clipboard").addItem(selection);			textArea.setSelectedText("");		}		else			textArea.getToolkit().beep();	} //}}}	//{{{ append() method	/**	 * Appends the text selected in the text area to the specified register,	 * with a newline between the old and new text.	 * @param textArea The text area	 * @param register The register	 */	public static void append(JEditTextArea textArea, char register)	{		append(textArea,register,"\n",false);	} //}}}	//{{{ append() method	/**	 * Appends the text selected in the text area to the specified register.	 * @param textArea The text area	 * @param register The register	 * @param separator The separator to insert between the old and new text	 */	public static void append(JEditTextArea textArea, char register,		String separator)	{		append(textArea,register,separator,false);	} //}}}	//{{{ append() method	/**	 * Appends the text selected in the  text area to the specified register.	 * @param textArea The text area	 * @param register The register	 * @param separator The text to insert between the old and new text	 * @param cut Should the current selection be removed?	 * @since jEdit 3.2pre1	 */	public static void append(JEditTextArea textArea, char register,		String separator, boolean cut)	{		if(cut && !textArea.isEditable())		{			textArea.getToolkit().beep();			return;		}		String selection = textArea.getSelectedText();		if(selection == null)			return;		Register reg = getRegister(register);		if(reg != null)		{			String registerContents = reg.toString();			if(registerContents != null)			{				if(registerContents.endsWith(separator))					selection = registerContents + selection;				else					selection = registerContents + separator + selection;			}		}		setRegister(register,selection);		HistoryModel.getModel("clipboard").addItem(selection);		if(cut)			textArea.setSelectedText("");	} //}}}	//{{{ paste() method	/**	 * Insets the contents of the specified register into the text area.	 * @param textArea The text area	 * @param register The register	 * @since jEdit 2.7pre2	 */	public static void paste(JEditTextArea textArea, char register)	{		paste(textArea,register,false);	} //}}}	//{{{ paste() method	/**	 * Inserts the contents of the specified register into the text area.	 * @param textArea The text area	 * @param register The register	 * @param vertical Vertical (columnar) paste	 * @since jEdit 4.1pre1	 */	public static void paste(JEditTextArea textArea, char register,		boolean vertical)	{		if(!textArea.isEditable())		{			textArea.getToolkit().beep();			return;		}		Register reg = getRegister(register);		if(reg == null)		{			textArea.getToolkit().beep();			return;		}		else		{			String selection = reg.toString();			if(selection == null)			{				textArea.getToolkit().beep();				return;			}			if(vertical && textArea.getSelectionCount() == 0)			{				int caret = textArea.getCaretPosition();				int caretLine = textArea.getCaretLine();				Selection.Rect rect = new Selection.Rect(					caretLine,caret,caretLine,caret);				textArea.setSelectedText(rect,selection);			}			else				textArea.setSelectedText(selection);			HistoryModel.getModel("clipboard").addItem(selection);		}	} //}}}	//{{{ getRegister() method	/**	 * Returns the specified register.	 * @param name The name	 */	public static Register getRegister(char name)	{		if(registers == null || name >= registers.length)			return null;		else			return registers[name];	} //}}}	//{{{ setRegister() method	/**	 * Sets the specified register.	 * @param name The name	 * @param newRegister The new value	 */	public static void setRegister(char name, Register newRegister)	{		if(name >= registers.length)		{			Register[] newRegisters = new Register[				Math.min(1<<16,name * 2)];			System.arraycopy(registers,0,newRegisters,0,				registers.length);			registers = newRegisters;		}		registers[name] = newRegister;	} //}}}	//{{{ setRegister() method	/**	 * Sets the specified register.	 * @param name The name	 * @param value The new value	 */	public static void setRegister(char name, String value)	{		if(name >= registers.length)		{			Register[] newRegisters = new Register[				Math.min(1<<16,name * 2)];			System.arraycopy(registers,0,newRegisters,0,				registers.length);			registers = newRegisters;			registers[name] = new StringRegister(value);		}		else		{			Register register = registers[name];			if(register != null)				register.setValue(value);			else				registers[name] = new StringRegister(value);		}	} //}}}	//{{{ clearRegister() method	/**	 * Sets the value of the specified register to <code>null</code>.	 * @param name The register name	 */	public static void clearRegister(char name)	{		if(name >= registers.length)			return;		Register register = registers[name];		if(name == '$' || name == '%')			register.setValue("");		else			registers[name] = null;	} //}}}	//{{{ getRegisters() method	/**	 * Returns an array of all available registers. Some of the elements	 * of this array might be <code>null</code>.	 */	public static Register[] getRegisters()	{		return registers;	} //}}}	//{{{ Register interface	/**	 * A register.	 */	public interface Register	{		/**		 * Converts to a string.		 */		String toString();		/**		 * Sets the register contents.		 */		void setValue(String value);	} //}}}	//{{{ ClipboardRegister class	/**	 * A clipboard register. Register "$" should always be an	 * instance of this.	 */	public static class ClipboardRegister implements Register	{		Clipboard clipboard;		public ClipboardRegister(Clipboard clipboard)		{			this.clipboard = clipboard;		}		/**		 * Sets the clipboard contents.		 */		public void setValue(String value)		{			StringSelection selection = new StringSelection(value);			clipboard.setContents(selection,null);		}		/**		 * Returns the clipboard contents.		 */		public String toString()		{			try			{				String selection = (String)(clipboard					.getContents(this).getTransferData(					DataFlavor.stringFlavor));				boolean trailingEOL = (selection.endsWith("\n")					|| selection.endsWith(System.getProperty(					"line.separator")));				// Some Java versions return the clipboard				// contents using the native line separator,				// so have to convert it here				BufferedReader in = new BufferedReader(					new StringReader(selection));				StringBuffer buf = new StringBuffer();				String line;				while((line = in.readLine()) != null)				{					buf.append(line);					buf.append('\n');				}				// remove trailing \n				if(!trailingEOL)					buf.setLength(buf.length() - 1);				return buf.toString();			}			catch(Exception e)			{				Log.log(Log.NOTICE,this,e);				return null;			}		}	} //}}}	//{{{ StringRegister class	/**	 * Register that stores a string.	 */	public static class StringRegister implements Register	{		private String value;		/**		 * Creates a new string register.		 * @param value The contents		 */		public StringRegister(String value)		{			this.value = value;		}		/**		 * Sets the register contents.		 */		public void setValue(String value)		{			this.value = value;		}		/**		 * Converts to a string.		 */		public String toString()		{			return value;		}		/**		 * Called when this register is no longer available. This		 * implementation does nothing.		 */		public void dispose() {}	} //}}}	//{{{ Private members	private static Register[] registers;	private Registers() {}	static	{		registers = new Register[256];		registers['$'] = new ClipboardRegister(Toolkit			.getDefaultToolkit().getSystemClipboard());	} //}}}}

⌨️ 快捷键说明

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