📄 edgestyleaction.java
字号:
/* * FreeMind - A Program for creating and viewing Mindmaps Copyright (C) * 2000-2004 Joerg Mueller, Daniel Polansky, Christian Foltin and others. * * See COPYING for Details * * 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 (at your option) 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. * * Created on 05.10.2004 *//* $Id: EdgeStyleAction.java,v 1.1.4.2 2005/06/16 19:27:04 christianfoltin Exp $ */package freemind.modes.actions;import javax.xml.bind.JAXBException;import freemind.controller.actions.ActionPair;import freemind.controller.actions.NodeActorXml;import freemind.controller.actions.generated.instance.EdgeStyleFormatAction;import freemind.controller.actions.generated.instance.XmlAction;import freemind.main.Tools;import freemind.modes.EdgeAdapter;import freemind.modes.MapAdapter;import freemind.modes.MindMapNode;import freemind.modes.ModeController;public class EdgeStyleAction extends NodeGeneralAction implements NodeActorXml { private String mStyle; public EdgeStyleAction(ModeController controller, String style) { super(controller, null, null); setName(/*controller.getText("edge_style") +*/ controller.getText(style)); this.mStyle = style; addActor(this); } public ActionPair apply(MapAdapter model, MindMapNode selected) throws JAXBException { return getActionPair(selected, mStyle); } public Class getDoActionClass() { return EdgeStyleFormatAction.class; } public void setEdgeStyle(MindMapNode node, String style) { try { modeController.getActionFactory().startTransaction( (String) getValue(NAME)); modeController.getActionFactory().executeAction( getActionPair(node, style)); modeController.getActionFactory().endTransaction( (String) getValue(NAME)); } catch (JAXBException e) { e.printStackTrace(); } } private ActionPair getActionPair(MindMapNode selected, String style) throws JAXBException { EdgeStyleFormatAction styleAction = createNodeStyleFormatAction( selected, style); EdgeStyleFormatAction undoStyleAction = createNodeStyleFormatAction( selected, selected.getEdge().getStyle()); return new ActionPair(styleAction, undoStyleAction); } private EdgeStyleFormatAction createNodeStyleFormatAction( MindMapNode selected, String style) throws JAXBException { EdgeStyleFormatAction edgeStyleAction = getActionXmlFactory() .createEdgeStyleFormatAction(); edgeStyleAction.setNode(getNodeID(selected)); edgeStyleAction.setStyle(style); return edgeStyleAction; } public void act(XmlAction action) { if (action instanceof EdgeStyleFormatAction) { EdgeStyleFormatAction edgeStyleAction = (EdgeStyleFormatAction) action; MindMapNode node = getNodeFromID(edgeStyleAction.getNode()); if (!Tools.safeEquals(node.getEdge().getStyle(), edgeStyleAction.getStyle())) { ((EdgeAdapter) node.getEdge()).setStyle(edgeStyleAction.getStyle()); modeController.nodeStructureChanged(node); } } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -