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

LightBulbImageCatalog.cs « Catalogs « Def « Imaging « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09b0f476ebcb001339f32d2a9fd0129cf439c7ee (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
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//

using System;

using Microsoft.VisualStudio.Core.Imaging;

namespace Microsoft.VisualStudio.Language.Intellisense
{
    public static class LightBulbImageCatalog
    {
        public static readonly Guid CatalogId = new Guid("f09c8ce2-d515-4226-a430-dec104c81f05");

        public static object GetImage(this IImageService imageService, LightBulbImageId imageId, ImageTags imageTags = default)
            => imageService.GetImage(new ImageDescription(new ImageId(CatalogId, (int)imageId), 16, imageTags));
    }

    public enum LightBulbImageId
    {
        OnlyActions = 1,
        Fixes,
        ErrorFixes,
    }
}