blob: 5011dac07a386a6cb504d2ceb6143ffc8ae66859 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 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.ui.tests.dnd;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.IEditorPart;
/**
* @since 3.0
*/
public class EditorTitleDropTarget extends WorkbenchWindowDropTarget {
int editorIdx;
public EditorTitleDropTarget(IWorkbenchWindowProvider provider, int editorIdx) {
super(provider);
this.editorIdx = editorIdx;
}
IEditorPart getPart() {
return getPage().getEditors()[editorIdx];
}
/* (non-Javadoc)
* @see org.eclipse.ui.tests.dnd.TestDropTarget#getName()
*/
public String toString() {
return "editor " + editorIdx + " title area";
}
public Shell getShell() {
return getPart().getSite().getShell();
}
/* (non-Javadoc)
* @see org.eclipse.ui.tests.dnd.TestDropTarget#getLocation()
*/
public Point getLocation() {
Rectangle bounds = DragOperations.getDisplayBounds(DragOperations
.getPane(getPart()));
return new Point( (bounds.x + bounds.width) - 8, bounds.y + 8);
}
}