blob: 4b5cadd2884d36928ce2b3d5ade0f5816f8345ee [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.acceleo.query.ide.ui.viewer;
import org.eclipse.acceleo.query.runtime.ICompletionProposal;
import org.eclipse.acceleo.query.runtime.ICompletionResult;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.contentassist.ICompletionProposalExtension5;
import org.eclipse.jface.text.contentassist.IContextInformation;
import org.eclipse.jface.viewers.ILabelProvider;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
/**
* AQL {@link org.eclipse.jface.text.contentassist.ICompletionProposal}.
*
* @author <a href="mailto:yvan.lussaud@obeo.fr">Yvan Lussaud</a>
*/
public class AQLCompletionProposal implements org.eclipse.jface.text.contentassist.ICompletionProposal, ICompletionProposalExtension5, IContextInformation {
/**
* The {@link ILabelProvider}.
*/
private final ILabelProvider labelProvider;
/**
* The {@link ICompletionResult}.
*/
private final ICompletionResult completionResult;
/**
* The {@link ICompletionProposal}.
*/
private final ICompletionProposal proposal;
/**
* Constructor.
*
* @param labelProvider
* the {@link ILabelProvider}
* @param completionResult
* the {@link ICompletionResult}
* @param proposal
* the {@link ICompletionProposal}
*/
public AQLCompletionProposal(ILabelProvider labelProvider, ICompletionResult completionResult,
ICompletionProposal proposal) {
this.labelProvider = labelProvider;
this.completionResult = completionResult;
this.proposal = proposal;
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#apply(org.eclipse.jface.text.IDocument)
*/
public void apply(IDocument document) {
try {
document.replace(completionResult.getReplacementOffset(), completionResult.getReplacementLength(),
proposal.getProposal());
} catch (BadLocationException e) {
// nothing to do here
}
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#getSelection(org.eclipse.jface.text.IDocument)
*/
public Point getSelection(IDocument document) {
return new Point(completionResult.getReplacementOffset() + proposal.getCursorOffset(), 0);
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#getAdditionalProposalInfo()
*/
public String getAdditionalProposalInfo() {
return proposal.getDescription();
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#getDisplayString()
*/
public String getDisplayString() {
return labelProvider.getText(proposal);
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#getImage()
*/
public Image getImage() {
return labelProvider.getImage(proposal);
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposal#getContextInformation()
*/
public IContextInformation getContextInformation() {
return this;
}
/**
* {@inheritDoc}
*
* @see org.eclipse.jface.text.contentassist.ICompletionProposalExtension5#getAdditionalProposalInfo(org.eclipse.core.runtime.IProgressMonitor)
*/
public Object getAdditionalProposalInfo(org.eclipse.core.runtime.IProgressMonitor monitor) {
return proposal.getDescription();
}
public String getContextDisplayString() {
return getAdditionalProposalInfo();
}
public String getInformationDisplayString() {
return getAdditionalProposalInfo();
};
}