forked from qt-creator/qt-creator
Make usages of QList consistent. In some cases the declaration contained QVector arg, while the definition had QList arg. Remove some unneeded includes of QList. Change-Id: I7c15b39f261cefdeec6aaaf506ff4cc981432855 Reviewed-by: hjk <hjk@qt.io>
46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
// 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>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QSettings;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace Utils {
|
|
|
|
class Environment;
|
|
|
|
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(QSettings *settings);
|
|
static TerminalCommand defaultTerminalEmulator();
|
|
static QList<TerminalCommand> availableTerminalEmulators();
|
|
static TerminalCommand terminalEmulator();
|
|
static void setTerminalEmulator(const TerminalCommand &term);
|
|
};
|
|
|
|
} // Utils
|
|
|
|
Q_DECLARE_METATYPE(Utils::TerminalCommand)
|