// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. import "EnumEntry.idl"; namespace Microsoft.Terminal.Settings.Editor { runtimeclass GlobalAppearancePageNavigationState { Microsoft.Terminal.Settings.Model.GlobalAppSettings Globals; }; [default_interface] runtimeclass GlobalAppearance : Windows.UI.Xaml.Controls.Page { GlobalAppearance(); GlobalAppearancePageNavigationState State { get; }; static String LanguageDisplayConverter(String tag); Windows.Foundation.Collections.IObservableVector LanguageList { get; }; IInspectable CurrentLanguage; IInspectable CurrentTheme; Windows.Foundation.Collections.IObservableVector ThemeList { get; }; IInspectable CurrentTabWidthMode; Windows.Foundation.Collections.IObservableVector TabWidthModeList { get; }; } }