forked from qt-creator/qt-creator
This speeds up QtCreator startup a bit by not loading the examples all the time, but only when the user clicks on the "Examples" button. Change-Id: I8fb3656e871cf3f2f884c5eb12270eba427cd999 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Cristian Adam <cristian.adam@qt.io>
586 lines
21 KiB
C++
586 lines
21 KiB
C++
// 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 "exampleslistmodel.h"
|
|
|
|
#include "examplesparser.h"
|
|
|
|
#include <QBuffer>
|
|
#include <QApplication>
|
|
#include <QDir>
|
|
#include <QFile>
|
|
#include <QPixmapCache>
|
|
#include <QUrl>
|
|
|
|
#include <android/androidconstants.h>
|
|
#include <ios/iosconstants.h>
|
|
#include <coreplugin/helpmanager.h>
|
|
#include <coreplugin/icore.h>
|
|
|
|
#include <qtsupport/qtkitaspect.h>
|
|
#include <qtsupport/qtversionmanager.h>
|
|
|
|
#include <utils/algorithm.h>
|
|
#include <utils/environment.h>
|
|
#include <utils/filepath.h>
|
|
#include <utils/qtcassert.h>
|
|
#include <utils/stringutils.h>
|
|
#include <utils/stylehelper.h>
|
|
|
|
#include <QLoggingCategory>
|
|
#include <algorithm>
|
|
#include <memory>
|
|
|
|
using namespace Core;
|
|
using namespace Utils;
|
|
|
|
namespace QtSupport {
|
|
namespace Internal {
|
|
|
|
static QLoggingCategory log = QLoggingCategory("qtc.examples", QtWarningMsg);
|
|
|
|
static bool debugExamples()
|
|
{
|
|
return qtcEnvironmentVariableIsSet("QTC_DEBUG_EXAMPLESMODEL");
|
|
}
|
|
|
|
static const char kSelectedExampleSetKey[] = "WelcomePage/SelectedExampleSet";
|
|
Q_GLOBAL_STATIC_WITH_ARGS(QVersionNumber, minQtVersionForCategories, (6, 5, 1));
|
|
|
|
void ExampleSetModel::writeCurrentIdToSettings(int currentIndex) const
|
|
{
|
|
QSettings *settings = Core::ICore::settings();
|
|
settings->setValue(QLatin1String(kSelectedExampleSetKey), getId(currentIndex));
|
|
}
|
|
|
|
int ExampleSetModel::readCurrentIndexFromSettings() const
|
|
{
|
|
QVariant id = Core::ICore::settings()->value(QLatin1String(kSelectedExampleSetKey));
|
|
for (int i=0; i < rowCount(); i++) {
|
|
if (id == getId(i))
|
|
return i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
ExampleSetModel::ExampleSetModel()
|
|
{
|
|
if (debugExamples() && !log().isDebugEnabled())
|
|
log().setEnabled(QtDebugMsg, true);
|
|
// read extra example sets settings
|
|
QSettings *settings = Core::ICore::settings();
|
|
const QStringList list = settings->value("Help/InstalledExamples", QStringList()).toStringList();
|
|
qCDebug(log) << "Reading Help/InstalledExamples from settings:" << list;
|
|
for (const QString &item : list) {
|
|
const QStringList &parts = item.split(QLatin1Char('|'));
|
|
if (parts.size() < 3) {
|
|
qCDebug(log) << "Item" << item << "has less than 3 parts (separated by '|'):" << parts;
|
|
continue;
|
|
}
|
|
ExtraExampleSet set;
|
|
set.displayName = parts.at(0);
|
|
set.manifestPath = parts.at(1);
|
|
set.examplesPath = parts.at(2);
|
|
QFileInfo fi(set.manifestPath);
|
|
if (!fi.isDir() || !fi.isReadable()) {
|
|
qCDebug(log) << "Manifest path " << set.manifestPath
|
|
<< "is not a readable directory, ignoring";
|
|
continue;
|
|
}
|
|
qCDebug(log) << "Adding examples set displayName=" << set.displayName
|
|
<< ", manifestPath=" << set.manifestPath
|
|
<< ", examplesPath=" << set.examplesPath;
|
|
if (!Utils::anyOf(m_extraExampleSets, [&set](const ExtraExampleSet &s) {
|
|
return FilePath::fromString(s.examplesPath).cleanPath()
|
|
== FilePath::fromString(set.examplesPath).cleanPath()
|
|
&& FilePath::fromString(s.manifestPath).cleanPath()
|
|
== FilePath::fromString(set.manifestPath).cleanPath();
|
|
})) {
|
|
m_extraExampleSets.append(set);
|
|
} else {
|
|
qCDebug(log) << "Not adding, because example set with same directories exists";
|
|
}
|
|
}
|
|
m_extraExampleSets += pluginRegisteredExampleSets();
|
|
|
|
connect(QtVersionManager::instance(), &QtVersionManager::qtVersionsLoaded,
|
|
this, &ExampleSetModel::qtVersionManagerLoaded);
|
|
|
|
connect(Core::HelpManager::Signals::instance(),
|
|
&Core::HelpManager::Signals::setupFinished,
|
|
this,
|
|
&ExampleSetModel::helpManagerInitialized);
|
|
}
|
|
|
|
void ExampleSetModel::recreateModel(const QtVersions &qtVersions)
|
|
{
|
|
beginResetModel();
|
|
clear();
|
|
|
|
QHash<FilePath, int> extraManifestDirs;
|
|
for (int i = 0; i < m_extraExampleSets.size(); ++i) {
|
|
const ExtraExampleSet &set = m_extraExampleSets.at(i);
|
|
auto newItem = new QStandardItem();
|
|
newItem->setData(set.displayName, Qt::DisplayRole);
|
|
newItem->setData(set.displayName, Qt::UserRole + 1);
|
|
newItem->setData(QVariant(), Qt::UserRole + 2);
|
|
newItem->setData(i, Qt::UserRole + 3);
|
|
appendRow(newItem);
|
|
|
|
extraManifestDirs.insert(FilePath::fromUserInput(set.manifestPath), i);
|
|
}
|
|
|
|
for (QtVersion *version : qtVersions) {
|
|
// Sanitize away qt versions that have already been added through extra sets.
|
|
// This way we do not have entries for Qt/Android, Qt/Desktop, Qt/MinGW etc pp,
|
|
// but only the one "QtX X.Y.Z" entry that is registered as an example set by the installer.
|
|
if (extraManifestDirs.contains(version->docsPath())) {
|
|
m_extraExampleSets[extraManifestDirs.value(version->docsPath())].qtVersion
|
|
= version->qtVersion();
|
|
qCDebug(log) << "Not showing Qt version because manifest path is already added "
|
|
"through InstalledExamples settings:"
|
|
<< version->displayName();
|
|
continue;
|
|
}
|
|
auto newItem = new QStandardItem();
|
|
newItem->setData(version->displayName(), Qt::DisplayRole);
|
|
newItem->setData(version->displayName(), Qt::UserRole + 1);
|
|
newItem->setData(version->uniqueId(), Qt::UserRole + 2);
|
|
newItem->setData(QVariant(), Qt::UserRole + 3);
|
|
appendRow(newItem);
|
|
}
|
|
endResetModel();
|
|
}
|
|
|
|
int ExampleSetModel::indexForQtVersion(QtVersion *qtVersion) const
|
|
{
|
|
// return either the entry with the same QtId, or an extra example set with same path
|
|
|
|
if (!qtVersion)
|
|
return -1;
|
|
|
|
// check for Qt version
|
|
for (int i = 0; i < rowCount(); ++i) {
|
|
if (getType(i) == QtExampleSet && getQtId(i) == qtVersion->uniqueId())
|
|
return i;
|
|
}
|
|
|
|
// check for extra set
|
|
const QString &documentationPath = qtVersion->docsPath().toString();
|
|
for (int i = 0; i < rowCount(); ++i) {
|
|
if (getType(i) == ExtraExampleSetType
|
|
&& m_extraExampleSets.at(getExtraExampleSetIndex(i)).manifestPath == documentationPath)
|
|
return i;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
QVariant ExampleSetModel::getDisplayName(int i) const
|
|
{
|
|
if (i < 0 || i >= rowCount())
|
|
return QVariant();
|
|
return data(index(i, 0), Qt::UserRole + 1);
|
|
}
|
|
|
|
// id is either the Qt version uniqueId, or the display name of the extra example set
|
|
QVariant ExampleSetModel::getId(int i) const
|
|
{
|
|
if (i < 0 || i >= rowCount())
|
|
return QVariant();
|
|
QModelIndex modelIndex = index(i, 0);
|
|
QVariant variant = data(modelIndex, Qt::UserRole + 2);
|
|
if (variant.isValid()) // set from qt version
|
|
return variant;
|
|
return getDisplayName(i);
|
|
}
|
|
|
|
ExampleSetModel::ExampleSetType ExampleSetModel::getType(int i) const
|
|
{
|
|
if (i < 0 || i >= rowCount())
|
|
return InvalidExampleSet;
|
|
QModelIndex modelIndex = index(i, 0);
|
|
QVariant variant = data(modelIndex, Qt::UserRole + 2); /*Qt version uniqueId*/
|
|
if (variant.isValid())
|
|
return QtExampleSet;
|
|
return ExtraExampleSetType;
|
|
}
|
|
|
|
int ExampleSetModel::getQtId(int i) const
|
|
{
|
|
QTC_ASSERT(i >= 0, return -1);
|
|
QModelIndex modelIndex = index(i, 0);
|
|
QVariant variant = data(modelIndex, Qt::UserRole + 2);
|
|
QTC_ASSERT(variant.isValid(), return -1);
|
|
QTC_ASSERT(variant.canConvert<int>(), return -1);
|
|
return variant.toInt();
|
|
}
|
|
|
|
bool ExampleSetModel::selectedQtSupports(const Utils::Id &target) const
|
|
{
|
|
return m_selectedQtTypes.contains(target);
|
|
}
|
|
|
|
int ExampleSetModel::getExtraExampleSetIndex(int i) const
|
|
{
|
|
QTC_ASSERT(i >= 0, return -1);
|
|
QModelIndex modelIndex = index(i, 0);
|
|
QVariant variant = data(modelIndex, Qt::UserRole + 3);
|
|
QTC_ASSERT(variant.isValid(), return -1);
|
|
QTC_ASSERT(variant.canConvert<int>(), return -1);
|
|
return variant.toInt();
|
|
}
|
|
|
|
static QString resourcePath()
|
|
{
|
|
// normalize paths so QML doesn't freak out if it's wrongly capitalized on Windows
|
|
return Core::ICore::resourcePath().normalizedPathName().toString();
|
|
}
|
|
|
|
static QPixmap fetchPixmapAndUpdatePixmapCache(const QString &url)
|
|
{
|
|
QPixmap pixmap;
|
|
if (QPixmapCache::find(url, &pixmap))
|
|
return pixmap;
|
|
|
|
if (url.startsWith("qthelp://")) {
|
|
const QByteArray fetchedData = Core::HelpManager::fileData(url);
|
|
if (!fetchedData.isEmpty()) {
|
|
const QImage img = QImage::fromData(fetchedData, QFileInfo(url).suffix().toLatin1())
|
|
.convertToFormat(QImage::Format_RGB32);
|
|
const int dpr = qApp->devicePixelRatio();
|
|
// boundedTo -> don't scale thumbnails up
|
|
const QSize scaledSize =
|
|
WelcomePageHelpers::GridItemImageSize.boundedTo(img.size()) * dpr;
|
|
pixmap = QPixmap::fromImage(
|
|
img.scaled(scaledSize, Qt::KeepAspectRatio, Qt::SmoothTransformation));
|
|
pixmap.setDevicePixelRatio(dpr);
|
|
}
|
|
} else {
|
|
pixmap.load(url);
|
|
|
|
if (pixmap.isNull())
|
|
pixmap.load(resourcePath() + "/welcomescreen/widgets/" + url);
|
|
}
|
|
|
|
QPixmapCache::insert(url, pixmap);
|
|
|
|
return pixmap;
|
|
}
|
|
|
|
ExamplesViewController::ExamplesViewController(ExampleSetModel *exampleSetModel,
|
|
SectionedGridView *view,
|
|
bool isExamples,
|
|
QObject *parent)
|
|
: QObject(parent)
|
|
, m_exampleSetModel(exampleSetModel)
|
|
, m_view(view)
|
|
, m_isExamples(isExamples)
|
|
{
|
|
if (isExamples) {
|
|
connect(m_exampleSetModel,
|
|
&ExampleSetModel::selectedExampleSetChanged,
|
|
this,
|
|
&ExamplesViewController::updateExamples);
|
|
}
|
|
connect(Core::HelpManager::Signals::instance(),
|
|
&Core::HelpManager::Signals::documentationChanged,
|
|
this,
|
|
&ExamplesViewController::updateExamples);
|
|
view->setPixmapFunction(fetchPixmapAndUpdatePixmapCache);
|
|
updateExamples();
|
|
}
|
|
|
|
static bool isValidExampleOrDemo(ExampleItem *item)
|
|
{
|
|
QTC_ASSERT(item, return false);
|
|
if (item->type == Tutorial)
|
|
return true;
|
|
static QString invalidPrefix = QLatin1String("qthelp:////"); /* means that the qthelp url
|
|
doesn't have any namespace */
|
|
QString reason;
|
|
bool ok = true;
|
|
if (!item->hasSourceCode || !item->projectPath.exists()) {
|
|
ok = false;
|
|
reason = QString::fromLatin1("projectPath \"%1\" empty or does not exist")
|
|
.arg(item->projectPath.toUserOutput());
|
|
} else if (item->imageUrl.startsWith(invalidPrefix) || !QUrl(item->imageUrl).isValid()) {
|
|
ok = false;
|
|
reason = QString::fromLatin1("imageUrl \"%1\" not valid").arg(item->imageUrl);
|
|
} else if (!item->docUrl.isEmpty()
|
|
&& (item->docUrl.startsWith(invalidPrefix) || !QUrl(item->docUrl).isValid())) {
|
|
ok = false;
|
|
reason = QString::fromLatin1("docUrl \"%1\" non-empty but not valid").arg(item->docUrl);
|
|
}
|
|
if (!ok) {
|
|
item->tags.append(QLatin1String("broken"));
|
|
qCDebug(log) << QString::fromLatin1("ERROR: Item \"%1\" broken: %2").arg(item->name, reason);
|
|
}
|
|
if (item->description.isEmpty())
|
|
qCDebug(log) << QString::fromLatin1("WARNING: Item \"%1\" has no description")
|
|
.arg(item->name);
|
|
return ok || debugExamples();
|
|
}
|
|
|
|
// ordered list of "known" categories
|
|
// TODO this should be defined in the manifest
|
|
Q_GLOBAL_STATIC_WITH_ARGS(QStringList,
|
|
defaultOrder,
|
|
{QStringList() << "Application Examples"
|
|
<< "Desktop"
|
|
<< "Mobile"
|
|
<< "Embedded"
|
|
<< "Graphics & Multimedia"
|
|
<< "Graphics"
|
|
<< "Data Visualization & 3D"
|
|
<< "Data Processing & I/O"
|
|
<< "Input/Output"
|
|
<< "Connectivity"
|
|
<< "Networking"
|
|
<< "Positioning & Location"
|
|
<< "Web Technologies"
|
|
<< "Internationalization"});
|
|
|
|
void ExamplesViewController::updateExamples()
|
|
{
|
|
if (!isVisible()) {
|
|
m_needsUpdateExamples = true;
|
|
return;
|
|
}
|
|
m_needsUpdateExamples = false;
|
|
|
|
QString examplesInstallPath;
|
|
QString demosInstallPath;
|
|
QVersionNumber qtVersion;
|
|
|
|
const QStringList sources = m_exampleSetModel->exampleSources(&examplesInstallPath,
|
|
&demosInstallPath,
|
|
&qtVersion);
|
|
m_view->clear();
|
|
|
|
QStringList categoryOrder;
|
|
QList<ExampleItem *> items;
|
|
for (const QString &exampleSource : sources) {
|
|
const auto manifest = FilePath::fromUserInput(exampleSource);
|
|
qCDebug(log) << QString::fromLatin1("Reading file \"%1\"...")
|
|
.arg(manifest.absoluteFilePath().toUserOutput());
|
|
|
|
const expected_str<ParsedExamples> result
|
|
= parseExamples(manifest,
|
|
FilePath::fromUserInput(examplesInstallPath),
|
|
FilePath::fromUserInput(demosInstallPath),
|
|
m_isExamples);
|
|
if (!result) {
|
|
qCDebug(log) << "ERROR: Could not read examples from" << exampleSource << ":"
|
|
<< result.error();
|
|
continue;
|
|
}
|
|
items += filtered(result->items, isValidExampleOrDemo);
|
|
if (categoryOrder.isEmpty())
|
|
categoryOrder = result->categoryOrder;
|
|
}
|
|
|
|
if (m_isExamples) {
|
|
if (m_exampleSetModel->selectedQtSupports(Android::Constants::ANDROID_DEVICE_TYPE)) {
|
|
items = Utils::filtered(items, [](ExampleItem *item) {
|
|
return item->tags.contains("android");
|
|
});
|
|
} else if (m_exampleSetModel->selectedQtSupports(Ios::Constants::IOS_DEVICE_TYPE)) {
|
|
items = Utils::filtered(items,
|
|
[](ExampleItem *item) { return item->tags.contains("ios"); });
|
|
}
|
|
}
|
|
|
|
const bool sortIntoCategories = !m_isExamples || qtVersion >= *minQtVersionForCategories;
|
|
const QStringList order = categoryOrder.isEmpty() && m_isExamples ? *defaultOrder
|
|
: categoryOrder;
|
|
const QList<std::pair<Section, QList<ExampleItem *>>> sections
|
|
= getCategories(items, sortIntoCategories, order, m_isExamples);
|
|
for (int i = 0; i < sections.size(); ++i) {
|
|
m_view->addSection(sections.at(i).first,
|
|
static_container_cast<ListItem *>(sections.at(i).second));
|
|
}
|
|
}
|
|
|
|
void ExamplesViewController::setVisible(bool visible)
|
|
{
|
|
if (m_isVisible == visible)
|
|
return;
|
|
m_isVisible = visible;
|
|
if (m_isVisible && m_needsUpdateExamples)
|
|
updateExamples();
|
|
}
|
|
|
|
bool ExamplesViewController::isVisible() const
|
|
{
|
|
return m_isVisible;
|
|
}
|
|
|
|
void ExampleSetModel::updateQtVersionList()
|
|
{
|
|
QtVersions versions = QtVersionManager::sortVersions(QtVersionManager::versions(
|
|
[](const QtVersion *v) { return v->hasExamples() || v->hasDemos(); }));
|
|
|
|
// prioritize default qt version
|
|
ProjectExplorer::Kit *defaultKit = ProjectExplorer::KitManager::defaultKit();
|
|
QtVersion *defaultVersion = QtKitAspect::qtVersion(defaultKit);
|
|
if (defaultVersion && versions.contains(defaultVersion))
|
|
versions.move(versions.indexOf(defaultVersion), 0);
|
|
|
|
recreateModel(versions);
|
|
|
|
int currentIndex = m_selectedExampleSetIndex;
|
|
if (currentIndex < 0) // reset from settings
|
|
currentIndex = readCurrentIndexFromSettings();
|
|
|
|
ExampleSetModel::ExampleSetType currentType = getType(currentIndex);
|
|
|
|
if (currentType == ExampleSetModel::InvalidExampleSet) {
|
|
// select examples corresponding to 'highest' Qt version
|
|
QtVersion *highestQt = findHighestQtVersion(versions);
|
|
currentIndex = indexForQtVersion(highestQt);
|
|
} else if (currentType == ExampleSetModel::QtExampleSet) {
|
|
// try to select the previously selected Qt version, or
|
|
// select examples corresponding to 'highest' Qt version
|
|
int currentQtId = getQtId(currentIndex);
|
|
QtVersion *newQtVersion = QtVersionManager::version(currentQtId);
|
|
if (!newQtVersion)
|
|
newQtVersion = findHighestQtVersion(versions);
|
|
currentIndex = indexForQtVersion(newQtVersion);
|
|
} // nothing to do for extra example sets
|
|
// Make sure to select something even if the above failed
|
|
if (currentIndex < 0 && rowCount() > 0)
|
|
currentIndex = 0; // simply select first
|
|
selectExampleSet(currentIndex);
|
|
emit selectedExampleSetChanged(currentIndex);
|
|
}
|
|
|
|
QtVersion *ExampleSetModel::findHighestQtVersion(const QtVersions &versions) const
|
|
{
|
|
QtVersion *newVersion = nullptr;
|
|
for (QtVersion *version : versions) {
|
|
if (!newVersion) {
|
|
newVersion = version;
|
|
} else {
|
|
if (version->qtVersion() > newVersion->qtVersion()) {
|
|
newVersion = version;
|
|
} else if (version->qtVersion() == newVersion->qtVersion()
|
|
&& version->uniqueId() < newVersion->uniqueId()) {
|
|
newVersion = version;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!newVersion && !versions.isEmpty())
|
|
newVersion = versions.first();
|
|
|
|
return newVersion;
|
|
}
|
|
|
|
QStringList ExampleSetModel::exampleSources(QString *examplesInstallPath,
|
|
QString *demosInstallPath,
|
|
QVersionNumber *qtVersion)
|
|
{
|
|
QStringList sources;
|
|
|
|
// Qt Creator shipped tutorials
|
|
sources << ":/qtsupport/qtcreator_tutorials.xml";
|
|
|
|
QString examplesPath;
|
|
QString demosPath;
|
|
QString manifestScanPath;
|
|
|
|
ExampleSetModel::ExampleSetType currentType = getType(m_selectedExampleSetIndex);
|
|
if (currentType == ExampleSetModel::ExtraExampleSetType) {
|
|
int index = getExtraExampleSetIndex(m_selectedExampleSetIndex);
|
|
ExtraExampleSet exampleSet = m_extraExampleSets.at(index);
|
|
manifestScanPath = exampleSet.manifestPath;
|
|
examplesPath = exampleSet.examplesPath;
|
|
demosPath = exampleSet.examplesPath;
|
|
if (qtVersion)
|
|
*qtVersion = exampleSet.qtVersion;
|
|
} else if (currentType == ExampleSetModel::QtExampleSet) {
|
|
const int qtId = getQtId(m_selectedExampleSetIndex);
|
|
const QtVersions versions = QtVersionManager::versions();
|
|
for (QtVersion *version : versions) {
|
|
if (version->uniqueId() == qtId) {
|
|
manifestScanPath = version->docsPath().toString();
|
|
examplesPath = version->examplesPath().toString();
|
|
demosPath = version->demosPath().toString();
|
|
if (qtVersion)
|
|
*qtVersion = version->qtVersion();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (!manifestScanPath.isEmpty()) {
|
|
// search for examples-manifest.xml, demos-manifest.xml in <path>/*/
|
|
QDir dir = QDir(manifestScanPath);
|
|
const QStringList examplesPattern(QLatin1String("examples-manifest.xml"));
|
|
const QStringList demosPattern(QLatin1String("demos-manifest.xml"));
|
|
QFileInfoList fis;
|
|
const QFileInfoList subDirs = dir.entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot);
|
|
for (const QFileInfo &subDir : subDirs) {
|
|
fis << QDir(subDir.absoluteFilePath()).entryInfoList(examplesPattern);
|
|
fis << QDir(subDir.absoluteFilePath()).entryInfoList(demosPattern);
|
|
}
|
|
for (const QFileInfo &fi : std::as_const(fis))
|
|
sources.append(fi.filePath());
|
|
}
|
|
if (examplesInstallPath)
|
|
*examplesInstallPath = examplesPath;
|
|
if (demosInstallPath)
|
|
*demosInstallPath = demosPath;
|
|
|
|
return sources;
|
|
}
|
|
|
|
void ExampleSetModel::selectExampleSet(int index)
|
|
{
|
|
if (index != m_selectedExampleSetIndex) {
|
|
m_selectedExampleSetIndex = index;
|
|
writeCurrentIdToSettings(m_selectedExampleSetIndex);
|
|
if (getType(m_selectedExampleSetIndex) == ExampleSetModel::QtExampleSet) {
|
|
QtVersion *selectedQtVersion = QtVersionManager::version(getQtId(m_selectedExampleSetIndex));
|
|
m_selectedQtTypes = selectedQtVersion->targetDeviceTypes();
|
|
} else {
|
|
m_selectedQtTypes.clear();
|
|
}
|
|
emit selectedExampleSetChanged(m_selectedExampleSetIndex);
|
|
}
|
|
}
|
|
|
|
void ExampleSetModel::qtVersionManagerLoaded()
|
|
{
|
|
m_qtVersionManagerInitialized = true;
|
|
tryToInitialize();
|
|
}
|
|
|
|
void ExampleSetModel::helpManagerInitialized()
|
|
{
|
|
m_helpManagerInitialized = true;
|
|
tryToInitialize();
|
|
}
|
|
|
|
|
|
void ExampleSetModel::tryToInitialize()
|
|
{
|
|
if (m_initalized)
|
|
return;
|
|
if (!m_qtVersionManagerInitialized)
|
|
return;
|
|
if (!m_helpManagerInitialized)
|
|
return;
|
|
|
|
m_initalized = true;
|
|
|
|
connect(QtVersionManager::instance(), &QtVersionManager::qtVersionsChanged,
|
|
this, &ExampleSetModel::updateQtVersionList);
|
|
connect(ProjectExplorer::KitManager::instance(), &ProjectExplorer::KitManager::defaultkitChanged,
|
|
this, &ExampleSetModel::updateQtVersionList);
|
|
|
|
updateQtVersionList();
|
|
}
|
|
|
|
} // namespace Internal
|
|
} // namespace QtSupport
|