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

CreateTextViewHostCallback.cs « DifferenceViewer « TextUICocoa « Def « Text « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8afd86555808cc6d6fc7fbcb489c157bad85aec0 (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
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//
using System.Windows;
using AppKit;
using Microsoft.VisualStudio.Text.Editor;

namespace Microsoft.VisualStudio.Text.Differencing
{
    /// <summary>
    /// Callback used with <see cref="ICocoaDifferenceViewerFactoryService"/> to create a text view host.
    /// </summary>
    /// <param name="textViewModel">The text view model to use in creating the text view.</param>
    /// <param name="roles">The roles specific to this view.</param>
    /// <param name="options">The options to use in creating the text view.</param>
    /// <param name="visualElement">The top-level visual element for this host.</param>
    /// <param name="textViewHost">The created text view host.</param>
    /// <remarks>
    /// <para>
    /// To get standard text view roles, the implementation of this method should concatenate the given <paramref name="roles"/> with
    /// <see cref="ITextEditorFactoryService.DefaultRoles"/>.
    /// </para>
    /// <para>
    /// In most cases, the visual element can just be the <paramref name="textViewHost"/>'s <see cref="ICocoaTextViewHost.HostControl"/>.
    /// </para>
    /// </remarks>
    public delegate void CreateTextViewHostCallback(IDifferenceTextViewModel textViewModel, ITextViewRoleSet roles, IEditorOptions options,
                                                    out NSView visualElement, out ICocoaTextViewHost textViewHost);
}