forked from qt-creator/qt-creator
Change-Id: I0916204eefb49713f241dd43da662f258f8c99f7 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: David Schulz <david.schulz@qt.io>
47 lines
1.0 KiB
C++
47 lines
1.0 KiB
C++
// Copyright (C) 2016 Lorenz Haas
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "texteditor_global.h"
|
|
|
|
#include <utils/filepath.h>
|
|
|
|
namespace TextEditor {
|
|
|
|
class TEXTEDITOR_EXPORT Command
|
|
{
|
|
public:
|
|
enum Processing {
|
|
FileProcessing,
|
|
PipeProcessing
|
|
};
|
|
|
|
bool isValid() const;
|
|
|
|
Utils::FilePath executable() const;
|
|
void setExecutable(const Utils::FilePath &executable);
|
|
|
|
QStringList options() const;
|
|
void addOption(const QString &option);
|
|
void addOptions(const QStringList &options);
|
|
|
|
Processing processing() const;
|
|
void setProcessing(const Processing &processing);
|
|
|
|
bool pipeAddsNewline() const;
|
|
void setPipeAddsNewline(bool pipeAddsNewline);
|
|
|
|
bool returnsCRLF() const;
|
|
void setReturnsCRLF(bool returnsCRLF);
|
|
|
|
private:
|
|
Utils::FilePath m_executable;
|
|
QStringList m_options;
|
|
Processing m_processing = FileProcessing;
|
|
bool m_pipeAddsNewline = false;
|
|
bool m_returnsCRLF = false;
|
|
};
|
|
|
|
} // namespace TextEditor
|