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

📄 printoptionpane.java

📁 开源的java 编辑器源代码
💻 JAVA
字号:
/* * PrintOptionPane.java - Printing options panel * :tabSize=8:indentSize=8:noTabs=false: * :folding=explicit:collapseFolds=1: * * Copyright (C) 2000, 2002 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.options;//{{{ Importsimport javax.swing.*;import org.gjt.sp.jedit.gui.FontSelector;import org.gjt.sp.jedit.*;//}}}public class PrintOptionPane extends AbstractOptionPane{	//{{{ PrintOptionPane constructor	public PrintOptionPane()	{		super("print");	} //}}}	//{{{ _init() method	protected void _init()	{		/* Font */		font = new FontSelector(jEdit.getFontProperty("print.font"));		addComponent(jEdit.getProperty("options.print.font"),font);		/* Header */		printHeader = new JCheckBox(jEdit.getProperty("options.print"			+ ".header"));		printHeader.setSelected(jEdit.getBooleanProperty("print.header"));		addComponent(printHeader);		/* Footer */		printFooter = new JCheckBox(jEdit.getProperty("options.print"			+ ".footer"));		printFooter.setSelected(jEdit.getBooleanProperty("print.footer"));		addComponent(printFooter);		/* Line numbering */		printLineNumbers = new JCheckBox(jEdit.getProperty("options.print"			+ ".lineNumbers"));		printLineNumbers.setSelected(jEdit.getBooleanProperty("print.lineNumbers"));		addComponent(printLineNumbers);		/* Color */		color = new JCheckBox(jEdit.getProperty("options.print"			+ ".color"));		color.setSelected(jEdit.getBooleanProperty("print.color"));		addComponent(color);		/* Tab size */		String[] tabSizes = { "2", "4", "8" };		tabSize = new JComboBox(tabSizes);		tabSize.setEditable(true);		tabSize.setSelectedItem(jEdit.getProperty("print.tabSize"));		addComponent(jEdit.getProperty("options.print.tabSize"),tabSize);		addSeparator("options.print.workarounds");		/* Spacing workaround */		glyphVector = new JCheckBox(jEdit.getProperty(			"options.print.glyphVector"));		glyphVector.setSelected(jEdit.getBooleanProperty("print.glyphVector"));		addComponent(glyphVector);		/* Force 1.3 print dialog */		force13 = new JCheckBox(jEdit.getProperty(			"options.print.force13"));		force13.setSelected(jEdit.getBooleanProperty("print.force13"));		if(OperatingSystem.hasJava14())			addComponent(force13);	} //}}}	//{{{ _save() method	protected void _save()	{		jEdit.setFontProperty("print.font",font.getFont());		jEdit.setBooleanProperty("print.header",printHeader.isSelected());		jEdit.setBooleanProperty("print.footer",printFooter.isSelected());		jEdit.setBooleanProperty("print.lineNumbers",printLineNumbers.isSelected());		jEdit.setBooleanProperty("print.color",color.isSelected());		jEdit.setProperty("print.tabSize",(String)tabSize.getSelectedItem());		jEdit.setBooleanProperty("print.glyphVector",glyphVector.isSelected());		jEdit.setBooleanProperty("print.force13",force13.isSelected());	} //}}}	//{{{ Private members	private FontSelector font;	private JCheckBox printHeader;	private JCheckBox printFooter;	private JCheckBox printLineNumbers;	private JCheckBox color;	private JComboBox tabSize;	private JCheckBox glyphVector;	private JCheckBox force13;	//}}}}

⌨️ 快捷键说明

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