blob: 229431049e950b8036b648617cca3ba276239c28 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 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.e4.ui.internal.workbench;
import org.eclipse.e4.core.contexts.ContextFunction;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.e4.ui.model.application.MApplication;
import org.eclipse.e4.ui.model.application.ui.MContext;
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
import org.eclipse.e4.ui.model.application.ui.basic.MWindow;
/**
*
*/
public class ActivePartLookupFunction extends ContextFunction {
@Override
public Object compute(IEclipseContext context, String contextKey) {
/**
* This is the specific implementation. TODO: generalize it
*/
MContext window = context.get(MWindow.class);
if (window == null) {
window = context.get(MApplication.class);
if (window == null) {
return null;
}
}
IEclipseContext current = window.getContext();
if (current == null) {
return null;
}
return current.getActiveLeaf().get(MPart.class);
}
}