summaryrefslogtreecommitdiffstats
path: root/src/designer/src/plugins/qwebview/qwebview_plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/designer/src/plugins/qwebview/qwebview_plugin.cpp')
-rw-r--r--src/designer/src/plugins/qwebview/qwebview_plugin.cpp80
1 files changed, 29 insertions, 51 deletions
diff --git a/src/designer/src/plugins/qwebview/qwebview_plugin.cpp b/src/designer/src/plugins/qwebview/qwebview_plugin.cpp
index 5f72a6185..123771497 100644
--- a/src/designer/src/plugins/qwebview/qwebview_plugin.cpp
+++ b/src/designer/src/plugins/qwebview/qwebview_plugin.cpp
@@ -1,40 +1,17 @@
-/****************************************************************************
-**
-** 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 LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qwebview_plugin.h"
#include <QtCore/qplugin.h>
#include <QWebView>
-static const char *toolTipC = "A widget for displaying a web page, from the Qt WebKit Widgets module.";
-
QT_BEGIN_NAMESPACE
+using namespace Qt::StringLiterals;
+
+static constexpr auto toolTipC = "A widget for displaying a web page, from the Qt WebKit Widgets module."_L1;
+
QWebViewPlugin::QWebViewPlugin(QObject *parent) :
QObject(parent),
m_initialized(false)
@@ -43,12 +20,12 @@ QWebViewPlugin::QWebViewPlugin(QObject *parent) :
QString QWebViewPlugin::name() const
{
- return QStringLiteral("QWebView");
+ return u"QWebView"_s;
}
QString QWebViewPlugin::group() const
{
- return QStringLiteral("Display Widgets");
+ return u"Display Widgets"_s;
}
QString QWebViewPlugin::toolTip() const
@@ -63,12 +40,12 @@ QString QWebViewPlugin::whatsThis() const
QString QWebViewPlugin::includeFile() const
{
- return QStringLiteral("<QtWebKitWidgets/QWebView>");
+ return u"<QtWebKitWidgets/QWebView>"_s;
}
QIcon QWebViewPlugin::icon() const
{
- return QIcon(QStringLiteral(":/qt-project.org/qwebview/images/qwebview.png"));
+ return QIcon(u":/qt-project.org/qwebview/images/qwebview.png"_s);
}
bool QWebViewPlugin::isContainer() const
@@ -96,24 +73,25 @@ void QWebViewPlugin::initialize(QDesignerFormEditorInterface * /*core*/)
QString QWebViewPlugin::domXml() const
{
- return QStringLiteral("\
- <ui language=\"c++\">\
- <widget class=\"QWebView\" name=\"webView\">\
- <property name=\"url\">\
- <url>\
- <string>about:blank</string>\
- </url>\
- </property>\
- <property name=\"geometry\">\
- <rect>\
- <x>0</x>\
- <y>0</y>\
- <width>300</width>\
- <height>200</height>\
- </rect>\
- </property>\
- </widget>\
- </ui>");
+ return QStringLiteral(R"(
+<ui language="c++">
+ <widget class="QWebView" name="webView">
+ <property name="url">
+ <url>
+ <string>about:blank</string>
+ </url>
+ </property>
+ <property name="geometry">
+ <rect>
+ <x>0</x>
+ <y>0</y>
+ <width>300</width>
+ <height>200</height>
+ </rect>
+ </property>
+ </widget>
+</ui>
+)");
}
QT_END_NAMESPACE