blob: 5ef1eba1cf48acdb061cae1bdf23a9690cc97718 (
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
41
42
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "utils_global.h"
#include "filepath.h"
#include <QList>
#include <QMetaType>
namespace Utils {
class Environment;
class QtcSettings;
class QTCREATOR_UTILS_EXPORT TerminalCommand
{
public:
TerminalCommand() = default;
TerminalCommand(const FilePath &command, const QString &openArgs,
const QString &executeArgs, bool needsQuotes = false);
bool operator==(const TerminalCommand &other) const;
bool operator<(const TerminalCommand &other) const;
Utils::FilePath command;
QString openArgs;
QString executeArgs;
bool needsQuotes = false;
static void setSettings(QtcSettings *settings);
static TerminalCommand defaultTerminalEmulator();
static QList<TerminalCommand> availableTerminalEmulators();
static TerminalCommand terminalEmulator();
static void setTerminalEmulator(const TerminalCommand &term);
};
} // Utils
Q_DECLARE_METATYPE(Utils::TerminalCommand)
|