summaryrefslogtreecommitdiffstats
path: root/src/designer/src/lib/shared/plugindialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/designer/src/lib/shared/plugindialog.cpp')
-rw-r--r--src/designer/src/lib/shared/plugindialog.cpp52
1 files changed, 17 insertions, 35 deletions
diff --git a/src/designer/src/lib/shared/plugindialog.cpp b/src/designer/src/lib/shared/plugindialog.cpp
index de96d55d2..fb4ec4e6a 100644
--- a/src/designer/src/lib/shared/plugindialog.cpp
+++ b/src/designer/src/lib/shared/plugindialog.cpp
@@ -1,30 +1,5 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the Qt Designer of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** 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 General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** 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-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
+// Copyright (C) 2016 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "plugindialog_p.h"
@@ -47,11 +22,14 @@
# include <QtGui/QClipboard>
#endif
+#include <QtCore/qdir.h>
#include <QtCore/qfileinfo.h>
#include <QtCore/qpluginloader.h>
QT_BEGIN_NAMESPACE
+using namespace Qt::StringLiterals;
+
enum { ErrorItemRole = Qt::UserRole + 1 };
namespace qdesigner_internal {
@@ -109,7 +87,7 @@ void PluginDialog::populateTreeWidget()
QPluginLoader loader(fileName);
const QFileInfo fileInfo(fileName);
- QTreeWidgetItem *pluginItem = setPluginItem(topLevelItem, fileInfo.fileName(), boldFont);
+ QTreeWidgetItem *pluginItem = setPluginItem(topLevelItem, fileInfo, boldFont);
if (QObject *plugin = loader.instance()) {
if (const QDesignerCustomWidgetCollectionInterface *c = qobject_cast<QDesignerCustomWidgetCollectionInterface*>(plugin)) {
@@ -130,10 +108,10 @@ void PluginDialog::populateTreeWidget()
const QFont boldFont = topLevelItem->font(0);
for (const QString &plugin : notLoadedPlugins) {
const QString failureReason = pluginManager->failureReason(plugin);
- const QString htmlFailureReason = QLatin1String("<html><head/><body><p>")
+ const QString htmlFailureReason = "<html><head/><body><p>"_L1
+ failureReason.toHtmlEscaped()
- + QLatin1String("</p></body></html>");
- QTreeWidgetItem *pluginItem = setPluginItem(topLevelItem, plugin, boldFont);
+ + "</p></body></html>"_L1;
+ QTreeWidgetItem *pluginItem = setPluginItem(topLevelItem, QFileInfo(plugin), boldFont);
auto errorItem = setItem(pluginItem, failureReason,
htmlFailureReason, QString(), QIcon());
errorItem->setData(0, ErrorItemRole, QVariant(true));
@@ -141,10 +119,10 @@ void PluginDialog::populateTreeWidget()
}
if (ui.treeWidget->topLevelItemCount() == 0) {
- ui.label->setText(tr("Qt Designer couldn't find any plugins"));
+ ui.label->setText(tr("Qt Widgets Designer couldn't find any plugins"));
ui.treeWidget->hide();
} else {
- ui.label->setText(tr("Qt Designer found the following plugins"));
+ ui.label->setText(tr("Qt Widgets Designer found the following plugins"));
}
}
@@ -163,11 +141,15 @@ QTreeWidgetItem* PluginDialog::setTopLevelItem(const QString &itemName)
}
QTreeWidgetItem* PluginDialog::setPluginItem(QTreeWidgetItem *topLevelItem,
- const QString &itemName, const QFont &font)
+ const QFileInfo &file, const QFont &font)
{
QTreeWidgetItem *pluginItem = new QTreeWidgetItem(topLevelItem);
+ QString toolTip = QDir::toNativeSeparators(file.absoluteFilePath());
+ if (file.exists())
+ toolTip += u'\n' + file.lastModified().toString();
pluginItem->setFont(0, font);
- pluginItem->setText(0, itemName);
+ pluginItem->setText(0, file.fileName());
+ pluginItem->setToolTip(0, toolTip);
pluginItem->setExpanded(true);
pluginItem->setIcon(0, style()->standardPixmap(QStyle::SP_DirOpenIcon));