svgmodule.java
来自「完全基于java开发的svg矢量绘图工具」· Java 代码 · 共 45 行
JAVA
45 行
package fr.itris.glips.svgeditor;import java.util.*;import javax.swing.*;import fr.itris.glips.svgeditor.menutool.*;/** * the interface that each module must implement * @author jordi * */public interface SVGModule { /** * @return a map associating a menu item id to its menu item object */ public Hashtable<String, JMenuItem> getMenuItems(); /** * Returns the list of the popup items * @return the list of the popup items */ public Collection<SVGPopupItem> getPopupItems(); /** * @return a map associating a tool item id to its tool item object */ public Hashtable<String, JToggleButton> getToolItems(); /** * @return a map associating a tool item id to its tool item object */ public SVGToolFrame getToolFrame(); /** * cancels all the actions that could be running */ public void cancelActions(); /** * initializes the module */ public void initialize();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?