blob: a209eb0a06805a9db05762e49381cea43269fff0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsd.ui.internal.common.properties.sections;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.forms.events.HyperlinkEvent;
import org.eclipse.ui.forms.events.IHyperlinkListener;
import org.eclipse.ui.forms.widgets.ImageHyperlink;
import org.eclipse.wst.xsd.ui.internal.common.util.Messages;
import org.eclipse.wst.xsd.ui.internal.editor.ISelectionMapper;
import org.eclipse.wst.xsd.ui.internal.editor.XSDEditorPlugin;
import org.eclipse.wst.xsd.ui.internal.refactor.actions.RenameComponentAction;
import org.eclipse.xsd.XSDSchema;
public abstract class RefactoringSection extends AbstractSection implements IHyperlinkListener
{
/**
* Clicking on it invokes the refactor->rename action.
*/
private ImageHyperlink renameHyperlink;
/**
* Invokes the refactor->rename action on the current selection.
*/
private void invokeRenameRefactoring()
{
IEditorPart editor = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActiveEditor();
XSDSchema schema = (XSDSchema) editor.getAdapter(XSDSchema.class);
ISelection selection = editor.getSite().getSelectionProvider().getSelection();
ISelectionMapper mapper = (ISelectionMapper) editor.getAdapter(ISelectionMapper.class);
selection = mapper != null ? mapper.mapSelection(selection) : selection;
RenameComponentAction action = new RenameComponentAction(selection, schema);
action.update(selection);
action.run();
}
/**
* Creates the refactor/rename hyperlink shown beside a component name.
* Clicking on the hyperlink invokes the refactor/rename action.
*
* @param parent
* the parent composite. Must not be null.
*/
protected void createRenameHyperlink(Composite parent)
{
renameHyperlink = getWidgetFactory().createImageHyperlink(parent, SWT.NONE);
renameHyperlink.setImage(XSDEditorPlugin.getXSDImage("icons/quickassist.gif")); //$NON-NLS-1$
renameHyperlink.setToolTipText(Messages._UI_TOOLTIP_RENAME_REFACTOR);
renameHyperlink.addHyperlinkListener(this);
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.forms.events.IHyperlinkListener#linkActivated(org.eclipse.ui.forms.events.HyperlinkEvent)
*/
public void linkActivated(HyperlinkEvent e)
{
invokeRenameRefactoring();
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.forms.events.IHyperlinkListener#linkEntered(org.eclipse.ui.forms.events.HyperlinkEvent)
*/
public void linkEntered(HyperlinkEvent e)
{
}
/*
* (non-Javadoc)
*
* @see org.eclipse.ui.forms.events.IHyperlinkListener#linkExited(org.eclipse.ui.forms.events.HyperlinkEvent)
*/
public void linkExited(HyperlinkEvent e)
{
}
}