summaryrefslogtreecommitdiff
path: root/src/plugins/python/pythonsettings.h
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@qt.io>2022-06-09 13:41:41 +0200
committerDavid Schulz <david.schulz@qt.io>2022-06-10 12:47:23 +0000
commit4c20a880e6395f43e5fc9770c53c1034d08847a4 (patch)
tree5e05d87f84ea896fede9ec939f3dd9c044a87dbf /src/plugins/python/pythonsettings.h
parented22ef78543a41e334687b4c70493b8bd21ed7b3 (diff)
downloadqt-creator-4c20a880e6395f43e5fc9770c53c1034d08847a4.tar.gz
Python: remove python specific language client settings
Change-Id: Ic993d525f29c1925f7e64dfc6f5e053234fb4904 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/python/pythonsettings.h')
-rw-r--r--src/plugins/python/pythonsettings.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/python/pythonsettings.h b/src/plugins/python/pythonsettings.h
index 0721e56054..94b9cc819a 100644
--- a/src/plugins/python/pythonsettings.h
+++ b/src/plugins/python/pythonsettings.h
@@ -49,6 +49,8 @@ public:
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();
@@ -57,6 +59,7 @@ public:
signals:
void interpretersChanged(const QList<Interpreter> &interpreters, const QString &defaultId);
void pylsConfigurationChanged(const QString &configuration);
+ void pylsEnabledChanged(const bool enabled);
private:
PythonSettings();