/******************************************************************************* * Copyright (c) 2004, 2007 Spring IDE Developers * 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: * Spring IDE Developers - initial API and implementation *******************************************************************************/ package org.springframework.ide.eclipse.beans.ui.graph.editor; import org.eclipse.draw2d.ColorConstants; import org.eclipse.draw2d.LightweightSystem; import org.eclipse.draw2d.MarginBorder; import org.eclipse.draw2d.Viewport; import org.eclipse.draw2d.parts.ScrollableThumbnail; import org.eclipse.draw2d.parts.Thumbnail; import org.eclipse.gef.LayerConstants; import org.eclipse.gef.editparts.ScalableRootEditPart; import org.eclipse.jface.viewers.ISelection; import org.eclipse.jface.viewers.ISelectionChangedListener; import org.eclipse.jface.viewers.StructuredSelection; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Canvas; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; import org.eclipse.ui.part.Page; import org.eclipse.ui.views.contentoutline.IContentOutlinePage; /** * @author Torsten Juergeleit * @author Christian Dupuis */ public class GraphOutlinePage extends Page implements IContentOutlinePage { private Canvas overview; private ScalableRootEditPart rootEditPart; private Thumbnail thumbnail; public GraphOutlinePage(ScalableRootEditPart rootEditPart) { this.rootEditPart = rootEditPart; } public void addSelectionChangedListener(ISelectionChangedListener listener) { } @Override public void createControl(Composite parent) { overview = new Canvas(parent, SWT.NONE); overview.setBackground(ColorConstants.listBackground); LightweightSystem lws = new LightweightSystem(overview); thumbnail = new ScrollableThumbnail((Viewport)rootEditPart.getFigure()); thumbnail.setBorder(new MarginBorder(3)); thumbnail.setSource(rootEditPart.getLayer( LayerConstants.PRINTABLE_LAYERS)); lws.setContents(thumbnail); } @Override public Control getControl() { return overview; } public ISelection getSelection() { return StructuredSelection.EMPTY; } public void removeSelectionChangedListener(ISelectionChangedListener listener) { } @Override public void setFocus() { if (getControl() != null) { getControl().setFocus(); } } public void setSelection(ISelection selection) { } @Override public void dispose() { if (null != thumbnail) { thumbnail.deactivate(); } super.dispose(); } }