blob: ceea2126ca23196a3afbe370e0977beef28bfa33 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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.ltk.internal.ui.refactoring.model;
import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
import org.eclipse.ltk.core.refactoring.RefactoringDescriptorProxy;
import org.eclipse.ltk.internal.ui.refactoring.util.HTMLPrinter;
import org.eclipse.swt.SWT;
import org.eclipse.swt.browser.Browser;
import org.eclipse.swt.graphics.Font;
import org.eclipse.swt.graphics.FontData;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.jface.resource.JFaceResources;
import org.eclipse.jface.text.TextSelection;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.jface.viewers.Viewer;
/**
* Viewer which displays a summary of a pending refactoring.
*
* @since 3.2
*/
public class RefactoringDescriptorViewer extends Viewer {
/** The viewer control */
protected final Browser fBrowser;
/** The viewer input, or <code>null</code> */
private RefactoringDescriptorProxy fDescriptor= null;
/**
* Creates a new refactoring descriptor viewer.
*
* @param parent
* the parent control
* @param style
* the style
*/
public RefactoringDescriptorViewer(final Composite parent, final int style) {
Assert.isNotNull(parent);
fBrowser= new Browser(parent, style);
final Display display= parent.getDisplay();
fBrowser.setForeground(display.getSystemColor(SWT.COLOR_LIST_FOREGROUND));
fBrowser.setBackground(display.getSystemColor(SWT.COLOR_LIST_BACKGROUND));
}
/**
* {@inheritDoc}
*/
public Control getControl() {
return fBrowser;
}
/**
* {@inheritDoc}
*/
public Object getInput() {
return fDescriptor;
}
/**
* Returns the input text for the specified refactoring descriptor proxy.
*
* @param proxy
* the refactoring descriptor proxy, or <code>null</code>
* @return the input text
*/
protected String getInputText(final RefactoringDescriptorProxy proxy) {
final StringBuffer buffer= new StringBuffer();
final Font font= JFaceResources.getDialogFont();
final FontData[] data= font.getFontData();
String face= data[0].getName();
int index= face.indexOf('-');
if (index >= 0 && index < face.length() - 1)
face= face.substring(index + 1);
final int size= data[0].getHeight();
HTMLPrinter.insertPageProlog(buffer, face, size, 0, fBrowser.getBackground().getRGB());
if (proxy != null) {
HTMLPrinter.addSmallHeader(buffer, face, size, HTMLPrinter.convertToHTMLContent(proxy.getDescription()));
final RefactoringDescriptor descriptor= proxy.requestDescriptor(new NullProgressMonitor());
if (descriptor != null) {
final String comment= descriptor.getComment();
if (comment != null && !"".equals(comment)) //$NON-NLS-1$
HTMLPrinter.addParagraph(buffer, face, size, HTMLPrinter.convertToHTMLContent(comment));
HTMLPrinter.startBulletList(buffer);
final int flags= descriptor.getFlags();
if ((flags & RefactoringDescriptor.BREAKING_CHANGE) > 0)
HTMLPrinter.addBullet(buffer, face, size, ModelMessages.RefactoringDescriptorViewer_breaking_change_message);
if ((flags & RefactoringDescriptor.STRUCTURAL_CHANGE) > 0)
HTMLPrinter.addBullet(buffer, face, size, ModelMessages.RefactoringDescriptorViewer_structural_change_message);
if ((flags & RefactoringDescriptor.MULTI_CHANGE) > 0)
HTMLPrinter.addBullet(buffer, face, size, ModelMessages.RefactoringDescriptorViewer_closure_change_message);
HTMLPrinter.endBulletList(buffer);
}
}
HTMLPrinter.addPageEpilog(buffer);
return buffer.toString();
}
/**
* {@inheritDoc}
*/
public ISelection getSelection() {
return new TextSelection(0, 0);
}
/**
* {@inheritDoc}
*/
public void refresh() {
String text= getInputText(fDescriptor);
if (text != null && text.length() > 0) {
if ((fBrowser.getShell().getStyle() & SWT.RIGHT_TO_LEFT) != 0) {
final StringBuffer buffer= new StringBuffer(text);
HTMLPrinter.insertStyles(buffer, new String[] { "direction:rtl", "overflow:hidden"}); //$NON-NLS-1$ //$NON-NLS-2$
text= buffer.toString();
}
}
fBrowser.setText(text);
}
/**
* {@inheritDoc}
*/
public void setInput(final Object input) {
if (input instanceof RefactoringDescriptorProxy) {
fDescriptor= (RefactoringDescriptorProxy) input;
refresh();
} else
fDescriptor= null;
}
/**
* {@inheritDoc}
*/
public void setSelection(final ISelection selection, final boolean reveal) {
// Do nothing
}
}