mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
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>
|
||
|
|
{
|
||
|
|
};
|
||
|
|
}
|