mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-11 04:38:24 -06:00
This adds support for specifying more than one font family using a syntax that is similar to CSS' `font-family` property. The implementation is straight-forward and is effectively just a wrapper around `IDWriteFontFallbackBuilder`. Closes #2664 ## PR Checklist * Font fallback * Write "「猫」" * Use "Consolas" and remember the shape of the glyphs * Use "Consolas, MS Gothic" and check that it changed ✅ * Settings UI autocompletion * It completes ✅ * It filters ✅ * It recognizes commas and starts a new name ✅ * All invalid font names are listed in the warning message ✅ --------- Co-authored-by: Dustin L. Howett <duhowett@microsoft.com>
41 lines
1.5 KiB
C++
41 lines
1.5 KiB
C++
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT license.
|
|
|
|
#pragma once
|
|
|
|
#include "Converters.g.h"
|
|
|
|
namespace winrt::Microsoft::Terminal::UI::implementation
|
|
{
|
|
struct Converters
|
|
{
|
|
// Booleans
|
|
static bool InvertBoolean(bool value);
|
|
static winrt::Windows::UI::Xaml::Visibility InvertedBooleanToVisibility(bool value);
|
|
|
|
// Numbers
|
|
static double PercentageToPercentageValue(double value);
|
|
static double PercentageValueToPercentage(double value);
|
|
static winrt::hstring PercentageToPercentageString(double value);
|
|
|
|
// Strings
|
|
static bool StringsAreNotEqual(const winrt::hstring& expected, const winrt::hstring& actual);
|
|
static bool StringNotEmpty(const winrt::hstring& value);
|
|
static winrt::Windows::UI::Xaml::Visibility StringNotEmptyToVisibility(const winrt::hstring& value);
|
|
static winrt::hstring StringOrEmptyIfPlaceholder(const winrt::hstring& placeholder, const winrt::hstring& value);
|
|
|
|
// Misc
|
|
static winrt::Windows::UI::Text::FontWeight DoubleToFontWeight(double value);
|
|
static winrt::Windows::UI::Xaml::Media::SolidColorBrush ColorToBrush(winrt::Windows::UI::Color color);
|
|
static double FontWeightToDouble(winrt::Windows::UI::Text::FontWeight fontWeight);
|
|
static double MaxValueFromPaddingString(const winrt::hstring& paddingString);
|
|
};
|
|
}
|
|
|
|
namespace winrt::Microsoft::Terminal::UI::factory_implementation
|
|
{
|
|
struct Converters : ConvertersT<Converters, implementation::Converters>
|
|
{
|
|
};
|
|
}
|