|
| 1 | +/* |
| 2 | + * Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + * |
| 23 | + */ |
| 24 | +package com.sun.hotspot.igv.view.actions; |
| 25 | + |
| 26 | +import com.sun.hotspot.igv.view.EditorTopComponent; |
| 27 | +import javax.swing.AbstractAction; |
| 28 | +import javax.swing.Action; |
| 29 | +import javax.swing.ImageIcon; |
| 30 | +import javax.swing.SwingUtilities; |
| 31 | +import org.openide.awt.ActionID; |
| 32 | +import org.openide.awt.ActionReference; |
| 33 | +import org.openide.awt.ActionReferences; |
| 34 | +import org.openide.awt.ActionRegistration; |
| 35 | +import org.openide.util.HelpCtx; |
| 36 | +import org.openide.util.ImageUtilities; |
| 37 | +import org.openide.util.NbBundle; |
| 38 | +import org.openide.util.actions.CallableSystemAction; |
| 39 | + |
| 40 | +@ActionID(category = "View", id = "com.sun.hotspot.igv.view.actions.GlobalSelectionAction") |
| 41 | +@ActionRegistration(displayName = "#CTL_GlobalSelectionAction") |
| 42 | +@ActionReferences({ |
| 43 | + @ActionReference(path = "Menu/Options", position = 300), |
| 44 | + @ActionReference(path = "Shortcuts", name = "D-L") |
| 45 | +}) |
| 46 | +@NbBundle.Messages({ |
| 47 | + "CTL_GlobalSelectionAction=Link selection globally", |
| 48 | + "HINT_GlobalSelectionAction=Link node selection globally" |
| 49 | +}) |
| 50 | +public final class GlobalSelectionAction extends CallableSystemAction { |
| 51 | + |
| 52 | + private boolean isSelected; |
| 53 | + |
| 54 | + public GlobalSelectionAction() { |
| 55 | + putValue(AbstractAction.SMALL_ICON, new ImageIcon(ImageUtilities.loadImage(iconResource()))); |
| 56 | + putValue(Action.SHORT_DESCRIPTION, getDescription()); |
| 57 | + putValue(SELECTED_KEY, false); |
| 58 | + isSelected = false; |
| 59 | + } |
| 60 | + |
| 61 | + @Override |
| 62 | + public String getName() { |
| 63 | + return NbBundle.getMessage(GlobalSelectionAction.class, "CTL_GlobalSelectionAction"); |
| 64 | + } |
| 65 | + |
| 66 | + @Override |
| 67 | + public HelpCtx getHelpCtx() { |
| 68 | + return HelpCtx.DEFAULT_HELP; |
| 69 | + } |
| 70 | + |
| 71 | + @Override |
| 72 | + public void performAction() { |
| 73 | + isSelected = !isSelected; |
| 74 | + putValue(SELECTED_KEY, isSelected); |
| 75 | + EditorTopComponent editor = EditorTopComponent.getActive(); |
| 76 | + if (editor != null) { |
| 77 | + SwingUtilities.invokeLater(() -> editor.getModel().setGlobalSelection(isSelected)); |
| 78 | + } |
| 79 | + } |
| 80 | + |
| 81 | + public boolean isSelected() { |
| 82 | + return isSelected; |
| 83 | + } |
| 84 | + |
| 85 | + private String getDescription() { |
| 86 | + return NbBundle.getMessage(GlobalSelectionAction.class, "HINT_GlobalSelectionAction"); |
| 87 | + } |
| 88 | + |
| 89 | + @Override |
| 90 | + protected boolean asynchronous() { |
| 91 | + return false; |
| 92 | + } |
| 93 | + |
| 94 | + @Override |
| 95 | + public String iconResource() { |
| 96 | + return "com/sun/hotspot/igv/view/images/chain.png"; |
| 97 | + } |
| 98 | +} |
0 commit comments