|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#nullable disable
using System;
using System.ComponentModel.Composition;
using Microsoft.CodeAnalysis.Editor.Host;
using Microsoft.CodeAnalysis.Editor.InlineRename;
using Microsoft.CodeAnalysis.Editor.Shared.Extensions;
using Microsoft.CodeAnalysis.Editor.Shared.Utilities;
using Microsoft.CodeAnalysis.Host.Mef;
using Microsoft.CodeAnalysis.Options;
using Microsoft.CodeAnalysis.Shared.TestHooks;
using Microsoft.VisualStudio.Language.Intellisense;
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Utilities;
namespace Microsoft.CodeAnalysis.Editor.Implementation.IntelliSense.QuickInfo
{
[ContentType(ContentTypeNames.RoslynContentType)]
[Export(typeof(IAsyncQuickInfoSourceProvider))]
[Name("RoslynQuickInfoProvider")]
internal partial class QuickInfoSourceProvider : IAsyncQuickInfoSourceProvider
{
private readonly IThreadingContext _threadingContext;
private readonly IUIThreadOperationExecutor _operationExecutor;
private readonly Lazy<IStreamingFindUsagesPresenter> _streamingPresenter;
private readonly IAsynchronousOperationListener _listener;
private readonly EditorOptionsService _editorOptionsService;
private readonly IInlineRenameService _inlineRenameService;
[ImportingConstructor]
[Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
public QuickInfoSourceProvider(
IThreadingContext threadingContext,
IUIThreadOperationExecutor operationExecutor,
IAsynchronousOperationListenerProvider listenerProvider,
Lazy<IStreamingFindUsagesPresenter> streamingPresenter,
EditorOptionsService editorOptionsService,
IInlineRenameService inlineRenameService)
{
_threadingContext = threadingContext;
_operationExecutor = operationExecutor;
_streamingPresenter = streamingPresenter;
_listener = listenerProvider.GetListener(FeatureAttribute.QuickInfo);
_editorOptionsService = editorOptionsService;
_inlineRenameService = inlineRenameService;
}
public IAsyncQuickInfoSource TryCreateQuickInfoSource(ITextBuffer textBuffer)
{
if (textBuffer.IsInLspEditorContext())
return null;
return new QuickInfoSource(
textBuffer, _threadingContext, _operationExecutor, _listener, _streamingPresenter, _editorOptionsService, _inlineRenameService);
}
}
}
|