blob: 4e8db079881b8e8f7cc5ed2e78d35c545e1ea598 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2013, 2019 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.internal.r.ui.editors;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IInformationControl;
import org.eclipse.jface.text.IInformationControlCreator;
import org.eclipse.jface.text.IRegion;
import org.eclipse.jface.text.ITextViewer;
import org.eclipse.jface.text.ITypedRegion;
import org.eclipse.jface.text.Region;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.statet.ltk.ui.sourceediting.ISourceEditor;
import org.eclipse.statet.ltk.ui.sourceediting.QuickInformationProvider;
import org.eclipse.statet.r.core.model.RModel;
import org.eclipse.statet.r.core.source.IRDocumentConstants;
import org.eclipse.statet.r.core.source.RHeuristicTokenScanner;
public class RQuickOutlineInformationProvider extends QuickInformationProvider {
private RHeuristicTokenScanner scanner;
public RQuickOutlineInformationProvider(final ISourceEditor editor, final int viewerOperation) {
super(editor, RModel.R_TYPE_ID, viewerOperation);
}
@Override
public IRegion getSubject(final ITextViewer textViewer, final int offset) {
if (this.scanner == null) {
this.scanner= RHeuristicTokenScanner.create(getEditor().getDocumentContentInfo());
}
try {
final IDocument document = getEditor().getViewer().getDocument();
this.scanner.configure(document);
final IRegion word = this.scanner.findRWord(offset, false, true);
if (word != null) {
final ITypedRegion partition = this.scanner.getPartition(word.getOffset());
if (IRDocumentConstants.R_DEFAULT_CONTENT_CONSTRAINT.matches(partition.getType())
|| partition.getType() == IRDocumentConstants.R_STRING_CONTENT_TYPE
|| partition.getType() == IRDocumentConstants.R_QUOTED_SYMBOL_CONTENT_TYPE) {
return word;
}
}
}
catch (final Exception e) {
}
return new Region(offset, 0);
}
@Override
public IInformationControlCreator createInformationPresenterControlCreator() {
return new IInformationControlCreator() {
@Override
public IInformationControl createInformationControl(final Shell parent) {
return new RQuickOutlineInformationControl(parent, getCommandId());
}
};
}
}