📄 pyeditconfiguration.java
字号:
/*
* Author: atotic
* Created: July 10, 2003
* License: Common Public License v1.0
*/
package org.python.pydev.editor;
import org.eclipse.core.runtime.Preferences;
import org.eclipse.jface.bindings.keys.KeySequence;
import org.eclipse.jface.bindings.keys.ParseException;
import org.eclipse.jface.dialogs.IDialogSettings;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.jface.text.DefaultInformationControl;
import org.eclipse.jface.text.IAutoEditStrategy;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IInformationControl;
import org.eclipse.jface.text.IInformationControlCreator;
import org.eclipse.jface.text.ITextDoubleClickStrategy;
import org.eclipse.jface.text.ITextHover;
import org.eclipse.jface.text.contentassist.IContentAssistProcessor;
import org.eclipse.jface.text.contentassist.IContentAssistant;
import org.eclipse.jface.text.presentation.IPresentationReconciler;
import org.eclipse.jface.text.presentation.PresentationReconciler;
import org.eclipse.jface.text.quickassist.IQuickAssistAssistant;
import org.eclipse.jface.text.quickassist.IQuickAssistProcessor;
import org.eclipse.jface.text.rules.DefaultDamagerRepairer;
import org.eclipse.jface.text.source.IAnnotationHover;
import org.eclipse.jface.text.source.ISourceViewer;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.editors.text.TextSourceViewerConfiguration;
import org.python.pydev.core.IPythonPartitions;
import org.python.pydev.editor.autoedit.DefaultIndentPrefs;
import org.python.pydev.editor.autoedit.PyAutoIndentStrategy;
import org.python.pydev.editor.codecompletion.PyCodeCompletionPreferencesPage;
import org.python.pydev.editor.codecompletion.PyContentAssistant;
import org.python.pydev.editor.codecompletion.PythonCompletionProcessor;
import org.python.pydev.editor.codecompletion.PythonStringCompletionProcessor;
import org.python.pydev.editor.correctionassist.PyCorrectionAssistant;
import org.python.pydev.editor.correctionassist.PythonCorrectionProcessor;
import org.python.pydev.editor.hover.PyAnnotationHover;
import org.python.pydev.editor.hover.PyTextHover;
import org.python.pydev.editor.simpleassist.SimpleAssistProcessor;
import org.python.pydev.plugin.PydevPlugin;
import org.python.pydev.plugin.PydevPrefs;
import org.python.pydev.ui.ColorCache;
/**
* Adds simple partitioner, and specific behaviors like double-click actions to the TextWidget.
*
* <p>
* Implements a simple partitioner that does syntax highlighting.
*
* Changed to a subclass of TextSourceViewerConfiguration as of pydev 1.3.5
*/
public class PyEditConfiguration extends TextSourceViewerConfiguration {
private ColorCache colorCache;
private PyAutoIndentStrategy autoIndentStrategy;
private String[] indentPrefixes = { " ", "\t", "" };
private PyEdit edit;
private PresentationReconciler reconciler;
private PyCodeScanner codeScanner;
private PyColoredScanner commentScanner, stringScanner, backquotesScanner;
public PyContentAssistant pyContentAssistant = new PyContentAssistant();
public PyEditConfiguration(ColorCache colorManager, PyEdit edit, IPreferenceStore preferenceStore) {
super(preferenceStore);
colorCache = colorManager;
this.setEdit(edit);
}
@Override
public IAnnotationHover getAnnotationHover(ISourceViewer sourceViewer) {
return new PyAnnotationHover(sourceViewer);
}
@Override
public ITextHover getTextHover(ISourceViewer sourceViewer, String contentType) {
return new PyTextHover(sourceViewer, contentType);
}
/**
* Has to return all the types generated by partition scanner.
*
* The SourceViewer will ignore double-clicks and any other configuration behaviors inside any partition not declared here
*/
public String[] getConfiguredContentTypes(ISourceViewer sourceViewer) {
return new String[] { IDocument.DEFAULT_CONTENT_TYPE, IPythonPartitions.PY_COMMENT,
IPythonPartitions.PY_SINGLELINE_STRING1, IPythonPartitions.PY_SINGLELINE_STRING2,
IPythonPartitions.PY_MULTILINE_STRING1, IPythonPartitions.PY_MULTILINE_STRING2 };
}
@Override
public String getConfiguredDocumentPartitioning(ISourceViewer sourceViewer) {
return IPythonPartitions.PYTHON_PARTITION_TYPE;
}
/**
* Cache the result, because we'll get asked for it multiple times Now, we always return the PyAutoIndentStrategy. (even on commented lines).
*
* @return PyAutoIndentStrategy which deals with spaces/tabs
*/
public IAutoEditStrategy[] getAutoEditStrategies(ISourceViewer sourceViewer, String contentType) {
return new IAutoEditStrategy[] {getPyAutoIndentStrategy()};
}
/**
* Cache the result, because we'll get asked for it multiple times Now, we always return the PyAutoIndentStrategy. (even on commented lines).
*
* @return PyAutoIndentStrategy which deals with spaces/tabs
*/
public PyAutoIndentStrategy getPyAutoIndentStrategy() {
if (autoIndentStrategy == null) {
autoIndentStrategy = new PyAutoIndentStrategy();
}
return autoIndentStrategy;
}
/**
* Recalculates indent prefixes based upon preferences
*
* we hold onto the same array SourceViewer has, and write directly into it. This is because there is no way to tell SourceViewer that indent prefixes have changed. And we need this functionality
* when user resets the tabs vs. spaces preference
*/
public void resetIndentPrefixes() {
Preferences prefs = PydevPlugin.getDefault().getPluginPreferences();
int tabWidth = DefaultIndentPrefs.getStaticTabWidth();
StringBuffer spaces = new StringBuffer(8);
for (int i = 0; i < tabWidth; i++) {
spaces.append(" ");
}
boolean spacesFirst = prefs.getBoolean(PydevPrefs.SUBSTITUTE_TABS) && !(getPyAutoIndentStrategy()).getIndentPrefs().getForceTabs();
if (spacesFirst) {
indentPrefixes[0] = spaces.toString();
indentPrefixes[1] = "\t";
} else {
indentPrefixes[0] = "\t";
indentPrefixes[1] = spaces.toString();
}
}
/**
* Prefixes used in shift-left/shift-right editor operations
*
* shift-right uses prefix[0] shift-left removes a single instance of the first prefix from the array that matches
*
* @see org.eclipse.jface.text.source.SourceViewerConfiguration#getIndentPrefixes(org.eclipse.jface.text.source.ISourceViewer, java.lang.String)
*/
public String[] getIndentPrefixes(ISourceViewer sourceViewer, String contentType) {
resetIndentPrefixes();
sourceViewer.setIndentPrefixes(indentPrefixes, contentType);
return indentPrefixes;
}
/**
* Just the default double-click strategy for now. But we should be smarter.
*
* @see org.eclipse.jface.text.source.SourceViewerConfiguration#getDoubleClickStrategy(org.eclipse.jface.text.source.ISourceViewer, java.lang.String)
*/
public ITextDoubleClickStrategy getDoubleClickStrategy(ISourceViewer sourceViewer, String contentType) {
if (contentType.equals(IDocument.DEFAULT_CONTENT_TYPE))
return new PyDoubleClickStrategy();
else
return super.getDoubleClickStrategy(sourceViewer, contentType);
}
/**
* TabWidth is defined inside pydev preferences.
*
* Python uses its own tab width, since I think that its standard is 8
*/
public int getTabWidth(ISourceViewer sourceViewer) {
return DefaultIndentPrefs.getStaticTabWidth();
}
public IPresentationReconciler getPresentationReconciler(ISourceViewer sourceViewer) {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -