forked from qt-creator/qt-creator
62 lines
2.0 KiB
C++
62 lines
2.0 KiB
C++
// Copyright (C) 2019 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 <projectexplorer/runconfigurationaspects.h>
|
|
|
|
#include <utils/filepath.h>
|
|
|
|
namespace Python::Internal {
|
|
|
|
class PythonSettings : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static void init();
|
|
|
|
using Interpreter = ProjectExplorer::Interpreter;
|
|
|
|
static QList<Interpreter> interpreters();
|
|
static Interpreter defaultInterpreter();
|
|
static Interpreter interpreter(const QString &interpreterId);
|
|
static void setInterpreter(const QList<Interpreter> &interpreters, const QString &defaultId);
|
|
static void addInterpreter(const Interpreter &interpreter, bool isDefault = false);
|
|
static void setPyLSConfiguration(const QString &configuration);
|
|
static bool pylsEnabled();
|
|
static void setPylsEnabled(const bool &enabled);
|
|
static QString pylsConfiguration();
|
|
static PythonSettings *instance();
|
|
|
|
static QList<Interpreter> detectPythonVenvs(const Utils::FilePath &path);
|
|
|
|
signals:
|
|
void interpretersChanged(const QList<Interpreter> &interpreters, const QString &defaultId);
|
|
void pylsConfigurationChanged(const QString &configuration);
|
|
void pylsEnabledChanged(const bool enabled);
|
|
|
|
public slots:
|
|
void detectPythonOnDevice(const Utils::FilePaths &searchPaths,
|
|
const QString &deviceName,
|
|
const QString &detectionSource,
|
|
QString *logMessage);
|
|
void removeDetectedPython(const QString &detectionSource, QString *logMessage);
|
|
void listDetectedPython(const QString &detectionSource, QString *logMessage);
|
|
|
|
private:
|
|
PythonSettings();
|
|
|
|
void initFromSettings(QSettings *settings);
|
|
void writeToSettings(QSettings *settings);
|
|
|
|
QList<Interpreter> m_interpreters;
|
|
QString m_defaultInterpreterId;
|
|
bool m_pylsEnabled = true;
|
|
QString m_pylsConfiguration;
|
|
|
|
static void saveSettings();
|
|
};
|
|
|
|
} // Python::Internal
|