/* * RapidMiner * * Copyright (C) 2001-2014 by RapidMiner and the contributors * * Complete list of developers available at our web site: * * http://rapidminer.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see http://www.gnu.org/licenses/. */ package com.rapidminer.gui; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.LinkedList; import java.util.List; import javax.swing.JCheckBoxMenuItem; import javax.swing.event.MenuEvent; import javax.swing.event.MenuListener; import com.rapidminer.gui.processeditor.ProcessLogTab; import com.rapidminer.gui.processeditor.results.ResultTab; import com.rapidminer.gui.tools.ResourceMenu; import com.vlsolutions.swing.docking.DockKey; import com.vlsolutions.swing.docking.DockableState; import com.vlsolutions.swing.docking.DockingContext; /** * * @author Simon Fischer */ public class DockableMenu extends ResourceMenu { private static final long serialVersionUID = -5602297374075268751L; private static final List<String> HIDE_IN_DOCKABLE_MENU_PREFIX_REGISTRY = new LinkedList<String>(); /** * Here you can register prefixes that will be used to test if * a {@link DockableState} start with the provided prefix and thus won't be shown * in the created {@link DockableMenu}. * * @param prefix the prefix of {@link DockableState} {@link DockKey}s to hide */ public static void registerHideInDockableMenuPrefix(String prefix) { HIDE_IN_DOCKABLE_MENU_PREFIX_REGISTRY.add(prefix); } static { registerHideInDockableMenuPrefix(ResultTab.DOCKKEY_PREFIX); registerHideInDockableMenuPrefix(ProcessLogTab.DOCKKEY_PREFIX); } //private DockingDesktop dockingDesktop; private final DockingContext dockingContext; public DockableMenu(DockingContext dockingContext) { super("show_view"); this.dockingContext = dockingContext; addMenuListener(new MenuListener() { @Override public void menuCanceled(MenuEvent e) { } @Override public void menuDeselected(MenuEvent e) { } @Override public void menuSelected(MenuEvent e) { fill(); } }); } private void fill() { removeAll(); DockableState[] dockables = (dockingContext.getDesktopList().get(0)).getDockables(); List<DockableState> sorted = new LinkedList<DockableState>(); sorted.addAll(Arrays.asList(dockables)); Collections.sort(sorted, new Comparator<DockableState>() { @Override public int compare(DockableState o1, DockableState o2) { return o1.getDockable().getDockKey().getName().compareTo(o2.getDockable().getDockKey().getName()); } }); for (final DockableState state : sorted) { String key = state.getDockable().getDockKey().getKey(); boolean cont = false; for(String prefix : HIDE_IN_DOCKABLE_MENU_PREFIX_REGISTRY) { if(key.startsWith(prefix)) { cont = true; break; } } if(cont) { continue; } JCheckBoxMenuItem item = new JCheckBoxMenuItem( state.getDockable().getDockKey().getName(), state.getDockable().getDockKey().getIcon()); item.setSelected(!state.isClosed()); item.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { if (state.isClosed()) { (dockingContext.getDesktopList().get(0)).addDockable(state.getDockable()); } else { (dockingContext.getDesktopList().get(0)).close(state.getDockable()); } } }); // special handling for results overview dockable in Results perspective // this dockable is not allowed to be closed so we disable this item while in said perspective if (RapidMinerGUI.getMainFrame().getPerspectives().getCurrentPerspective().getName().equals("result") && RapidMinerGUI.getMainFrame().getResultDisplay().getDockKey().equals(state.getDockable().getDockKey())) { item.setEnabled(false); } add(item); } } public DockingContext getDockingContext() { return dockingContext; } }