blob: 234b90e20766fd9b8e54cba4b4608a9753ebc872 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2013, 2020 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.ltk.ui.sourceediting;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.jface.text.IInformationControlCreator;
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.ITextViewer;
import org.eclipse.jface.text.Region;
import org.eclipse.jface.text.information.IInformationProvider;
import org.eclipse.jface.text.information.IInformationProviderExtension;
import org.eclipse.jface.text.information.IInformationProviderExtension2;
import org.eclipse.statet.ecommons.text.core.JFaceTextRegion;
import org.eclipse.statet.ltk.core.LTKUtils;
import org.eclipse.statet.ltk.model.core.IModelManager;
import org.eclipse.statet.ltk.model.core.elements.ISourceUnit;
import org.eclipse.statet.ltk.model.core.elements.ISourceUnitModelInfo;
import org.eclipse.statet.ltk.ui.LTKUI;
public abstract class QuickInformationProvider implements IInformationProvider,
IInformationProviderExtension, IInformationProviderExtension2 {
// see IJavaEditorActionDefinitionIds
public static String viewerOperation2commandId(final int operation) {
switch (operation) {
case SourceEditorViewer.SHOW_SOURCE_OUTLINE:
return LTKUI.SHOW_QUICK_SOURCE_OUTLINE_COMMAND_ID;
case SourceEditorViewer.SHOW_ELEMENT_OUTLINE:
return LTKUI.SHOW_QUICK_ELEMENT_OUTLINE_COMMAND_ID;
case SourceEditorViewer.SHOW_ELEMENT_HIERARCHY:
return LTKUI.SHOW_QUICK_ELEMENT_HIERARCHY_COMMAND_ID;
default:
throw new UnsupportedOperationException(Integer.toString(operation));
}
}
private final ISourceEditor editor;
private final String modelTypeId;
private final String commandId;
private IInformationControlCreator creator;
public QuickInformationProvider(final ISourceEditor editor, final String modelType,
final int viewerOperation) {
this(editor, modelType, viewerOperation2commandId(viewerOperation));
}
public QuickInformationProvider(final ISourceEditor editor, final String modelType,
final String commandId) {
this.editor= editor;
this.modelTypeId= modelType;
this.commandId= commandId;
}
public ISourceEditor getEditor() {
return this.editor;
}
public final String getCommandId() {
return this.commandId;
}
public final String getModelTypeId() {
return this.modelTypeId;
}
@Override
public IRegion getSubject(final ITextViewer textViewer, final int offset) {
return new Region(offset, 0);
}
@Override
public String getInformation(final ITextViewer textViewer, final IRegion subject) {
return null;
}
@Override
public Object getInformation2(final ITextViewer textViewer, final IRegion subject) {
final ISourceUnit su= this.editor.getSourceUnit();
if (su == null) {
return null;
}
final ISourceUnitModelInfo modelInfo= su.getModelInfo(getModelTypeId(), IModelManager.MODEL_FILE,
new NullProgressMonitor() ); // ?
if (modelInfo == null) {
return null;
}
return LTKUtils.getCoveringSourceElement(modelInfo.getSourceElement(),
JFaceTextRegion.toTextRegion(subject) );
}
@Override
public IInformationControlCreator getInformationPresenterControlCreator() {
if (this.creator == null) {
this.creator= createInformationPresenterControlCreator();
}
return this.creator;
}
protected abstract IInformationControlCreator createInformationPresenterControlCreator();
}