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

📄 svgvisualresourcelistitem.java

📁 完全基于java开发的svg矢量绘图工具
💻 JAVA
字号:
/* * Created on 26 août 2004 *  ============================================= GNU LESSER GENERAL PUBLIC LICENSE Version 2.1 ============================================= GLIPS Graffiti Editor, a SVG Editor Copyright (C) 2003 Jordi SUC, Philippe Gil, SARL ITRIS  This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.  This library 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 Lesser General Public License for more details.  You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA  Contact : jordi.suc@itris.fr; philippe.gil@itris.fr  ============================================= */package fr.itris.glips.svgeditor.visualresources;import javax.swing.*;import fr.itris.glips.svgeditor.*;import fr.itris.glips.svgeditor.canvas.*;/** * the class of the items in the list * @author Jordi SUC */public class SVGVisualResourceListItem{    	/**	 * a frame	 */	private SVGFrame frame=null;	    /**     * the resource object     */    private SVGVisualResourceObject resObj;    /**     * the constructor of the class     * @param frame a frame     * @param resObj a resource object     */    public SVGVisualResourceListItem(SVGFrame frame, SVGVisualResourceObject resObj){            	this.frame=frame;        this.resObj=resObj;    }        @Override    public String toString(){    	        return resObj.getResourceId();    }	/**	 * @return Returns the resourceRepresentation.	 */	protected JPanel getResourceRepresentation() {				SVGResourceImageManager resImgManager=frame.getSVGEditor().getResourceImageManager();				return resImgManager.getResourceRepresentation(frame, resObj.getResourceId(), false);	}		/**	 * @return Returns the resObj.	 */	protected SVGVisualResourceObject getVisualResourceObject() {				return resObj;	}}

⌨️ 快捷键说明

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