📄 pagexyobject.java
字号:
/* * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -