aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/plugins/designer/designercustomwidgets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/plugins/designer/designercustomwidgets.cpp')
-rw-r--r--sources/pyside6/plugins/designer/designercustomwidgets.cpp84
1 files changed, 30 insertions, 54 deletions
diff --git a/sources/pyside6/plugins/designer/designercustomwidgets.cpp b/sources/pyside6/plugins/designer/designercustomwidgets.cpp
index dd758bb98..d23156a9d 100644
--- a/sources/pyside6/plugins/designer/designercustomwidgets.cpp
+++ b/sources/pyside6/plugins/designer/designercustomwidgets.cpp
@@ -1,42 +1,7 @@
-/****************************************************************************
-**
-** Copyright (C) 2021 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 3 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL3 included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 3 requirements
-** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 2.0 or (at your option) the GNU General
-** Public license version 3 or any later version approved by the KDE Free
-** Qt Foundation. The licenses are as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-2.0.html and
-** https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+#undef slots
#include <Python.h> // Include before Qt headers due to 'slots' macro definition
#include "designercustomwidgets.h"
@@ -53,6 +18,8 @@
#include <string_view>
+using namespace Qt::StringLiterals;
+
Q_LOGGING_CATEGORY(lcPySidePlugin, "qt.pysideplugin")
static const char pathVar[] = "PYSIDE_DESIGNER_PLUGINS";
@@ -63,7 +30,7 @@ static const char pythonPathVar[] = "PYTHONPATH";
static QDesignerCustomWidgetCollectionInterface *findPyDesignerCustomWidgetCollection()
{
static const char propertyName[] = "__qt_PySideCustomWidgetCollection";
- if (auto coreApp = QCoreApplication::instance()) {
+ if (auto *coreApp = QCoreApplication::instance()) {
const QVariant value = coreApp->property(propertyName);
if (value.isValid() && value.canConvert<void *>())
return reinterpret_cast<QDesignerCustomWidgetCollectionInterface *>(value.value<void *>());
@@ -83,17 +50,17 @@ static QString pyStringToQString(PyObject *s)
static QString pyStr(PyObject *o)
{
PyObject *pstr = PyObject_Str(o);
- return pstr ? pyStringToQString(pstr) : QString();
+ return pstr != nullptr ? pyStringToQString(pstr) : QString();
}
static QString pyErrorMessage()
{
- QString result = QLatin1String("<error information not available>");
+ QString result = "<error information not available>"_L1;
PyObject *ptype = {};
PyObject *pvalue = {};
PyObject *ptraceback = {};
PyErr_Fetch(&ptype, &pvalue, &ptraceback);
- if (pvalue)
+ if (pvalue != nullptr)
result = pyStr(pvalue);
PyErr_Restore(ptype, pvalue, ptraceback);
return result;
@@ -120,7 +87,7 @@ static bool runPyScript(const char *script, QString *errorMessage)
{
PyObject *main = PyImport_AddModule("__main__");
if (main == nullptr) {
- *errorMessage = QLatin1String("Internal error: Cannot retrieve __main__");
+ *errorMessage = "Internal error: Cannot retrieve __main__"_L1;
return false;
}
PyObject *globalDictionary = PyModule_GetDict(main);
@@ -151,8 +118,7 @@ static bool runPyScriptFile(const QString &fileName, QString *errorMessage)
file.close();
const bool ok = runPyScript(script.constData(), errorMessage);
if (!ok && !errorMessage->isEmpty()) {
- errorMessage->prepend(QLatin1String("Error running ") + fileName
- + QLatin1String(": "));
+ errorMessage->prepend("Error running "_L1 + fileName + ": "_L1);
}
return ok;
}
@@ -190,10 +156,10 @@ static void initVirtualEnvironment()
pythonPath.append(virtualEnvPath + R"(\Lib\site-packages)");
break;
case QOperatingSystemVersion::MacOS:
- pythonPath.append(virtualEnvPath + QByteArrayLiteral("/lib/python") +
+ pythonPath.append(virtualEnvPath + "/lib/python"_ba +
QByteArray::number(majorVersion) + '.'
+ QByteArray::number(minorVersion)
- + QByteArrayLiteral("/site-packages"));
+ + "/site-packages"_ba);
break;
default:
break;
@@ -211,13 +177,20 @@ static void initPython()
qAddPostRoutine(Py_Finalize);
}
+static bool withinQtDesigner = false;
+
PyDesignerCustomWidgets::PyDesignerCustomWidgets(QObject *parent) : QObject(parent)
{
qCDebug(lcPySidePlugin, "%s", __FUNCTION__);
+ withinQtDesigner = QCoreApplication::applicationName() == u"Designer"
+ && QCoreApplication::organizationName() == u"QtProject";
+
if (!qEnvironmentVariableIsSet(pathVar)) {
- qCWarning(lcPySidePlugin, "Environment variable %s is not set, bailing out.",
- pathVar);
+ if (withinQtDesigner) {
+ qCWarning(lcPySidePlugin, "Environment variable %s is not set, bailing out.",
+ pathVar);
+ }
return;
}
@@ -233,7 +206,7 @@ PyDesignerCustomWidgets::PyDesignerCustomWidgets(QObject *parent) : QObject(pare
QDir dir(p);
if (dir.exists()) {
const QFileInfoList matches =
- dir.entryInfoList({QStringLiteral("register*.py")}, QDir::Files,
+ dir.entryInfoList({u"register*.py"_s}, QDir::Files,
QDir::Name);
for (const auto &fi : matches)
pythonFiles.append(fi.absoluteFilePath());
@@ -260,11 +233,13 @@ PyDesignerCustomWidgets::PyDesignerCustomWidgets(QObject *parent) : QObject(pare
qputenv(pythonPathVar, value);
}
- initPython();
+ // Might be initialized already, for example, when loaded from QUiLoader.
+ if (Py_IsInitialized() == 0)
+ initPython();
// Run all register*py files
QString errorMessage;
- for (const auto &pythonFile : qAsConst(pythonFiles)) {
+ for (const auto &pythonFile : std::as_const(pythonFiles)) {
qCDebug(lcPySidePlugin) << "running" << pythonFile;
if (!runPyScriptFile(pythonFile, &errorMessage))
qCWarning(lcPySidePlugin, "%s", qPrintable(errorMessage));
@@ -278,8 +253,9 @@ PyDesignerCustomWidgets::~PyDesignerCustomWidgets()
QList<QDesignerCustomWidgetInterface *> PyDesignerCustomWidgets::customWidgets() const
{
- if (auto collection = findPyDesignerCustomWidgetCollection())
+ if (auto *collection = findPyDesignerCustomWidgetCollection())
return collection->customWidgets();
- qCWarning(lcPySidePlugin, "No instance of QPyDesignerCustomWidgetCollection was found.");
+ if (withinQtDesigner)
+ qCWarning(lcPySidePlugin, "No instance of QPyDesignerCustomWidgetCollection was found.");
return {};
}