forked from qt-creator/qt-creator
Change-Id: Iceee91f761e080dcdd329375638f883261c0a319 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
47 lines
1.5 KiB
C++
47 lines
1.5 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/filepath.h>
|
|
|
|
#include <QCoreApplication>
|
|
#include <QTextDocument>
|
|
|
|
namespace TextEditor { class TextDocument; }
|
|
namespace ProjectExplorer { class RunConfiguration; }
|
|
|
|
namespace Python::Internal {
|
|
|
|
class PySideInstaller : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static PySideInstaller *instance();
|
|
static void checkPySideInstallation(const Utils::FilePath &python,
|
|
TextEditor::TextDocument *document);
|
|
|
|
signals:
|
|
void pySideInstalled(const Utils::FilePath &python, const QString &pySide);
|
|
|
|
private:
|
|
PySideInstaller();
|
|
|
|
void installPyside(const Utils::FilePath &python,
|
|
const QString &pySide, TextEditor::TextDocument *document);
|
|
void handlePySideMissing(const Utils::FilePath &python,
|
|
const QString &pySide,
|
|
TextEditor::TextDocument *document);
|
|
|
|
void runPySideChecker(const Utils::FilePath &python,
|
|
const QString &pySide,
|
|
TextEditor::TextDocument *document);
|
|
static bool missingPySideInstallation(const Utils::FilePath &python, const QString &pySide);
|
|
static QString importedPySide(const QString &text);
|
|
|
|
QHash<Utils::FilePath, QList<TextEditor::TextDocument *>> m_infoBarEntries;
|
|
};
|
|
|
|
} // Python::Internal
|