/******************************************************************************* * Copyright (c) 2009, 2015 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation * Zend Technologies *******************************************************************************/ package org.eclipse.php.internal.ui.editor.configuration; import java.util.*; import org.eclipse.core.runtime.IAdaptable; import org.eclipse.core.runtime.IConfigurationElement; import org.eclipse.core.runtime.IPath; import org.eclipse.core.runtime.Platform; import org.eclipse.core.runtime.preferences.IPreferencesService; import org.eclipse.dltk.internal.ui.typehierarchy.HierarchyInformationControl; import org.eclipse.dltk.ui.actions.IScriptEditorActionDefinitionIds; import org.eclipse.jface.dialogs.IDialogSettings; import org.eclipse.jface.preference.IPreferenceStore; import org.eclipse.jface.text.*; import org.eclipse.jface.text.contentassist.ContentAssistant; import org.eclipse.jface.text.contentassist.IContentAssistProcessor; import org.eclipse.jface.text.contentassist.IContentAssistant; import org.eclipse.jface.text.formatter.IContentFormatter; import org.eclipse.jface.text.formatter.MultiPassContentFormatter; import org.eclipse.jface.text.hyperlink.IHyperlink; import org.eclipse.jface.text.hyperlink.IHyperlinkDetector; import org.eclipse.jface.text.information.*; import org.eclipse.jface.text.presentation.IPresentationReconciler; import org.eclipse.jface.text.quickassist.IQuickAssistAssistant; import org.eclipse.jface.text.source.ISourceViewer; import org.eclipse.jface.viewers.ILabelProvider; import org.eclipse.php.internal.core.PHPCoreConstants; import org.eclipse.php.internal.core.PHPCorePlugin; import org.eclipse.php.internal.core.documentModel.dom.ElementImplForPHP; import org.eclipse.php.internal.core.documentModel.partitioner.PHPPartitionTypes; import org.eclipse.php.internal.core.documentModel.partitioner.PHPStructuredTextPartitioner; import org.eclipse.php.internal.core.format.FormatterUtils; import org.eclipse.php.internal.core.format.IFormatterCommonPreferences; import org.eclipse.php.internal.ui.PHPUiConstants; import org.eclipse.php.internal.ui.PHPUiPlugin; import org.eclipse.php.internal.ui.autoEdit.CloseTagAutoEditStrategyPHP; import org.eclipse.php.internal.ui.autoEdit.MainAutoEditStrategy; import org.eclipse.php.internal.ui.doubleclick.PHPDoubleClickStrategy; import org.eclipse.php.internal.ui.editor.PHPStructuredTextViewer; import org.eclipse.php.internal.ui.editor.contentassist.PHPCompletionProcessor; import org.eclipse.php.internal.ui.editor.contentassist.PHPContentAssistant; import org.eclipse.php.internal.ui.editor.highlighter.LineStyleProviderForPHP; import org.eclipse.php.internal.ui.editor.hover.BestMatchHover; import org.eclipse.php.internal.ui.editor.hover.PHPTextHoverProxy; import org.eclipse.php.internal.ui.text.PHPElementProvider; import org.eclipse.php.internal.ui.text.PHPInformationHierarchyProvider; import org.eclipse.php.internal.ui.text.PHPOutlineInformationControl; import org.eclipse.php.internal.ui.text.correction.PHPCorrectionAssistant; import org.eclipse.php.internal.ui.text.hover.PHPEditorTextHoverDescriptor; import org.eclipse.php.internal.ui.util.ElementCreationProxy; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.widgets.Shell; import org.eclipse.ui.IEditorInput; import org.eclipse.ui.texteditor.AbstractDecoratedTextEditorPreferenceConstants; import org.eclipse.ui.texteditor.IDocumentProvider; import org.eclipse.ui.texteditor.ITextEditor; import org.eclipse.wst.css.core.text.ICSSPartitions; import org.eclipse.wst.css.ui.internal.contentassist.CSSStructuredContentAssistProcessor; import org.eclipse.wst.html.core.internal.text.StructuredTextPartitionerForHTML; import org.eclipse.wst.html.core.text.IHTMLPartitions; import org.eclipse.wst.html.ui.StructuredTextViewerConfigurationHTML; import org.eclipse.wst.sse.core.text.IStructuredPartitions; import org.eclipse.wst.sse.ui.internal.contentassist.StructuredContentAssistant; import org.eclipse.wst.sse.ui.internal.correction.CompoundQuickAssistProcessor; import org.eclipse.wst.sse.ui.internal.provisional.style.LineStyleProvider; import org.eclipse.wst.sse.ui.internal.provisional.style.ReconcilerHighlighter; import org.eclipse.wst.sse.ui.internal.provisional.style.StructuredPresentationReconciler; import org.eclipse.wst.xml.core.internal.text.rules.StructuredTextPartitionerForXML; import org.eclipse.wst.xml.ui.internal.contentoutline.JFaceNodeLabelProvider; import org.w3c.dom.Attr; import org.w3c.dom.Node; public class PHPStructuredTextViewerConfiguration extends StructuredTextViewerConfigurationHTML { private static final String EMPTY = ""; //$NON-NLS-1$ private static final String[] DEFAULT_PREFIXES = new String[] { "//", "#", EMPTY }; //$NON-NLS-1$ //$NON-NLS-2$ private static final String COMPLETION_PROPOSAL_SIZE_SECTION = "completion_proposal_size"; //$NON-NLS-1$ private static final String QUICK_OUTLINE_SIZE_SECTION = "quick_outline_size"; //$NON-NLS-1$ private static final IAutoEditStrategy mainAutoEditStrategy = new MainAutoEditStrategy(); private static final IAutoEditStrategy closeTagAutoEditStrategy = new CloseTagAutoEditStrategyPHP(); private String[] configuredContentTypes; private LineStyleProvider fLineStyleProvider; private StructuredContentAssistant fContentAssistant; private IQuickAssistAssistant fQuickAssistant; private PHPCompletionProcessor phpCompletionProcessor; Map<String, IContentAssistProcessor[]> processorMap = new HashMap<>(); private ReconcilerHighlighter fHighlighter = null; private ILabelProvider fStatusLineLabelProvider; public PHPStructuredTextViewerConfiguration() { } /* * Returns an array of all the contentTypes (partition names) supported by * this editor. They include all those supported by HTML editor plus PHP. */ @Override public String[] getConfiguredContentTypes(ISourceViewer sourceViewer) { if (configuredContentTypes == null) { String[] phpTypes = PHPStructuredTextPartitioner.getConfiguredContentTypes(); String[] xmlTypes = StructuredTextPartitionerForXML.getConfiguredContentTypes(); String[] htmlTypes = StructuredTextPartitionerForHTML.getConfiguredContentTypes(); configuredContentTypes = new String[2 + phpTypes.length + xmlTypes.length + htmlTypes.length]; configuredContentTypes[0] = IStructuredPartitions.DEFAULT_PARTITION; configuredContentTypes[1] = IStructuredPartitions.UNKNOWN_PARTITION; int index = 0; System.arraycopy(phpTypes, 0, configuredContentTypes, index += 2, phpTypes.length); System.arraycopy(xmlTypes, 0, configuredContentTypes, index += phpTypes.length, xmlTypes.length); System.arraycopy(htmlTypes, 0, configuredContentTypes, index += xmlTypes.length, htmlTypes.length); } return configuredContentTypes; } public LineStyleProvider getLineStyleProvider() { if (fLineStyleProvider == null) { fLineStyleProvider = new LineStyleProviderForPHP(); } return fLineStyleProvider; } @Override public LineStyleProvider[] getLineStyleProviders(ISourceViewer sourceViewer, String partitionType) { if (partitionType == PHPPartitionTypes.PHP_DEFAULT) { return new LineStyleProvider[] { getLineStyleProvider() }; } return super.getLineStyleProviders(sourceViewer, partitionType); } /** * Method overrides default status line label provider because HTML version * can freeze UI during searching image for status line for large PHP files. * * @see http://eclip.se\474115 */ @Override public ILabelProvider getStatusLineLabelProvider(ISourceViewer sourceViewer) { if (fStatusLineLabelProvider == null) { fStatusLineLabelProvider = new JFaceNodeLabelProvider() { @Override public String getText(Object element) { if (element == null) return null; StringBuilder s = new StringBuilder(); Node node = (Node) element; while (node != null) { if (node.getNodeType() != Node.DOCUMENT_NODE) { s.insert(0, super.getText(node)); } if (node.getNodeType() == Node.ATTRIBUTE_NODE) node = ((Attr) node).getOwnerElement(); else node = node.getParentNode(); if (node != null && node.getNodeType() != Node.DOCUMENT_NODE) { s.insert(0, IPath.SEPARATOR); } } return s.toString(); } @Override public Image getImage(Object element) { if (element instanceof ElementImplForPHP) { return null; } return super.getImage(element); } }; } return fStatusLineLabelProvider; } @Override public IContentAssistProcessor[] getContentAssistProcessors(ISourceViewer sourceViewer, String partitionType) { IContentAssistProcessor[] processors = null; if (sourceViewer instanceof PHPStructuredTextViewer) { ITextEditor textEditor = ((PHPStructuredTextViewer) sourceViewer).getTextEditor(); if (phpCompletionProcessor == null) { ContentAssistant phpContentAssistant = (ContentAssistant) getPHPContentAssistant(sourceViewer); // phpCompletionProcessor may be initialized in // getPHPContentAssistant call if (phpCompletionProcessor == null) { phpCompletionProcessor = new PHPCompletionProcessor(textEditor, phpContentAssistant, PHPPartitionTypes.PHP_DEFAULT); addContentAssistProcessors(sourceViewer); } } else { ContentAssistant phpContentAssistant = (ContentAssistant) getPHPContentAssistant(sourceViewer); // make sure current contentAssistant install dltk's // ContentAssistProcessor.CompletionListener,so we can call // IContentAssistantExtension3.setRepeatedInvocationTrigger for // PHPContentAssistant,so we can press "ctrl+space" to switch // between different template categories if (phpCompletionProcessor.getAssistant() != phpContentAssistant) { phpCompletionProcessor = new PHPCompletionProcessor(textEditor, phpContentAssistant, PHPPartitionTypes.PHP_DEFAULT); } } if (partitionType == PHPPartitionTypes.PHP_DEFAULT) { processors = new IContentAssistProcessor[] { phpCompletionProcessor }; } else { IContentAssistProcessor[] superProcessors; if (partitionType.equals(ICSSPartitions.STYLE) || partitionType.equals(ICSSPartitions.COMMENT)) { IContentAssistProcessor processor = new CSSStructuredContentAssistProcessor( this.getContentAssistant(), partitionType, sourceViewer); superProcessors = new IContentAssistProcessor[] { processor }; } else { superProcessors = super.getContentAssistProcessors(sourceViewer, partitionType); } processorMap.put(partitionType, superProcessors); if (superProcessors != null) { processors = new IContentAssistProcessor[superProcessors.length + 1]; System.arraycopy(superProcessors, 0, processors, 0, superProcessors.length); processors[superProcessors.length] = phpCompletionProcessor; } else { processors = new IContentAssistProcessor[] { phpCompletionProcessor }; } } } else { processors = new IContentAssistProcessor[0]; } return processors; } public IContentAssistant getPHPContentAssistant(ISourceViewer sourceViewer) { return getPHPContentAssistant(sourceViewer, false); } public IContentAssistant getPHPContentAssistant(ISourceViewer sourceViewer, boolean reSet) { if (fContentAssistant == null || reSet) { if (fContentAssistant != null) { fContentAssistant.uninstall(); } fContentAssistant = new PHPContentAssistant(); // content assistant configurations fContentAssistant.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer)); fContentAssistant.setProposalPopupOrientation(IContentAssistant.PROPOSAL_OVERLAY); fContentAssistant.setContextInformationPopupOrientation(IContentAssistant.CONTEXT_INFO_ABOVE); fContentAssistant.setInformationControlCreator(getInformationControlCreator(sourceViewer)); IDialogSettings dialogSettings = PHPUiPlugin.getDefault().getDialogSettings(); if (dialogSettings != null) { IDialogSettings section = dialogSettings.getSection(COMPLETION_PROPOSAL_SIZE_SECTION); if (section == null) { section = dialogSettings.addNewSection(COMPLETION_PROPOSAL_SIZE_SECTION); } fContentAssistant.setRestoreCompletionProposalSize(section); } IPreferencesService preferencesService = Platform.getPreferencesService(); fContentAssistant.enableAutoActivation(preferencesService.getBoolean(PHPCorePlugin.ID, PHPCoreConstants.CODEASSIST_AUTOACTIVATION, false, null)); fContentAssistant.setAutoActivationDelay(preferencesService.getInt(PHPCorePlugin.ID, PHPCoreConstants.CODEASSIST_AUTOACTIVATION_DELAY, 0, null)); fContentAssistant.enableAutoInsert(preferencesService.getBoolean(PHPCorePlugin.ID, PHPCoreConstants.CODEASSIST_AUTOINSERT, false, null)); addContentAssistProcessors(sourceViewer); } return fContentAssistant; } /** * @param sourceViewer */ private void addContentAssistProcessors(ISourceViewer sourceViewer) { // add content assist processors for each partition type String[] types = getConfiguredContentTypes(sourceViewer); for (int i = 0; i < types.length; i++) { String type = types[i]; // add all content assist processors for current partiton type IContentAssistProcessor[] processors = getContentAssistProcessors(sourceViewer, type); if (processors != null) { for (int j = 0; j < processors.length; j++) { fContentAssistant.setContentAssistProcessor(processors[j], type); } } } // reset auto activation delay based on pdt's setting,because it was // changed by wtp IPreferencesService preferencesService = Platform.getPreferencesService(); int fAutoActivationDelay = preferencesService.getInt(PHPCorePlugin.ID, PHPCoreConstants.CODEASSIST_AUTOACTIVATION_DELAY, 200, null); fContentAssistant.setAutoActivationDelay(fAutoActivationDelay); } @Override public String[] getDefaultPrefixes(ISourceViewer sourceViewer, String contentType) { return DEFAULT_PREFIXES; } /* * @see * SourceViewerConfiguration#getConfiguredTextHoverStateMasks(ISourceViewer, * String) */ @Override public int[] getConfiguredTextHoverStateMasks(ISourceViewer sourceViewer, String contentType) { PHPEditorTextHoverDescriptor[] hoverDescs = PHPUiPlugin.getDefault().getPHPEditorTextHoverDescriptors(); int stateMasks[] = new int[hoverDescs.length]; int stateMasksLength = 0; for (int i = 0; i < hoverDescs.length; i++) { if (hoverDescs[i].isEnabled()) { int j = 0; int stateMask = hoverDescs[i].getStateMask(); while (j < stateMasksLength) { if (stateMasks[j] == stateMask) break; j++; } if (j == stateMasksLength) stateMasks[stateMasksLength++] = stateMask; } } if (stateMasksLength == hoverDescs.length) return stateMasks; int[] shortenedStateMasks = new int[stateMasksLength]; System.arraycopy(stateMasks, 0, shortenedStateMasks, 0, stateMasksLength); return shortenedStateMasks; } /* * @see SourceViewerConfiguration#getTextHover(ISourceViewer, String, int) */ @Override public ITextHover getTextHover(ISourceViewer sourceViewer, String contentType, int stateMask) { // Screen out any non-PHP content if (!PHPStructuredTextPartitioner.isPHPPartitionType(contentType)) { return super.getTextHover(sourceViewer, contentType, stateMask); } if (sourceViewer instanceof PHPStructuredTextViewer) { PHPEditorTextHoverDescriptor[] hoverDescs = PHPUiPlugin.getDefault().getPHPEditorTextHoverDescriptors(); int i = 0; while (i < hoverDescs.length) { if (hoverDescs[i].isEnabled() && hoverDescs[i].getStateMask() == stateMask) { return new PHPTextHoverProxy(hoverDescs[i], ((PHPStructuredTextViewer) sourceViewer).getTextEditor(), fPreferenceStore); } i++; } } return null; } /* * @see SourceViewerConfiguration#getTextHover(ISourceViewer, String) */ @Override public ITextHover getTextHover(ISourceViewer sourceViewer, String contentType) { return getTextHover(sourceViewer, contentType, ITextViewerExtension2.DEFAULT_HOVER_STATE_MASK); } @Override public IHyperlinkDetector[] getHyperlinkDetectors(ISourceViewer sourceViewer) { if (!fPreferenceStore.getBoolean(AbstractDecoratedTextEditorPreferenceConstants.EDITOR_HYPERLINKS_ENABLED)) return null; // Create proxy to prevent throwing of errors in case there's an // exception occurred in hyperlink detector: List<IHyperlinkDetector> detectors = new LinkedList<>(); IHyperlinkDetector[] inheritedDetectors = super.getHyperlinkDetectors(sourceViewer); if (inheritedDetectors != null) { for (final IHyperlinkDetector detector : inheritedDetectors) { detectors.add(new IHyperlinkDetector() { @Override public IHyperlink[] detectHyperlinks(ITextViewer textViewer, IRegion region, boolean canShowMultipleHyperlinks) { try { return detector.detectHyperlinks(textViewer, region, canShowMultipleHyperlinks); } catch (Throwable e) { PHPUiPlugin.log(e); } return null; } }); } } return detectors.toArray(new IHyperlinkDetector[detectors.size()]); } @Override protected Map<String, IAdaptable> getHyperlinkDetectorTargets(ISourceViewer sourceViewer) { Map<String, IAdaptable> targets = super.getHyperlinkDetectorTargets(sourceViewer); if (sourceViewer instanceof PHPStructuredTextViewer) { ITextEditor textEditor = ((PHPStructuredTextViewer) sourceViewer).getTextEditor(); targets.put(PHPUiConstants.PHP_SOURCE_TYPE_ID, textEditor); } return targets; } @Override public IContentFormatter getContentFormatter(ISourceViewer sourceViewer) { IContentFormatter usedFormatter = null; IConfigurationElement[] elements = Platform.getExtensionRegistry() .getConfigurationElementsFor(PHPUiPlugin.FORMATTER_PROCESSOR_ID); for (int i = 0; i < elements.length; i++) { IConfigurationElement element = elements[i]; if (element.getName().equals("processor")) { //$NON-NLS-1$ ElementCreationProxy ecProxy = new ElementCreationProxy(element, PHPUiPlugin.FORMATTER_PROCESSOR_ID); usedFormatter = (IContentFormatter) ecProxy.getObject(); } } if (usedFormatter == null) { usedFormatter = new MultiPassContentFormatter(getConfiguredDocumentPartitioning(sourceViewer), IHTMLPartitions.HTML_DEFAULT); } return usedFormatter; } @Override public IAutoEditStrategy[] getAutoEditStrategies(ISourceViewer sourceViewer, String contentType) { if (contentType.equals(PHPPartitionTypes.PHP_DEFAULT)) { IAutoEditStrategy[] autoEditStrategies = super.getAutoEditStrategies(sourceViewer, contentType); List<IAutoEditStrategy> strategies = new LinkedList<>(); strategies.add(mainAutoEditStrategy); for (IAutoEditStrategy strategy : autoEditStrategies) { if (strategy instanceof org.eclipse.wst.html.ui.internal.autoedit.AutoEditStrategyForTabs || !(strategy instanceof IAutoEditStrategy)) { continue; } if (strategy instanceof DefaultIndentLineAutoEditStrategy) { continue; } strategies.add(strategy); } return strategies.toArray(new IAutoEditStrategy[strategies.size()]); } return getPHPAutoEditStrategy(sourceViewer, contentType); } private final IAutoEditStrategy[] getPHPAutoEditStrategy(ISourceViewer sourceViewer, String contentType) { final IAutoEditStrategy[] autoEditStrategies = super.getAutoEditStrategies(sourceViewer, contentType); final int length = autoEditStrategies.length; final IAutoEditStrategy[] augAutoEditStrategies = new IAutoEditStrategy[length + 1]; System.arraycopy(autoEditStrategies, 0, augAutoEditStrategies, 0, length); augAutoEditStrategies[length] = closeTagAutoEditStrategy; return augAutoEditStrategies; } @Override public ITextDoubleClickStrategy getDoubleClickStrategy(ISourceViewer sourceViewer, String contentType) { if (contentType == PHPPartitionTypes.PHP_DEFAULT) { // use php's doubleclick strategy return new PHPDoubleClickStrategy(); } else return super.getDoubleClickStrategy(sourceViewer, contentType); } @Override public String[] getIndentPrefixes(ISourceViewer sourceViewer, String contentType) { Vector<String> vector = new Vector<>(); // prefix[0] is either '\t' or ' ' x tabWidth, depending on preference IFormatterCommonPreferences formatterCommonPreferences = FormatterUtils.getFormatterCommonPreferences(); char indentCharPref = formatterCommonPreferences.getIndentationChar(sourceViewer.getDocument()); int indentationSize = formatterCommonPreferences.getIndentationSize(sourceViewer.getDocument()); for (int i = 0; i <= indentationSize; i++) { StringBuilder prefix = new StringBuilder(); boolean appendTab = false; for (int j = 0; j + i < indentationSize; j++) prefix.append(indentCharPref); if (i != 0) { appendTab = true; } if (appendTab) { prefix.append('\t'); vector.add(prefix.toString()); // remove the tab so that indentation - tab is also an indent // prefix prefix.deleteCharAt(prefix.length() - 1); } vector.add(prefix.toString()); } vector.add(EMPTY); // $NON-NLS-1$ return (String[]) vector.toArray(new String[vector.size()]); } /** * Returns the outline presenter which will determine and shown information * requested for the current cursor position. * * @param sourceViewer * the source viewer to be configured by this configuration * @return an information presenter * @since 2.1 */ public IInformationPresenter getOutlinePresenter(ISourceViewer sourceViewer) { InformationPresenter presenter = null; if (sourceViewer instanceof PHPStructuredTextViewer) { // set the right commandid,after doing this you can make double // clicking on Ctrl+O enable presenter = new InformationPresenter( getOutlinePresenterControlCreator(sourceViewer, IScriptEditorActionDefinitionIds.SHOW_OUTLINE)); presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer)); presenter.setAnchor(AbstractInformationControlManager.ANCHOR_GLOBAL); IInformationProvider provider = new PHPElementProvider( ((PHPStructuredTextViewer) sourceViewer).getTextEditor()); presenter.setInformationProvider(provider, PHPPartitionTypes.PHP_DEFAULT); presenter.setSizeConstraints(60, 20, true, false); IDialogSettings dialogSettings = PHPUiPlugin.getDefault().getDialogSettings(); if (dialogSettings != null) { IDialogSettings section = dialogSettings.getSection(QUICK_OUTLINE_SIZE_SECTION); if (section == null) { section = dialogSettings.addNewSection(QUICK_OUTLINE_SIZE_SECTION); } presenter.setRestoreInformationControlBounds(dialogSettings, true, true); } } return presenter; } /** * Returns the hierarchy presenter which will determine and shown type * hierarchy information requested for the current cursor position. * * @param sourceViewer * the source viewer to be configured by this configuration * @param doCodeResolve * a boolean which specifies whether code resolve should be used * to compute the PHP element * @return an information presenter * @since 3.4 */ public IInformationPresenter getHierarchyPresenter(PHPStructuredTextViewer viewer, boolean doCodeResolve) { // Do not create hierarchy presenter if there's no CU. if (viewer.getTextEditor() == null || viewer.getTextEditor().getEditorInput() == null) { return null; } InformationPresenter presenter = new InformationPresenter(getHierarchyPresenterControlCreator()); presenter.setDocumentPartitioning(getConfiguredDocumentPartitioning(viewer)); presenter.setAnchor(AbstractInformationControlManager.ANCHOR_GLOBAL); IInformationProvider provider = new PHPInformationHierarchyProvider(viewer.getTextEditor(), doCodeResolve); presenter.setInformationProvider(provider, PHPPartitionTypes.PHP_DEFAULT); presenter.setSizeConstraints(50, 20, true, false); return presenter; } private IInformationControlCreator getHierarchyPresenterControlCreator() { return new IInformationControlCreator() { @Override public IInformationControl createInformationControl(Shell parent) { int shellStyle = SWT.RESIZE; int treeStyle = SWT.V_SCROLL | SWT.H_SCROLL; return new HierarchyInformationControl(parent, shellStyle, treeStyle) { @Override protected IPreferenceStore getPreferenceStore() { return PHPUiPlugin.getDefault().getPreferenceStore(); } }; } }; } /** * Returns the outline presenter control creator. The creator is a factory * creating outline presenter controls for the given source viewer. This * implementation always returns a creator for * <code>PHPOutlineInformationControl</code> instances. * * @param sourceViewer * the source viewer to be configured by this configuration * @param commandId * the ID of the command that opens this control * @return an information control creator * @since 2.1 */ private IInformationControlCreator getOutlinePresenterControlCreator(ISourceViewer sourceViewer, final String commandId) { return new IInformationControlCreator() { @Override public IInformationControl createInformationControl(Shell parent) { int shellStyle = SWT.RESIZE; int treeStyle = SWT.V_SCROLL | SWT.H_SCROLL; return new PHPOutlineInformationControl(parent, shellStyle, treeStyle, commandId); } }; } /* * @seeorg.eclipse.jface.text.source.SourceViewerConfiguration# * getQuickAssistAssistant(org.eclipse.jface.text.source.ISourceViewer) */ @Override public IQuickAssistAssistant getQuickAssistAssistant(ISourceViewer sourceViewer) { if (fQuickAssistant == null) { IQuickAssistAssistant assistant = new PHPCorrectionAssistant(); assistant.setQuickAssistProcessor(new CompoundQuickAssistProcessor()); fQuickAssistant = assistant; } return fQuickAssistant; } public Map<String, IContentAssistProcessor[]> getProcessorMap() { return processorMap; } @Override protected IInformationProvider getInformationProvider(ISourceViewer sourceViewer, String partitionType) { if (!(sourceViewer instanceof PHPStructuredTextViewer)) return super.getInformationProvider(sourceViewer, partitionType); ITextHover bestMatchHover = new BestMatchHover(((PHPStructuredTextViewer) sourceViewer).getTextEditor(), PHPUiPlugin.getDefault().getPreferenceStore()); return new TextHoverInformationProvider(bestMatchHover); } class TextHoverInformationProvider implements IInformationProvider, IInformationProviderExtension, IInformationProviderExtension2 { private ITextHover fTextHover; public TextHoverInformationProvider(ITextHover hover) { fTextHover = hover; } @Override public String getInformation(ITextViewer textViewer, IRegion subject) { return (String) getInformation2(textViewer, subject); } @Override public Object getInformation2(ITextViewer textViewer, IRegion subject) { return fTextHover.getHoverInfo(textViewer, subject); } @Override public IInformationControlCreator getInformationPresenterControlCreator() { if (fTextHover instanceof IInformationProviderExtension2) return ((IInformationProviderExtension2) fTextHover).getInformationPresenterControlCreator(); return null; } @Override public IRegion getSubject(ITextViewer textViewer, int offset) { return fTextHover.getHoverRegion(textViewer, offset); } } /** * @return the associated content assistnat */ @Override protected StructuredContentAssistant getContentAssistant() { return this.fContentAssistant; } @Override public IPresentationReconciler getPresentationReconciler(ISourceViewer sourceViewer) { StructuredPresentationReconciler reconciler = new PHPStructuredPresentationReconciler(); reconciler.setDocumentPartitioning(getConfiguredDocumentPartitioning(sourceViewer)); String[] contentTypes = getConfiguredContentTypes(sourceViewer); if (contentTypes != null) { StructuredDocumentDamagerRepairer dr = null; for (int i = 0; i < contentTypes.length; i++) { if (fHighlighter != null) { // https://bugs.eclipse.org/bugs/show_bug.cgi?id=491328 // Remember that sharing same LineStyleProvider instance // here isn't thread-safe. // See also // StructuredDocumentDamagerRepairer.createPresentation(TextPresentation // presentation, ITypedRegion region). LineStyleProvider provider = fHighlighter.getProvider(contentTypes[i]); if (provider == null) continue; dr = new StructuredDocumentDamagerRepairer(provider); dr.setDocument(sourceViewer.getDocument()); reconciler.setDamager(dr, contentTypes[i]); reconciler.setRepairer(dr, contentTypes[i]); } } } return reconciler; } @Override public void setHighlighter(ReconcilerHighlighter highlighter) { fHighlighter = highlighter; super.setHighlighter(highlighter); } @Override public int getTabWidth(ISourceViewer sourceViewer) { if (sourceViewer instanceof PHPStructuredTextViewer) { ITextEditor editor = ((PHPStructuredTextViewer) sourceViewer).getTextEditor(); if (editor == null) { return super.getTabWidth(sourceViewer); } IDocument document = getDocument(editor); if (document == null) { return super.getTabWidth(sourceViewer); } IFormatterCommonPreferences formatterCommonPreferences = FormatterUtils.getFormatterCommonPreferences(); int tabSize = formatterCommonPreferences.getTabSize(document); return tabSize; } return super.getTabWidth(sourceViewer); } private IDocument getDocument(ITextEditor editor) { if (editor == null) { return null; } IEditorInput input = editor.getEditorInput(); IDocumentProvider provider = editor.getDocumentProvider(); return provider.getDocument(input); } }