pagexyobject.java
来自「iReport-0.4.1-src是iReport的源代码,iReport是一个」· Java 代码 · 共 62 行
JAVA
62 行
/* * PageNumberObject.java * * Created on 17 settembre 2004, 19.15 */package it.businesslogic.ireport.gui.library.objects;import it.businesslogic.ireport.gui.library.*;import it.businesslogic.ireport.*;/** * * @author Administrator */public class PageXYObject extends AbstractLibraryObject { private static javax.swing.ImageIcon defaultIcon; static { defaultIcon = new javax.swing.ImageIcon(AbstractLibraryObject.class.getResource("/it/businesslogic/ireport/icons/library/page_number.png")); } /** Creates a new instance of PageNumberObject */ public PageXYObject() { } public String getName() { return it.businesslogic.ireport.util.I18n.getString("gui.library.objects.pagexy","Page X of Y"); } public void drop(java.awt.dnd.DropTargetDropEvent dtde) { String exp = it.businesslogic.ireport.util.I18n.getString("gui.library.objects.pagexy","Page X of Y"); String exp1 = exp.substring(0, exp.indexOf("Y")); String exp2 = exp.substring(exp.indexOf("Y")); exp1 = it.businesslogic.ireport.util.Misc.string_replace("\\\"", "\"", exp1); exp1 = "\"" + exp1 + "\""; exp1 = it.businesslogic.ireport.util.Misc.string_replace("\" + $V{PAGE_NUMBER} + \"", "X", exp1); exp2 = it.businesslogic.ireport.util.Misc.string_replace("\\\"", "\"", exp2); exp2 = "\"" + exp2 + "\""; exp2 = it.businesslogic.ireport.util.Misc.string_replace("\" + $V{PAGE_NUMBER} + \"", "Y", exp2); TextFieldReportElement re = getReportFrame().dropNewTextField( dtde.getLocation(), exp1, "java.lang.String", "Now" ); java.awt.Point location = dtde.getLocation(); re.setAlign("Right"); location.x += re.getWidth(); getReportFrame().dropNewTextField( location, exp2, "java.lang.String", "Report" ); getReportFrame().addSelectedElement( re ); } public javax.swing.ImageIcon getIcon() { return defaultIcon; } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?