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

📄 deleteaction.java

📁 EclipseTrader is a stock exchange analysis system, featuring shares pricing watch, intraday and hi
💻 JAVA
字号:
/* * Copyright (c) 2004-2006 Marco Maccaferri and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: *     Marco Maccaferri - initial API and implementation */package net.sourceforge.eclipsetrader.charts.internal;import net.sourceforge.eclipsetrader.charts.events.IndicatorSelection;import net.sourceforge.eclipsetrader.charts.events.ObjectSelection;import net.sourceforge.eclipsetrader.charts.views.ChartView;import net.sourceforge.eclipsetrader.core.CorePlugin;import net.sourceforge.eclipsetrader.core.db.ChartIndicator;import net.sourceforge.eclipsetrader.core.db.ChartObject;import net.sourceforge.eclipsetrader.core.db.ChartTab;import org.eclipse.jface.action.Action;import org.eclipse.jface.dialogs.MessageDialog;import org.eclipse.jface.viewers.ISelection;import org.eclipse.jface.viewers.ISelectionChangedListener;import org.eclipse.jface.viewers.SelectionChangedEvent;import org.eclipse.ui.ISharedImages;import org.eclipse.ui.IWorkbenchWindow;import org.eclipse.ui.PlatformUI;public class DeleteAction extends Action implements ISelectionChangedListener{    private ISelection selection;    public DeleteAction(ChartView view)    {        view.getSite().getSelectionProvider().addSelectionChangedListener(this);        setText(Messages.DeleteAction_Delete);        ISharedImages images = PlatformUI.getWorkbench().getSharedImages();        setDisabledImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_DELETE_DISABLED));        setImageDescriptor(images.getImageDescriptor(ISharedImages.IMG_TOOL_DELETE));        setEnabled(false);    }    /* (non-Javadoc)     * @see org.eclipse.jface.action.Action#run()     */    public void run()    {        IWorkbenchWindow window = PlatformUI.getWorkbench().getActiveWorkbenchWindow();        if (MessageDialog.openConfirm(window.getShell(), Messages.DeleteAction_ConfirmDialogTitle, Messages.DeleteAction_ConfirmDialogMessage))        {            ChartTab tab = null;            if (selection instanceof IndicatorSelection)            {                ChartIndicator indicator = ((IndicatorSelection)selection).getIndicator();                tab = indicator.getParent();                tab.getIndicators().remove(indicator);            }            else if (selection instanceof ObjectSelection)            {                ChartObject object = ((ObjectSelection)selection).getObject();                tab = object.getParent();                tab.getObjects().remove(object);            }            if (tab != null)                CorePlugin.getRepository().save(tab.getParent().getParent());        }    }    /* (non-Javadoc)     * @see org.eclipse.jface.viewers.ISelectionChangedListener#selectionChanged(org.eclipse.jface.viewers.SelectionChangedEvent)     */    public void selectionChanged(SelectionChangedEvent event)    {        selection = null;        if (event.getSelection() instanceof IndicatorSelection || event.getSelection() instanceof ObjectSelection)            selection = event.getSelection();        setEnabled(selection != null);    }}

⌨️ 快捷键说明

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