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

📄 schemecontroller.java

📁 思维导图(Mind Mapping)以放射性思考(Radiant Thinking)为基础的收放自如方式
💻 JAVA
字号:
/*FreeMind - A Program for creating and viewing Mindmaps *Copyright (C) 2000-2001  Joerg Mueller <joergmueller@bigfoot.com> *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. *//*$Id: SchemeController.java,v 1.10.18.2 2004/12/19 09:00:41 christianfoltin Exp $*/package freemind.modes.schememode;import java.awt.event.ActionEvent;import java.io.File;import java.util.StringTokenizer;import javax.swing.AbstractAction;import javax.swing.Action;import javax.swing.JFileChooser;import javax.swing.JMenuItem;import javax.swing.JOptionPane;import javax.swing.JPopupMenu;import javax.swing.KeyStroke;import freemind.controller.MenuBar;import freemind.controller.StructuredMenuHolder;import freemind.modes.ControllerAdapter;import freemind.modes.MapAdapter;import freemind.modes.MindMapNode;import freemind.modes.Mode;import freemind.modes.actions.EditAction;import freemind.modes.actions.NewMapAction;public class SchemeController extends ControllerAdapter {    Action newMap = new NewMapAction(this, this);    Action open = new OpenAction(this);    Action save = new SaveAction(this);    Action saveAs = new SaveAsAction(this);    Action evaluate = new EvaluateAction();    Action edit = new EditAction(this);    private JPopupMenu popupmenu = new SchemePopupMenu(this);    public SchemeController(Mode mode) {	super(mode);    }    public MapAdapter newModel() {	return new SchemeMapModel(getFrame());    }    public MindMapNode newNode(Object userObject) {    	return new SchemeNodeModel(getFrame());        }//    //private//    private MindMap getModel() {// 	return (MindMap)getController().getModel();//    }	public boolean saveAs() {		JFileChooser chooser = null;		if ((getMap().getFile() != null) && (getMap().getFile().getParentFile() != null)) {			chooser = new JFileChooser(getMap().getFile().getParentFile());		} else {			chooser = new JFileChooser();		}		//chooser.setLocale(currentLocale);		if (getFileFilter() != null) {			chooser.addChoosableFileFilter(getFileFilter());		}		int returnVal = chooser.showSaveDialog(getView());		if (returnVal==JFileChooser.APPROVE_OPTION) {//ok pressed			File f = chooser.getSelectedFile();			//Force the extension to be .mm			//      String ext = Tools.getExtension(f.getName());			//      if(!ext.equals("mm")) {			//          f = new File(f.getParent(),f.getName()+".mm");			//      }			save(f);			//Update the name of the map			updateMapModuleName();			return true;		}		return false;	}    public JPopupMenu getPopupMenu() {      return this.popupmenu;    }    private class EvaluateAction extends AbstractAction {	EvaluateAction() {	    super(getController().getResourceString("scheme_evaluate"));	}	public void actionPerformed(ActionEvent e) {	    String rawCode = ((SchemeMapModel)getMap()).getCode().trim();	    System.out.println(rawCode);	    StringTokenizer code = new StringTokenizer(rawCode,",");	    String output = "Output: \n";	    //	    while(code.hasMoreTokens()) {	    //		output = output + (SI.eval(code.nextToken()).toString())+"\n";	    //	    }	    JOptionPane.showMessageDialog(getView(),output);	}    }    /* (non-Javadoc)     * @see freemind.modes.ModeController#updateMenus(freemind.controller.StructuredMenuHolder)     */    public void updateMenus(StructuredMenuHolder holder) {		holder.addAction(newMap, MenuBar.FILE_MENU+"open/new");		holder.addAction(open, MenuBar.FILE_MENU+"open/open");		holder.addAction(save, MenuBar.FILE_MENU+"open/save");		holder.addAction(saveAs, MenuBar.FILE_MENU+"open/saveAs");		JMenuItem editItem = holder.addAction(edit, MenuBar.EDIT_MENU+"edit/editItem");		editItem.setAccelerator(KeyStroke.getKeyStroke(getFrame().getProperty("keystroke_edit")));//		JMenuItem addNewItem = holder.addAction(addNew, MenuBar.EDIT_MENU+"edit/newItem");//		addNewItem.setAccelerator(KeyStroke.getKeyStroke(getFrame().getProperty("keystroke_add")));		//JMenuItem removeItem = holder.addAction(remove, MenuBar.EDIT_MENU+"edit/removeItem");		//removeItem.setAccelerator(KeyStroke.getKeyStroke(getFrame().getProperty("keystroke_remove")));		holder.addAction(evaluate, MenuBar.EDIT_MENU+"edit/evaluate");		holder.addAction(toggleFolded, MenuBar.EDIT_MENU+"edit/toggleFolded");    }}

⌨️ 快捷键说明

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