📄 cloudcoloraction.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 19.09.2004 *//* $Id: CloudColorAction.java,v 1.1.4.1 2004/10/17 23:00:08 dpolivaev Exp $ */package freemind.modes.actions;import java.awt.Color;import java.awt.event.ActionEvent;import java.util.ListIterator;import javax.swing.Action;import javax.swing.JMenuItem;import javax.xml.bind.JAXBException;import freemind.controller.Controller;import freemind.controller.MenuItemEnabledListener;import freemind.controller.actions.ActionPair;import freemind.controller.actions.ActorXml;import freemind.controller.actions.FreemindAction;import freemind.controller.actions.generated.instance.CloudColorXmlAction;import freemind.controller.actions.generated.instance.XmlAction;import freemind.main.Tools;import freemind.modes.LineAdapter;import freemind.modes.MindMapNode;import freemind.modes.ModeController;import freemind.modes.mindmapmode.MindMapNodeModel;public class CloudColorAction extends FreemindAction implements ActorXml , MenuItemEnabledListener{ private final ModeController controller; public CloudColorAction(ModeController controller) { super("cloud_color", "images/Colors24.gif", controller); this.controller = controller; controller.getActionFactory().registerActor(this, getDoActionClass()); } public void actionPerformed(ActionEvent e) { Color selectedColor = null; if(controller.getSelected().getCloud() != null) { selectedColor = controller.getSelected().getCloud().getColor(); } Color color = Controller.showCommonJColorChooserDialog(controller .getView().getSelected(), controller.getText("choose_cloud_color"), selectedColor); if (color == null) { return; } for (ListIterator it = controller.getSelecteds().listIterator(); it .hasNext();) { MindMapNodeModel selected = (MindMapNodeModel) it.next(); setCloudColor(selected, color); } } public void setCloudColor(MindMapNode node, Color color) { try { CloudColorXmlAction doAction = createCloudColorXmlAction(node, color); CloudColorXmlAction undoAction = createCloudColorXmlAction(node, (node.getCloud()==null)?null:node.getCloud().getColor()); controller.getActionFactory().startTransaction(this.getClass().getName()); controller.getActionFactory().executeAction(new ActionPair(doAction, undoAction)); controller.getActionFactory().endTransaction(this.getClass().getName()); } catch (JAXBException e) { // TODO Auto-generated catch block e.printStackTrace(); } } public CloudColorXmlAction createCloudColorXmlAction(MindMapNode node, Color color) throws JAXBException { CloudColorXmlAction nodeAction = controller.getActionXmlFactory().createCloudColorXmlAction(); nodeAction.setNode(node.getObjectId(controller)); nodeAction.setColor(Tools.colorToXml(color)); return nodeAction; } public void act(XmlAction action) { if (action instanceof CloudColorXmlAction) { CloudColorXmlAction nodeColorAction = (CloudColorXmlAction) action; Color color = Tools.xmlToColor(nodeColorAction.getColor()); MindMapNode node = controller.getNodeFromID(nodeColorAction.getNode()); // this is not necessary, as this action is not enabled if there is no cloud. if(node.getCloud()==null) { controller.setCloud(node, true); } Color selectedColor = null; if(node.getCloud() != null) { selectedColor = node.getCloud().getColor(); } if (!Tools.safeEquals(color, selectedColor)) { ((LineAdapter) node.getCloud()).setColor(color); // null controller.nodeChanged(node); } } } public Class getDoActionClass() { return CloudColorXmlAction.class; } /** * */ public boolean isEnabled(JMenuItem item, Action action) { return (controller != null) &&(controller.getSelected() != null) && (controller.getSelected().getCloud() != null); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -