File: NavigationBar\NavigationBarControllerFactoryService.cs
Web Access
Project: src\src\EditorFeatures\Core\Microsoft.CodeAnalysis.EditorFeatures.csproj (Microsoft.CodeAnalysis.EditorFeatures)
// 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.
 
using System;
using System.ComponentModel.Composition;
using Microsoft.CodeAnalysis.Editor.Shared.Utilities;
using Microsoft.CodeAnalysis.Host.Mef;
using Microsoft.CodeAnalysis.Shared.TestHooks;
using Microsoft.CodeAnalysis.Workspaces;
using Microsoft.VisualStudio.Text;
using Microsoft.VisualStudio.Utilities;
 
namespace Microsoft.CodeAnalysis.Editor.Implementation.NavigationBar;
 
[Export(typeof(INavigationBarControllerFactoryService))]
[method: ImportingConstructor]
[method: Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
internal class NavigationBarControllerFactoryService(
    IThreadingContext threadingContext,
    [Import(AllowDefault = true)] ITextBufferVisibilityTracker? visibilityTracker,
    IUIThreadOperationExecutor uIThreadOperationExecutor,
    IAsynchronousOperationListenerProvider listenerProvider) : INavigationBarControllerFactoryService
{
    private readonly IThreadingContext _threadingContext = threadingContext;
    private readonly ITextBufferVisibilityTracker? _visibilityTracker = visibilityTracker;
    private readonly IUIThreadOperationExecutor _uIThreadOperationExecutor = uIThreadOperationExecutor;
    private readonly IAsynchronousOperationListener _asyncListener = listenerProvider.GetListener(FeatureAttribute.NavigationBar);
 
    public IDisposable CreateController(INavigationBarPresenter presenter, ITextBuffer textBuffer)
    {
        return new NavigationBarController(
            _threadingContext,
            presenter,
            textBuffer,
            _visibilityTracker,
            _uIThreadOperationExecutor,
            _asyncListener);
    }
}