2022-08-19 15:59:36 +02:00
|
|
|
// 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
|
2019-10-01 13:16:17 +02:00
|
|
|
|
2019-10-18 10:31:14 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2022-05-20 16:51:30 +02:00
|
|
|
#include <utils/filepath.h>
|
2019-10-01 13:16:17 +02:00
|
|
|
|
2022-07-15 11:49:34 +02:00
|
|
|
namespace Python::Internal {
|
2019-10-01 13:16:17 +02:00
|
|
|
|
2020-03-10 16:26:20 +01:00
|
|
|
enum class ReplType { Unmodified, Import, ImportToplevel };
|
2022-01-20 11:23:31 +01:00
|
|
|
void openPythonRepl(QObject *parent, const Utils::FilePath &file, ReplType type);
|
2021-12-13 14:19:30 +01:00
|
|
|
Utils::FilePath detectPython(const Utils::FilePath &documentPath);
|
2022-03-16 09:28:01 +01:00
|
|
|
QString pythonName(const Utils::FilePath &pythonPath);
|
2019-10-01 13:16:17 +02:00
|
|
|
|
2022-03-23 07:40:20 +01:00
|
|
|
class PythonProject;
|
|
|
|
|
PythonProject *pythonProjectForFile(const Utils::FilePath &pythonFile);
|
|
|
|
|
|
2022-07-15 11:49:34 +02:00
|
|
|
} // Python::Internal
|