blob: 64af55af2f103f5aea042ab7f1d68d75eaa05c0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once
#include <utils/aspects.h>
namespace Terminal {
class TerminalSettings : public Utils::AspectContainer
{
public:
TerminalSettings();
Utils::BoolAspect enableTerminal{this};
Utils::StringAspect font{this};
Utils::IntegerAspect fontSize{this};
Utils::FilePathAspect shell{this};
Utils::StringAspect shellArguments{this};
Utils::ColorAspect foregroundColor;
Utils::ColorAspect backgroundColor;
Utils::ColorAspect selectionColor;
Utils::ColorAspect findMatchColor;
Utils::ColorAspect colors[16];
Utils::BoolAspect allowBlinkingCursor{this};
Utils::ToggleAspect sendEscapeToTerminal{this};
Utils::BoolAspect audibleBell{this};
Utils::ToggleAspect lockKeyboard{this};
Utils::BoolAspect enableMouseTracking{this};
};
TerminalSettings &settings();
} // Terminal
|