From 557dd722e1775c33fc4890b409c6aa2664d26372 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Wed, 8 Mar 2017 01:50:41 -0300 Subject: qtcreator: move package from [libre-testing] to [libre] --- libre/qtcreator/libre.patch | 241 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 241 insertions(+) create mode 100644 libre/qtcreator/libre.patch (limited to 'libre/qtcreator/libre.patch') diff --git a/libre/qtcreator/libre.patch b/libre/qtcreator/libre.patch new file mode 100644 index 000000000..ef434c9d9 --- /dev/null +++ b/libre/qtcreator/libre.patch @@ -0,0 +1,241 @@ +diff --git a/share/qtcreator/translations/qtcreator_de.ts b/share/qtcreator/translations/qtcreator_de.ts +index 63d7263b7..b0f6223de 100644 +--- a/share/qtcreator/translations/qtcreator_de.ts ++++ b/share/qtcreator/translations/qtcreator_de.ts +@@ -7469,14 +7469,6 @@ Rename %2 to %3 anyway? + Klassen zur Anzeige des Inhalts von SVG-Dateien + + +- Classes for displaying and editing Web content using Chromium backend +- Klassen zum Anzeigen und Bearbeiten von Web-Inhalten mithilfe des Chromium-Backends +- +- +- WebEngine and QWidget-based classes using Chromium backend +- Auf WebEngine und QWidget basierende Klassen, die das Chromium-Backend verwenden +- +- + Classes for displaying and editing Web content + Klassen zum Anzeigen und Bearbeiten von Web-Inhalten + +diff --git a/share/qtcreator/translations/qtcreator_ja.ts b/share/qtcreator/translations/qtcreator_ja.ts +index 8d66d620d..189e68006 100644 +--- a/share/qtcreator/translations/qtcreator_ja.ts ++++ b/share/qtcreator/translations/qtcreator_ja.ts +@@ -24224,14 +24224,6 @@ Neither the path to the library nor the path to its includes is added to the .pr + SVG ファイルを表示する為のクラスです + + +- Classes for displaying and editing Web content using Chromium backend +- Chromium バックエンドを使用する Web コンテンツを表示・編集する為のクラスです +- +- +- WebEngine and QWidget-based classes using Chromium backend +- Chromium バックエンドを使用する WebEngine と QWidget ベースのクラスです +- +- + Classes for displaying and editing Web content + Web コンテンツを表示・編集する為のクラスです + +diff --git a/share/qtcreator/translations/qtcreator_pl.ts b/share/qtcreator/translations/qtcreator_pl.ts +index 07f8e0ba8..f05abba0f 100644 +--- a/share/qtcreator/translations/qtcreator_pl.ts ++++ b/share/qtcreator/translations/qtcreator_pl.ts +@@ -8875,14 +8875,6 @@ do projektu "%2". + Klasy służące do wyświetlania zawartości plików SVG + + +- Classes for displaying and editing Web content using Chromium backend +- Klasy służące do wyświetlania i modyfikacji zawartości stron internetowych, używające back-endu Chromium +- +- +- WebEngine and QWidget-based classes using Chromium backend +- Klasy WebEngine i klasy bazujące na QWidget, używające back-endu Chromium +- +- + Classes for displaying and editing Web content + Klasy służące do wyświetlania i modyfikacji zawartości stron internetowych + +diff --git a/share/qtcreator/translations/qtcreator_ru.ts b/share/qtcreator/translations/qtcreator_ru.ts +index 7ada6cbbc..ba74b030b 100644 +--- a/share/qtcreator/translations/qtcreator_ru.ts ++++ b/share/qtcreator/translations/qtcreator_ru.ts +@@ -34077,14 +34077,6 @@ For more details, see /etc/sysctl.d/10-ptrace.conf + Классы для отображения содержимого файлов SVG + + +- Classes for displaying and editing Web content using Chromium backend +- Классы для отображения и изменения Web-содержимого с использованием движка Chromium +- +- +- WebEngine and QWidget-based classes using Chromium backend +- WebEngine и классы на базе QWidget, использующие движок Chromium +- +- + Classes for displaying and editing Web content + Классы для отображения и правки вэб-страниц + +diff --git a/share/qtcreator/welcomescreen/qtcreator_tutorials.xml b/share/qtcreator/welcomescreen/qtcreator_tutorials.xml +index 23fad843d..4864a9c8d 100644 +--- a/share/qtcreator/welcomescreen/qtcreator_tutorials.xml ++++ b/share/qtcreator/welcomescreen/qtcreator_tutorials.xml +@@ -105,14 +105,6 @@ + + qt quick,widgets + +- +- +- qt webengine +- +- +- +- qt webengine +- + + + qt,qt creator,3d +diff --git a/src/plugins/help/help.pro b/src/plugins/help/help.pro +index ffe71b6f1..a8d0bd72f 100644 +--- a/src/plugins/help/help.pro ++++ b/src/plugins/help/help.pro +@@ -58,13 +58,6 @@ FORMS += docsettingspage.ui \ + generalsettingspage.ui \ + remotehelpfilter.ui + +-!isEmpty(QT.webenginewidgets.name) { +- QT += webenginewidgets +- HEADERS += webenginehelpviewer.h +- SOURCES += webenginehelpviewer.cpp +- DEFINES += QTC_WEBENGINE_HELPVIEWER +-} +- + osx { + DEFINES += QTC_MAC_NATIVE_HELPVIEWER + QT += macextras +diff --git a/src/plugins/help/helpplugin.cpp b/src/plugins/help/helpplugin.cpp +index 115bdfbca..8bde52c9f 100644 +--- a/src/plugins/help/helpplugin.cpp ++++ b/src/plugins/help/helpplugin.cpp +@@ -46,9 +46,6 @@ + #ifdef QTC_MAC_NATIVE_HELPVIEWER + #include "macwebkithelpviewer.h" + #endif +-#ifdef QTC_WEBENGINE_HELPVIEWER +-#include "webenginehelpviewer.h" +-#endif + + #include + #include +@@ -376,9 +373,6 @@ HelpViewer *HelpPlugin::createHelpViewer(qreal zoom) + typedef std::function ViewerFactory; + typedef QPair ViewerFactoryItem; // id -> factory + QVector factories; +-#ifdef QTC_WEBENGINE_HELPVIEWER +- factories.append(qMakePair(QByteArray("qtwebengine"), []() { return new WebEngineHelpViewer(); })); +-#endif + factories.append(qMakePair(QByteArray("textbrowser"), []() { return new TextBrowserHelpViewer(); })); + + #ifdef QTC_MAC_NATIVE_HELPVIEWER +diff --git a/src/plugins/qmakeprojectmanager/qtmodulesinfo.cpp b/src/plugins/qmakeprojectmanager/qtmodulesinfo.cpp +index a10899a2a..9ce2b463d 100644 +--- a/src/plugins/qmakeprojectmanager/qtmodulesinfo.cpp ++++ b/src/plugins/qmakeprojectmanager/qtmodulesinfo.cpp +@@ -93,14 +93,6 @@ static inline QVector itemVector() + QLatin1String("QtSvg"), + QCoreApplication::translate("QtModulesInfo", "Classes for displaying the contents of SVG files"), + false}, +- {"webengine", +- QLatin1String("QtWebEngine"), +- QCoreApplication::translate("QtModulesInfo", "Classes for displaying and editing Web content using Chromium backend"), +- false}, +- {"webenginewidgets", +- QLatin1String("QtWebEngineWidgets"), +- QCoreApplication::translate("QtModulesInfo", "WebEngine and QWidget-based classes using Chromium backend"), +- false}, + {"webkit", + QLatin1String("QtWebKit"), + QCoreApplication::translate("QtModulesInfo", "Classes for displaying and editing Web content"), +diff --git a/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp b/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp +index df9a8110a..e2d2eaa37 100644 +--- a/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp ++++ b/src/plugins/qmldesigner/designercore/model/texttomodelmerger.cpp +@@ -792,7 +792,6 @@ static bool isBlacklistImport(const ImportKey &importKey) + || importKey.libraryQualifiedPath() == QStringLiteral("Qt.WebSockets") + || importKey.libraryQualifiedPath() == QStringLiteral("QtWebkit") + || importKey.libraryQualifiedPath() == QStringLiteral("QtLocation") +- || importKey.libraryQualifiedPath() == QStringLiteral("QtWebEngine") + || importKey.libraryQualifiedPath() == QStringLiteral("QtWebChannel") + || importKey.libraryQualifiedPath() == QStringLiteral("QtWinExtras") + || importKey.libraryQualifiedPath() == QStringLiteral("QtPurchasing") +diff --git a/tests/system/shared/utils.py b/tests/system/shared/utils.py +index db4c4e1cd..6703f190c 100644 +--- a/tests/system/shared/utils.py ++++ b/tests/system/shared/utils.py +@@ -673,9 +673,6 @@ def getHelpViewer(): + except: + pass + try: +- return waitForObject("{type='QWebEngineView' unnamed='1' " +- "visible='1' window=':Qt Creator_Core::Internal::MainWindow'}", 1000) +- except: + return waitForObject("{type='Help::Internal::TextBrowserHelpWidget' unnamed='1' " + "visible='1' window=':Qt Creator_Core::Internal::MainWindow'}", 1000) + +diff --git a/tests/system/suite_HELP/tst_HELP04/test.py b/tests/system/suite_HELP/tst_HELP04/test.py +index 7f046e76a..90412afa6 100755 +--- a/tests/system/suite_HELP/tst_HELP04/test.py ++++ b/tests/system/suite_HELP/tst_HELP04/test.py +@@ -32,22 +32,6 @@ urlDictionary = { "deployment":"qthelp://com.trolltech.qt.481/qdoc/gettingstarte + "build":"qthelp://com.trolltech.qt.481/qdoc/sql-driver.html" } + + +-def __getSelectedText__(): +- hv = getHelpViewer() +- isWebEngineView = className(hv) == "QWebEngineView" +- try: +- selText = hv.selectedText +- if className(selText) != 'instancemethod': +- return str(selText), isWebEngineView +- except: +- pass +- try: +- selText = getHighlightsInHtml(str(hv.toHtml())) +- except: +- test.warning("Could not get highlighted text.") +- selText = '' +- return str(selText), isWebEngineView +- + def __getUrl__(): + helpViewer = getHelpViewer() + try: +@@ -69,11 +53,6 @@ def getHighlightsInHtml(htmlCode): + return res + + def verifySelection(expected): +- selText, isWebEngineView = __getSelectedText__() +- if isWebEngineView: +- test.log("The search results are not a selection in a QWebEngineView", +- "Searched strings should still be highlighted") +- return + selText = str(selText) + if test.verify(selText, "Verify that there is a selection"): + # verify if search keyword is found in results +diff --git a/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv b/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv +index d3a824e96..8a98b8b6e 100644 +--- a/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv ++++ b/tests/system/suite_general/tst_openqt_creator/testdata/projecttree_creator.tsv +@@ -6862,7 +6862,6 @@ + "searchtaskhandler.h" "4" + "searchwidget.h" "4" + "textbrowserhelpviewer.h" "4" +-"webenginehelpviewer.h" "4" + "xbelsupport.h" "4" + "Sources" "3" + "centralwidget.cpp" "4" +@@ -6886,7 +6885,6 @@ + "searchtaskhandler.cpp" "4" + "searchwidget.cpp" "4" + "textbrowserhelpviewer.cpp" "4" +-"webenginehelpviewer.cpp" "4" + "xbelsupport.cpp" "4" + "Forms" "3" + "docsettingspage.ui" "4" -- cgit v1.2.3