Files
qt-creator/src/plugins/python/pyside.h
David Schulz dea3ea2262 Python: remove unused function
Change-Id: Iceee91f761e080dcdd329375638f883261c0a319
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
2023-03-17 12:17:32 +00:00

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