mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-10 18:43:54 -06:00
`pathTranslationStyle` has four options: - `none`: Do no translation - `wsl`: Translate `C:\` to `/mnt/c` and `\\wsl$\Foo\bar` to `/bar` - `cygwin`: Translate `C:\` to `/cygdrive/c` - `msys2`: Translate `C:\` to `/c` It is intended as a broadly-supported replacement for us checking the source every time the user drops a path. We no longer need to push the source name all the way down to the control. I am hesitant to commit to using other folks' product names in our settings model, however, these are almost certainly more recognizable than whatever other weird names we could come up with. The Git Bash fragment extension profile could conceivably use `pathTranslationStyle` `msys2` to make sure drag/dropped paths look right. (cherry picked from commit 068906714fa190e89020a3f59809ed9237b94708) Service-Card-Id: PVTI_lADOAF3p4s4AmhmQzgW9l6A Service-Version: 1.22
89 lines
10 KiB
C
89 lines
10 KiB
C
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT license.
|
|
|
|
#pragma once
|
|
|
|
// --------------------------- Core Appearance ---------------------------
|
|
// All of these settings are defined in ICoreAppearance.
|
|
#define CORE_APPEARANCE_SETTINGS(X) \
|
|
X(til::color, DefaultForeground, DEFAULT_FOREGROUND) \
|
|
X(til::color, DefaultBackground, DEFAULT_BACKGROUND) \
|
|
X(til::color, CursorColor, DEFAULT_CURSOR_COLOR) \
|
|
X(winrt::Microsoft::Terminal::Core::CursorStyle, CursorShape, winrt::Microsoft::Terminal::Core::CursorStyle::Vintage) \
|
|
X(uint32_t, CursorHeight, DEFAULT_CURSOR_HEIGHT) \
|
|
X(til::color, SelectionBackground, DEFAULT_FOREGROUND) \
|
|
X(bool, IntenseIsBold) \
|
|
X(bool, IntenseIsBright, true) \
|
|
X(winrt::Microsoft::Terminal::Core::AdjustTextMode, AdjustIndistinguishableColors, winrt::Microsoft::Terminal::Core::AdjustTextMode::Never)
|
|
|
|
// --------------------------- Control Appearance ---------------------------
|
|
// All of these settings are defined in IControlAppearance.
|
|
#define CONTROL_APPEARANCE_SETTINGS(X) \
|
|
X(float, Opacity, 1.0f) \
|
|
X(bool, UseAcrylic, false) \
|
|
X(winrt::hstring, BackgroundImage) \
|
|
X(float, BackgroundImageOpacity, 1.0f) \
|
|
X(winrt::Windows::UI::Xaml::Media::Stretch, BackgroundImageStretchMode, winrt::Windows::UI::Xaml::Media::Stretch::UniformToFill) \
|
|
X(winrt::Windows::UI::Xaml::HorizontalAlignment, BackgroundImageHorizontalAlignment, winrt::Windows::UI::Xaml::HorizontalAlignment::Center) \
|
|
X(winrt::Windows::UI::Xaml::VerticalAlignment, BackgroundImageVerticalAlignment, winrt::Windows::UI::Xaml::VerticalAlignment::Center) \
|
|
X(bool, RetroTerminalEffect, false) \
|
|
X(winrt::hstring, PixelShaderPath) \
|
|
X(winrt::hstring, PixelShaderImagePath)
|
|
|
|
// --------------------------- Core Settings ---------------------------
|
|
// All of these settings are defined in ICoreSettings.
|
|
#define CORE_SETTINGS(X) \
|
|
X(int32_t, HistorySize, DEFAULT_HISTORY_SIZE) \
|
|
X(int32_t, InitialRows, 30) \
|
|
X(int32_t, InitialCols, 80) \
|
|
X(bool, SnapOnInput, true) \
|
|
X(bool, AltGrAliasing, true) \
|
|
X(winrt::hstring, AnswerbackMessage) \
|
|
X(winrt::hstring, WordDelimiters, DEFAULT_WORD_DELIMITERS) \
|
|
X(bool, CopyOnSelect, false) \
|
|
X(bool, FocusFollowMouse, false) \
|
|
X(winrt::Windows::Foundation::IReference<winrt::Microsoft::Terminal::Core::Color>, TabColor, nullptr) \
|
|
X(winrt::Windows::Foundation::IReference<winrt::Microsoft::Terminal::Core::Color>, StartingTabColor, nullptr) \
|
|
X(bool, TrimBlockSelection, true) \
|
|
X(bool, SuppressApplicationTitle) \
|
|
X(bool, ForceVTInput, false) \
|
|
X(winrt::hstring, StartingTitle) \
|
|
X(bool, DetectURLs, true) \
|
|
X(bool, AutoMarkPrompts) \
|
|
X(bool, RepositionCursorWithMouse, false) \
|
|
X(bool, RainbowSuggestions) \
|
|
X(bool, AllowVtChecksumReport) \
|
|
X(bool, AllowVtClipboardWrite)
|
|
|
|
// --------------------------- Control Settings ---------------------------
|
|
// All of these settings are defined in IControlSettings.
|
|
#define CONTROL_SETTINGS(X) \
|
|
X(winrt::hstring, ProfileName) \
|
|
X(winrt::guid, SessionId) \
|
|
X(bool, EnableUnfocusedAcrylic, false) \
|
|
X(winrt::hstring, Padding, DEFAULT_PADDING) \
|
|
X(winrt::hstring, FontFace, L"Consolas") \
|
|
X(float, FontSize, DEFAULT_FONT_SIZE) \
|
|
X(winrt::Windows::UI::Text::FontWeight, FontWeight) \
|
|
X(IFontFeatureMap, FontFeatures) \
|
|
X(IFontAxesMap, FontAxes) \
|
|
X(bool, EnableBuiltinGlyphs, true) \
|
|
X(bool, EnableColorGlyphs, true) \
|
|
X(winrt::hstring, CellWidth) \
|
|
X(winrt::hstring, CellHeight) \
|
|
X(winrt::Microsoft::Terminal::Control::IKeyBindings, KeyBindings, nullptr) \
|
|
X(winrt::hstring, Commandline) \
|
|
X(winrt::hstring, StartingDirectory) \
|
|
X(winrt::Microsoft::Terminal::Control::ScrollbarState, ScrollState, winrt::Microsoft::Terminal::Control::ScrollbarState::Visible) \
|
|
X(winrt::Microsoft::Terminal::Control::TextAntialiasingMode, AntialiasingMode, winrt::Microsoft::Terminal::Control::TextAntialiasingMode::Grayscale) \
|
|
X(winrt::Microsoft::Terminal::Control::GraphicsAPI, GraphicsAPI) \
|
|
X(bool, DisablePartialInvalidation, false) \
|
|
X(bool, SoftwareRendering, false) \
|
|
X(winrt::Microsoft::Terminal::Control::TextMeasurement, TextMeasurement) \
|
|
X(winrt::Microsoft::Terminal::Control::DefaultInputScope, DefaultInputScope, winrt::Microsoft::Terminal::Control::DefaultInputScope::Default) \
|
|
X(bool, UseBackgroundImageForWindow, false) \
|
|
X(bool, ShowMarks, false) \
|
|
X(winrt::Microsoft::Terminal::Control::CopyFormat, CopyFormatting, 0) \
|
|
X(bool, RightClickContextMenu, false) \
|
|
X(winrt::Microsoft::Terminal::Control::PathTranslationStyle, PathTranslationStyle, winrt::Microsoft::Terminal::Control::PathTranslationStyle::None)
|