File: EditorConfigSettings\Whitespace\View\ColumnDefnitions\WhitespaceValueColumnDefinition.cs
Web Access
Project: src\src\VisualStudio\Core\Def\Microsoft.VisualStudio.LanguageServices_25isknsj_wpftmp.csproj (Microsoft.VisualStudio.LanguageServices)
// 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.Collections.Generic;
using System.ComponentModel.Composition;
using System.Windows;
using Microsoft.CodeAnalysis.Editor.EditorConfigSettings.Data;
using Microsoft.CodeAnalysis.Host.Mef;
using Microsoft.VisualStudio.LanguageServices.EditorConfigSettings.Common;
using Microsoft.VisualStudio.LanguageServices.EditorConfigSettings.Whitespace.ViewModel;
using Microsoft.VisualStudio.Shell.TableControl;
using Microsoft.VisualStudio.Shell.TableManager;
using Microsoft.VisualStudio.Utilities;
using static Microsoft.VisualStudio.LanguageServices.EditorConfigSettings.Common.ColumnDefinitions.Whitespace;
 
namespace Microsoft.VisualStudio.LanguageServices.EditorConfigSettings.Whitespace.View.ColumnDefnitions;
 
[Export(typeof(ITableColumnDefinition))]
[Name(Value)]
internal class WhitespaceValueColumnDefinition : TableColumnDefinitionBase
{
    private readonly IEnumerable<IEnumSettingViewModelFactory> _factories;
 
    [ImportingConstructor]
    [Obsolete(MefConstruction.ImportingConstructorMessage, error: true)]
    public WhitespaceValueColumnDefinition([ImportMany] IEnumerable<IEnumSettingViewModelFactory> factories)
    {
        _factories = factories;
    }
 
    public override string Name => Value;
    public override string DisplayName => ServicesVSResources.Value;
    public override double MinWidth => 260;
    public override bool DefaultVisible => false;
    public override bool IsFilterable => false;
    public override bool IsSortable => false;
    public override TextWrapping TextWrapping => TextWrapping.NoWrap;
 
    public override bool TryCreateColumnContent(ITableEntryHandle entry, bool singleColumnView, out FrameworkElement? content)
    {
        if (!entry.TryGetValue(Value, out Setting setting))
        {
            content = null;
            return false;
        }
 
        if (setting.Type == typeof(bool))
        {
            var viewModel = new WhitespaceSettingBoolViewModel(setting);
            content = new WhitespaceBoolSettingView(viewModel);
            return true;
        }
 
        foreach (var factory in _factories)
        {
            if (factory.IsSupported(setting.Key))
            {
                var viewModel = factory.CreateViewModel(setting);
                content = new EnumSettingView(viewModel);
                return true;
            }
        }
 
        content = null;
        return false;
    }
}