Files
qt-creator/src/plugins/terminal/shellintegration.h
Marcus Tillmanns ea14ada43b Terminal: Fix handling big chunks of OSC data
ShellIntegration previously ignored the initial and final flags of onOsc.

Change-Id: Ifa9594fba654cf543c117835fc182d4642dc70e4
Reviewed-by: Cristian Adam <cristian.adam@qt.io>
2023-08-03 09:19:27 +00:00

41 lines
1022 B
C++

// 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/commandline.h>
#include <utils/process.h>
#include <solutions/terminal/surfaceintegration.h>
#include <QTemporaryDir>
namespace Terminal {
class ShellIntegration : public QObject, public TerminalSolution::SurfaceIntegration
{
Q_OBJECT
public:
static bool canIntegrate(const Utils::CommandLine &cmdLine);
void onOsc(int cmd, std::string_view str, bool initial, bool final) override;
void onBell() override;
void onTitle(const QString &title) override;
void onSetClipboard(const QByteArray &text) override;
void prepareProcess(Utils::Process &process);
signals:
void commandChanged(const Utils::CommandLine &command);
void currentDirChanged(const QString &dir);
void titleChanged(const QString &title);
private:
QTemporaryDir m_tempDir;
QByteArray m_oscBuffer;
};
} // namespace Terminal