Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IStructureContextSource.cs « Adornments « TextUI « Def « Text « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f5688e50213066deedaa4c1223afd44e7c0ff5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//

namespace Microsoft.VisualStudio.Text.Adornments
{
    using System;
    using System.Collections.Generic;
    using System.Threading;
    using System.Threading.Tasks;
    using Microsoft.VisualStudio.Text.UI.Adornments;

    /// <summary>
    /// Provides context for structural block tool tips for a given sequence
    /// of <see cref="IStructureElement"/>s.
    /// </summary>
    public interface IStructureContextSource : IDisposable
    {
        /// <summary>
        /// Gets the context for the given structure tags.
        /// </summary>
        /// <param name="elements">The structure tags to get context for.</param>
        /// <param name="token">The cancellation token for this asynchronous method call.</param>
        /// <returns>The object to be displayed in the structure tool tip.</returns>
        /// <remarks>
        /// If the object returned by this method implements ITextView, ITextView.Close() is called
        /// when the tooltip is dismissed.
        /// </remarks>
        Task<object> GetStructureContextAsync(IEnumerable<IStructureElement> elements, CancellationToken token);
    }
}