📄 pycompletionproposal.java
字号:
package org.python.pydev.editor.codecompletion;
import org.eclipse.core.runtime.Assert;
import org.eclipse.jface.text.BadLocationException;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.contentassist.ICompletionProposal;
import org.eclipse.jface.text.contentassist.ICompletionProposalExtension4;
import org.eclipse.jface.text.contentassist.IContextInformation;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;
/**
* The standard implementation of the <code>ICompletionProposal</code> interface.
*/
public class PyCompletionProposal implements ICompletionProposal, IPyCompletionProposal, ICompletionProposalExtension4 {
/** The string to be displayed in the completion proposal popup. */
protected String fDisplayString;
/** The replacement string. */
protected String fReplacementString;
/** The replacement offset. */
protected int fReplacementOffset;
/** The replacement length. */
protected int fReplacementLength;
/** The cursor position after this proposal has been applied. */
protected int fCursorPosition;
/** The image to be displayed in the completion proposal popup. */
protected Image fImage;
/** The context information of this proposal. */
protected IContextInformation fContextInformation;
/** The additional info of this proposal. */
protected String fAdditionalProposalInfo;
/** The priority for showing the proposal */
protected int priority;
/**
* Defines a 'regular' apply, in which we add the completion as usual
*/
public final static int ON_APPLY_DEFAULT = 1;
/**
* Defines that when applying the changes we should just show the context info and do no other change
*/
public final static int ON_APPLY_JUST_SHOW_CTX_INFO = 2;
/**
* Defines that we should add only the parameters on the apply and show the context info too
*/
public final static int ON_APPLY_SHOW_CTX_INFO_AND_ADD_PARAMETETRS = 3;
/**
* Defines how should the apply be treated
*/
public int onApplyAction = ON_APPLY_DEFAULT;
public String fArgs;
/**
* Creates a new completion proposal based on the provided information. The replacement string is
* considered being the display string too. All remaining fields are set to <code>null</code>.
*
* @param replacementString the actual string to be inserted into the document
* @param replacementOffset the offset of the text to be replaced
* @param replacementLength the length of the text to be replaced
* @param cursorPosition the position of the cursor following the insert relative to replacementOffset
*/
public PyCompletionProposal(String replacementString, int replacementOffset, int replacementLength, int cursorPosition, int priority) {
this(replacementString, replacementOffset, replacementLength, cursorPosition, null, null, null, null, priority);
}
public PyCompletionProposal(String replacementString, int replacementOffset, int replacementLength, int cursorPosition, Image image, String displayString, IContextInformation contextInformation, String additionalProposalInfo,int priority) {
this(replacementString, replacementOffset, replacementLength, cursorPosition, image, displayString, contextInformation, additionalProposalInfo,priority, ON_APPLY_DEFAULT, "");
}
/**
* Creates a new completion proposal. All fields are initialized based on the provided information.
*
* @param replacementString the actual string to be inserted into the document
* @param replacementOffset the offset of the text to be replaced
* @param replacementLength the length of the text to be replaced
* @param cursorPosition the position of the cursor following the insert relative to replacementOffset
* @param image the image to display for this proposal
* @param displayString the string to be displayed for the proposal
* @param contextInformation the context information associated with this proposal
* @param additionalProposalInfo the additional information associated with this proposal
* @param onApplyAction if we should not actually apply the changes when the completion is applied
*/
public PyCompletionProposal(String replacementString, int replacementOffset, int replacementLength, int cursorPosition, Image image, String displayString, IContextInformation contextInformation, String additionalProposalInfo,int priority, int onApplyAction, String args) {
Assert.isNotNull(replacementString);
Assert.isTrue(replacementOffset >= 0);
Assert.isTrue(replacementLength >= 0);
Assert.isTrue(cursorPosition >= 0);
fReplacementString= replacementString;
fReplacementOffset= replacementOffset;
fReplacementLength= replacementLength;
fCursorPosition= cursorPosition;
fImage= image;
fDisplayString= displayString;
fContextInformation= contextInformation;
fAdditionalProposalInfo= additionalProposalInfo;
this.priority = priority;
this.onApplyAction = onApplyAction;
this.fArgs = args;
}
/*
* @see ICompletionProposal#apply(IDocument)
*/
public void apply(IDocument document) {
if(onApplyAction == ON_APPLY_JUST_SHOW_CTX_INFO){
return;
}
if(onApplyAction == ON_APPLY_DEFAULT){
try {
document.replace(fReplacementOffset, fReplacementLength, fReplacementString);
} catch (BadLocationException x) {
// ignore
}
return;
}
if(onApplyAction == ON_APPLY_SHOW_CTX_INFO_AND_ADD_PARAMETETRS){
try {
String args;
if(fArgs.length() > 0){
args = fArgs.substring(1, fArgs.length()-1); //remove the parentesis
document.replace(fReplacementOffset+fReplacementLength, 0, args);
}
} catch (BadLocationException x) {
// ignore
x.printStackTrace();
}
return;
}
throw new RuntimeException("Unexpected apply mode:"+onApplyAction);
}
/*
* @see ICompletionProposal#getSelection(IDocument)
*/
public Point getSelection(IDocument document) {
if(onApplyAction == ON_APPLY_JUST_SHOW_CTX_INFO){
return null;
}
if(onApplyAction == ON_APPLY_DEFAULT){
return new Point(fReplacementOffset + fCursorPosition, 0);
}
if(onApplyAction == ON_APPLY_SHOW_CTX_INFO_AND_ADD_PARAMETETRS){
return new Point(fReplacementOffset + fCursorPosition-1, 0);
}
throw new RuntimeException("Unexpected apply mode:"+onApplyAction);
}
/*
* @see ICompletionProposal#getContextInformation()
*/
public IContextInformation getContextInformation() {
return fContextInformation;
}
/*
* @see ICompletionProposal#getImage()
*/
public Image getImage() {
return fImage;
}
/*
* @see ICompletionProposal#getDisplayString()
*/
public String getDisplayString() {
if (fDisplayString != null)
return fDisplayString;
return fReplacementString;
}
/*
* @see ICompletionProposal#getAdditionalProposalInfo()
*/
public String getAdditionalProposalInfo() {
return fAdditionalProposalInfo;
}
/**
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
return getDisplayString().hashCode();
}
/**
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(Object obj) {
if (!(obj instanceof PyCompletionProposal)){
return false;
}
PyCompletionProposal c = (PyCompletionProposal) obj;
if (!(getDisplayString().equals(c.getDisplayString()))){
return false;
}
return true;
}
/**
* @see org.python.pydev.editor.codecompletion.IPyCompletionProposal#getPriority()
*/
public int getPriority() {
return priority;
}
public boolean isAutoInsertable() {
return onApplyAction == ON_APPLY_JUST_SHOW_CTX_INFO || onApplyAction == ON_APPLY_SHOW_CTX_INFO_AND_ADD_PARAMETETRS;
}
public String getInternalDisplayStringRepresentation() {
return getDisplayString();
}
public static final int BEHAVIOR_OVERRIDES = 0;
public static final int BEHAVIOR_COEXISTS = 1;
public static final int BEHAVIOR_IS_OVERRIDEN = 2;
/**
* @param curr
* @return the behavior when faced with a given proposal (that has the same internal representation)
*/
public int getOverrideBehavior(ICompletionProposal curr) {
return BEHAVIOR_OVERRIDES;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -