From e129d347bf0d26ba9fa49d616c9da7ef3ccc41f3 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 26 Nov 2017 23:52:31 +0100 Subject: [PATCH] Bundle platformthemes, closes #60 Note that this only has an effect if the Qt installation has platformthemes installed, https://launchpad.net/~beineri/+archive/ubuntu/opt-qt592-trusty has --- tools/linuxdeployqt/shared.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/linuxdeployqt/shared.cpp b/tools/linuxdeployqt/shared.cpp index c930a67..bbb6bde 100644 --- a/tools/linuxdeployqt/shared.cpp +++ b/tools/linuxdeployqt/shared.cpp @@ -1204,11 +1204,16 @@ void deployPlugins(const AppDirInfo &appDirInfo, const QString &pluginSourcePath if (containsHowOften(deploymentInfo.deployedLibraries, "libQt5Gui")) { LogDebug() << "libQt5Gui detected"; pluginList.append("platforms/libqxcb.so"); - // Platform plugin contexts - apparently needed to enter special characters: + // Platform plugin contexts - apparently needed to enter special characters QStringList platformPluginContexts = QDir(pluginSourcePath + QStringLiteral("/platforminputcontexts")).entryList(QStringList() << QStringLiteral("*.so")); foreach (const QString &plugin, platformPluginContexts) { pluginList.append(QStringLiteral("platforminputcontexts/") + plugin); } + // Platform themes - make Qt look more native e.g., on Gtk+ 3 (if available in Qt installation) + QStringList platformThemes = QDir(pluginSourcePath + QStringLiteral("/platformthemes")).entryList(QStringList() << QStringLiteral("*.so")); + foreach (const QString &plugin, platformThemes) { + pluginList.append(QStringLiteral("platformthemes/") + plugin); + } // All image formats (svg if QtSvg library is used) QStringList imagePlugins = QDir(pluginSourcePath + QStringLiteral("/imageformats")).entryList(QStringList() << QStringLiteral("*.so")); foreach (const QString &plugin, imagePlugins) {