using Avalonia.Markup.Xaml; using FluentAvalonia.UI.Controls; using System; using System.Collections.Generic; namespace Ryujinx.Ava.UI.Helpers { public class GlyphValueConverter : MarkupExtension { private readonly string _key; private static readonly Dictionary _glyphs = new() { { Glyph.List, char.ConvertFromUtf32((int)Symbol.List) }, { Glyph.Grid, char.ConvertFromUtf32((int)Symbol.ViewAll) }, { Glyph.Chip, char.ConvertFromUtf32(59748) }, }; public GlyphValueConverter(string key) { _key = key; } public string this[string key] { get { if (_glyphs.TryGetValue(Enum.Parse(key), out var val)) { return val; } return string.Empty; } } public override object ProvideValue(IServiceProvider serviceProvider) { return this[_key]; } } }