2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2011-06-30 17:31:41 +02:00
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2011-06-30 17:31:41 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-06-30 17:31:41 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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 Digia. For licensing terms and
|
2014-10-01 13:21:18 +02:00
|
|
|
** conditions see http://www.qt.io/licensing. For further information
|
|
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2011-06-30 17:31:41 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2011-06-30 17:31:41 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-06-30 17:31:41 +02:00
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
#include "exampleslistmodel.h"
|
|
|
|
|
|
2012-12-19 10:19:35 +01:00
|
|
|
#include <QDebug>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDir>
|
2012-12-19 10:19:35 +01:00
|
|
|
#include <QFile>
|
2012-12-05 14:04:55 +01:00
|
|
|
#include <QUrl>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QXmlStreamReader>
|
2010-11-11 16:49:17 +01:00
|
|
|
|
2011-07-01 18:28:56 +02:00
|
|
|
#include <coreplugin/helpmanager.h>
|
2012-12-19 10:19:35 +01:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <qtsupport/qtkitinformation.h>
|
2010-11-11 16:49:17 +01:00
|
|
|
#include <qtsupport/qtversionmanager.h>
|
2012-12-19 10:19:35 +01:00
|
|
|
#include <utils/environment.h>
|
2012-01-31 16:36:52 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2014-06-06 13:12:47 +02:00
|
|
|
#include <utils/algorithm.h>
|
2010-11-11 16:49:17 +01:00
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
|
|
namespace QtSupport {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
static bool debugExamples()
|
|
|
|
|
{
|
|
|
|
|
static bool isDebugging = !qgetenv("QTC_DEBUG_EXAMPLESMODEL").isEmpty();
|
|
|
|
|
return isDebugging;
|
|
|
|
|
}
|
2013-02-04 10:28:16 +01:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
static const char kSelectedExampleSetKey[] = "WelcomePage/SelectedExampleSet";
|
|
|
|
|
|
|
|
|
|
void ExampleSetModel::writeCurrentIdToSettings(int currentIndex) const
|
2013-02-04 10:28:16 +01:00
|
|
|
{
|
|
|
|
|
QSettings *settings = Core::ICore::settings();
|
2014-03-27 17:50:58 +01:00
|
|
|
settings->setValue(QLatin1String(kSelectedExampleSetKey), getId(currentIndex));
|
2013-02-04 10:28:16 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
int ExampleSetModel::readCurrentIndexFromSettings() const
|
2013-02-04 10:28:16 +01:00
|
|
|
{
|
2014-03-27 17:50:58 +01:00
|
|
|
QVariant id = Core::ICore::settings()->value(QLatin1String(kSelectedExampleSetKey));
|
|
|
|
|
for (int i=0; i < rowCount(); i++) {
|
|
|
|
|
if (id == getId(i))
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
return -1;
|
2013-02-04 10:28:16 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
ExampleSetModel::ExampleSetModel(ExamplesListModel *examplesModel, QObject *parent) :
|
2014-02-03 17:17:08 +01:00
|
|
|
QStandardItemModel(parent),
|
|
|
|
|
examplesModel(examplesModel)
|
2013-02-04 10:28:16 +01:00
|
|
|
{
|
2014-02-03 15:56:57 +01:00
|
|
|
}
|
2013-02-04 10:28:16 +01:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
void ExampleSetModel::update()
|
2014-02-03 15:56:57 +01:00
|
|
|
{
|
|
|
|
|
beginResetModel();
|
|
|
|
|
clear();
|
2013-06-17 14:22:55 +02:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
QSet<QString> extraManifestDirs;
|
|
|
|
|
QList<ExamplesListModel::ExtraExampleSet> extraExampleSets = examplesModel->extraExampleSets();
|
|
|
|
|
for (int i = 0; i < extraExampleSets.size(); ++i) {
|
|
|
|
|
ExamplesListModel::ExtraExampleSet set = extraExampleSets.at(i);
|
|
|
|
|
QStandardItem *newItem = new QStandardItem();
|
|
|
|
|
newItem->setData(set.displayName, Qt::UserRole + 1);
|
|
|
|
|
newItem->setData(QVariant(), Qt::UserRole + 2);
|
|
|
|
|
newItem->setData(i, Qt::UserRole + 3);
|
|
|
|
|
appendRow(newItem);
|
|
|
|
|
|
|
|
|
|
extraManifestDirs.insert(set.manifestPath);
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-03 17:17:08 +01:00
|
|
|
QList<BaseQtVersion *> qtVersions = examplesModel->qtVersions();
|
2014-02-03 15:56:57 +01:00
|
|
|
|
|
|
|
|
foreach (BaseQtVersion *version, qtVersions) {
|
2014-03-27 17:50:58 +01:00
|
|
|
// sanitize away qt versions that have already been added through extra sets
|
|
|
|
|
if (extraManifestDirs.contains(version->documentationPath())) {
|
|
|
|
|
if (debugExamples()) {
|
|
|
|
|
qWarning() << "Not showing Qt version because manifest path is already added through InstalledExamples settings:"
|
|
|
|
|
<< version->displayName();
|
|
|
|
|
}
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2014-02-03 17:17:08 +01:00
|
|
|
QStandardItem *newItem = new QStandardItem();
|
|
|
|
|
newItem->setData(version->displayName(), Qt::UserRole + 1);
|
|
|
|
|
newItem->setData(version->uniqueId(), Qt::UserRole + 2);
|
2014-03-27 17:50:58 +01:00
|
|
|
newItem->setData(QVariant(), Qt::UserRole + 3);
|
2014-02-03 17:17:08 +01:00
|
|
|
appendRow(newItem);
|
2013-02-04 10:28:16 +01:00
|
|
|
}
|
2014-02-03 15:56:57 +01:00
|
|
|
endResetModel();
|
|
|
|
|
}
|
2013-02-04 10:28:16 +01:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
int ExampleSetModel::indexForQtVersion(BaseQtVersion *qtVersion) const
|
|
|
|
|
{
|
|
|
|
|
// return either the entry with the same QtId, or an extra example set with same path
|
|
|
|
|
|
2014-04-01 16:37:49 +02:00
|
|
|
if (!qtVersion)
|
|
|
|
|
return -1;
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
// check for Qt version
|
|
|
|
|
for (int i = 0; i < rowCount(); ++i) {
|
|
|
|
|
if (getType(i) == QtExampleSet && getQtId(i) == qtVersion->uniqueId())
|
2014-02-03 15:56:57 +01:00
|
|
|
return i;
|
2013-02-04 10:28:16 +01:00
|
|
|
}
|
2014-03-27 17:50:58 +01:00
|
|
|
// check for extra set
|
|
|
|
|
const QList<ExamplesListModel::ExtraExampleSet> &extraExamples
|
|
|
|
|
= examplesModel->extraExampleSets();
|
|
|
|
|
const QString &documentationPath = qtVersion->documentationPath();
|
|
|
|
|
for (int i = 0; i < rowCount(); ++i) {
|
|
|
|
|
if (getType(i) == ExtraExampleSet
|
|
|
|
|
&& extraExamples.at(getExtraExampleSetIndex(i)).manifestPath == documentationPath)
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
return -1;
|
2014-02-03 15:56:57 +01:00
|
|
|
}
|
2013-02-04 10:28:16 +01:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
QVariant ExampleSetModel::getDisplayName(int i) const
|
2014-02-03 15:56:57 +01:00
|
|
|
{
|
2014-03-27 17:50:58 +01:00
|
|
|
if (i < 0 || i >= rowCount())
|
|
|
|
|
return QVariant();
|
|
|
|
|
return data(index(i, 0), Qt::UserRole + 1);
|
2014-02-03 15:56:57 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
// id is either the Qt version uniqueId, or the display name of the extra example set
|
|
|
|
|
QVariant ExampleSetModel::getId(int i) const
|
2014-02-03 15:56:57 +01:00
|
|
|
{
|
2014-03-27 17:50:58 +01:00
|
|
|
if (i < 0 || i >= rowCount())
|
|
|
|
|
return QVariant();
|
|
|
|
|
QModelIndex modelIndex = index(i, 0);
|
2014-02-03 15:56:57 +01:00
|
|
|
QVariant variant = data(modelIndex, Qt::UserRole + 2);
|
2014-03-27 17:50:58 +01:00
|
|
|
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 ExtraExampleSet;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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();
|
2014-02-03 15:56:57 +01:00
|
|
|
}
|
2013-02-04 10:28:16 +01:00
|
|
|
|
2014-08-28 17:33:47 +02:00
|
|
|
QHash<int, QByteArray> ExampleSetModel::roleNames() const
|
|
|
|
|
{
|
|
|
|
|
QHash<int, QByteArray> roleNames;
|
|
|
|
|
roleNames[Qt::UserRole + 1] = "text";
|
|
|
|
|
roleNames[Qt::UserRole + 2] = "QtId";
|
|
|
|
|
roleNames[Qt::UserRole + 3] = "extraSetIndex";
|
|
|
|
|
return roleNames;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
ExamplesListModel::ExamplesListModel(QObject *parent) :
|
2012-01-31 16:36:52 +01:00
|
|
|
QAbstractListModel(parent),
|
2014-03-27 17:50:58 +01:00
|
|
|
m_exampleSetModel(new ExampleSetModel(this, this)),
|
|
|
|
|
m_selectedExampleSetIndex(-1)
|
2010-11-11 16:49:17 +01:00
|
|
|
{
|
2014-03-27 17:50:58 +01:00
|
|
|
// read extra example sets settings
|
|
|
|
|
QSettings *settings = Core::ICore::settings();
|
|
|
|
|
QStringList list = settings->value(QLatin1String("Help/InstalledExamples"),
|
|
|
|
|
QStringList()).toStringList();
|
|
|
|
|
if (debugExamples())
|
|
|
|
|
qWarning() << "Reading Help/InstalledExamples from settings:" << list;
|
|
|
|
|
foreach (const QString &item, list) {
|
|
|
|
|
const QStringList &parts = item.split(QLatin1Char('|'));
|
|
|
|
|
if (parts.size() < 3) {
|
|
|
|
|
if (debugExamples())
|
|
|
|
|
qWarning() << "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()) {
|
|
|
|
|
if (debugExamples())
|
|
|
|
|
qWarning() << "Manifest path " << set.manifestPath << "is not a readable directory, ignoring";
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
m_extraExampleSets.append(set);
|
|
|
|
|
if (debugExamples()) {
|
|
|
|
|
qWarning() << "Adding examples set displayName=" << set.displayName
|
|
|
|
|
<< ", manifestPath=" << set.manifestPath
|
|
|
|
|
<< ", examplesPath=" << set.examplesPath;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
2012-12-19 10:19:35 +01:00
|
|
|
static QString fixStringForTags(const QString &string)
|
2011-09-28 11:30:30 +02:00
|
|
|
{
|
|
|
|
|
QString returnString = string;
|
2011-09-28 15:25:07 +02:00
|
|
|
returnString.remove(QLatin1String("<i>"));
|
|
|
|
|
returnString.remove(QLatin1String("</i>"));
|
|
|
|
|
returnString.remove(QLatin1String("<tt>"));
|
|
|
|
|
returnString.remove(QLatin1String("</tt>"));
|
2011-09-28 11:30:30 +02:00
|
|
|
return returnString;
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-19 10:19:35 +01:00
|
|
|
static QStringList trimStringList(const QStringList &stringlist)
|
2012-03-06 13:14:42 +01:00
|
|
|
{
|
2014-07-29 22:02:56 -07:00
|
|
|
return Utils::transform(stringlist, [](const QString &str) { return str.trimmed(); });
|
2012-03-06 13:14:42 +01:00
|
|
|
}
|
|
|
|
|
|
2012-11-27 17:13:02 +01:00
|
|
|
static QString relativeOrInstallPath(const QString &path, const QString &manifestPath,
|
|
|
|
|
const QString &installPath)
|
|
|
|
|
{
|
|
|
|
|
const QChar slash = QLatin1Char('/');
|
|
|
|
|
const QString relativeResolvedPath = manifestPath + slash + path;
|
|
|
|
|
const QString installResolvedPath = installPath + slash + path;
|
|
|
|
|
if (QFile::exists(relativeResolvedPath))
|
|
|
|
|
return relativeResolvedPath;
|
2012-12-19 10:19:35 +01:00
|
|
|
if (QFile::exists(installResolvedPath))
|
2012-11-27 17:13:02 +01:00
|
|
|
return installResolvedPath;
|
|
|
|
|
// doesn't exist, just return relative
|
|
|
|
|
return relativeResolvedPath;
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-05 14:04:55 +01:00
|
|
|
static bool isValidExampleOrDemo(ExampleItem &item)
|
|
|
|
|
{
|
|
|
|
|
static QString invalidPrefix = QLatin1String("qthelp:////"); /* means that the qthelp url
|
|
|
|
|
doesn't have any namespace */
|
2012-12-12 14:01:36 +01:00
|
|
|
QString reason;
|
2012-12-05 14:04:55 +01:00
|
|
|
bool ok = true;
|
2012-12-12 14:01:36 +01:00
|
|
|
if (!item.hasSourceCode || !QFileInfo(item.projectPath).exists()) {
|
2012-12-05 14:04:55 +01:00
|
|
|
ok = false;
|
2014-04-17 14:09:47 +02:00
|
|
|
reason = QString::fromLatin1("projectPath \"%1\" empty or does not exist").arg(item.projectPath);
|
2012-12-12 14:01:36 +01:00
|
|
|
} else if (item.imageUrl.startsWith(invalidPrefix) || !QUrl(item.imageUrl).isValid()) {
|
2012-12-05 14:04:55 +01:00
|
|
|
ok = false;
|
2014-04-17 14:09:47 +02:00
|
|
|
reason = QString::fromLatin1("imageUrl \"%1\" not valid").arg(item.imageUrl);
|
2012-12-12 14:01:36 +01:00
|
|
|
} else if (!item.docUrl.isEmpty()
|
|
|
|
|
&& (item.docUrl.startsWith(invalidPrefix) || !QUrl(item.docUrl).isValid())) {
|
2012-12-05 14:04:55 +01:00
|
|
|
ok = false;
|
2014-04-17 14:09:47 +02:00
|
|
|
reason = QString::fromLatin1("docUrl \"%1\" non-empty but not valid").arg(item.docUrl);
|
2012-12-12 14:01:36 +01:00
|
|
|
}
|
|
|
|
|
if (!ok) {
|
2012-12-05 14:04:55 +01:00
|
|
|
item.tags.append(QLatin1String("broken"));
|
2012-12-12 14:01:36 +01:00
|
|
|
if (debugExamples())
|
2014-04-17 14:09:47 +02:00
|
|
|
qWarning() << QString::fromLatin1("ERROR: Item \"%1\" broken: %2").arg(item.name, reason);
|
2012-12-12 14:01:36 +01:00
|
|
|
}
|
|
|
|
|
if (debugExamples() && item.description.isEmpty())
|
2014-04-17 14:09:47 +02:00
|
|
|
qWarning() << QString::fromLatin1("WARNING: Item \"%1\" has no description").arg(item.name);
|
2012-12-12 14:01:36 +01:00
|
|
|
return ok || debugExamples();
|
2012-12-05 14:04:55 +01:00
|
|
|
}
|
|
|
|
|
|
2012-12-19 10:19:35 +01:00
|
|
|
void ExamplesListModel::parseExamples(QXmlStreamReader *reader,
|
|
|
|
|
const QString &projectsOffset, const QString &examplesInstallPath)
|
2010-11-11 16:49:17 +01:00
|
|
|
{
|
|
|
|
|
ExampleItem item;
|
2012-01-06 17:43:27 +01:00
|
|
|
const QChar slash = QLatin1Char('/');
|
2010-11-11 16:49:17 +01:00
|
|
|
while (!reader->atEnd()) {
|
|
|
|
|
switch (reader->readNext()) {
|
|
|
|
|
case QXmlStreamReader::StartElement:
|
|
|
|
|
if (reader->name() == QLatin1String("example")) {
|
|
|
|
|
item = ExampleItem();
|
|
|
|
|
item.type = Example;
|
|
|
|
|
QXmlStreamAttributes attributes = reader->attributes();
|
|
|
|
|
item.name = attributes.value(QLatin1String("name")).toString();
|
|
|
|
|
item.projectPath = attributes.value(QLatin1String("projectPath")).toString();
|
|
|
|
|
item.hasSourceCode = !item.projectPath.isEmpty();
|
2012-11-27 17:13:02 +01:00
|
|
|
item.projectPath = relativeOrInstallPath(item.projectPath, projectsOffset, examplesInstallPath);
|
2011-08-16 14:56:18 +02:00
|
|
|
item.imageUrl = attributes.value(QLatin1String("imageUrl")).toString();
|
2010-11-11 16:49:17 +01:00
|
|
|
item.docUrl = attributes.value(QLatin1String("docUrl")).toString();
|
2013-02-04 10:16:02 +01:00
|
|
|
|
|
|
|
|
if (attributes.hasAttribute(QLatin1String("isHighlighted")))
|
|
|
|
|
item.isHighlighted = attributes.value(QLatin1String("isHighlighted")).toString() == QLatin1String("true");
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("fileToOpen")) {
|
2014-06-16 12:50:32 +02:00
|
|
|
const QString mainFileAttribute = reader->attributes().value(
|
|
|
|
|
QLatin1String("mainFile")).toString();
|
|
|
|
|
const QString filePath = relativeOrInstallPath(
|
|
|
|
|
reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement),
|
|
|
|
|
projectsOffset, examplesInstallPath);
|
|
|
|
|
item.filesToOpen.append(filePath);
|
|
|
|
|
if (mainFileAttribute.compare(QLatin1String("true"), Qt::CaseInsensitive) == 0)
|
|
|
|
|
item.mainFile = filePath;
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("description")) {
|
2012-12-19 10:19:35 +01:00
|
|
|
item.description = fixStringForTags(reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
2011-11-25 13:40:10 +01:00
|
|
|
} else if (reader->name() == QLatin1String("dependency")) {
|
2012-01-06 17:43:27 +01:00
|
|
|
item.dependencies.append(projectsOffset + slash + reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("tags")) {
|
2012-03-06 13:14:42 +01:00
|
|
|
item.tags = trimStringList(reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement).split(QLatin1Char(','), QString::SkipEmptyParts));
|
|
|
|
|
} else if (reader->name() == QLatin1String("platforms")) {
|
|
|
|
|
item.platforms = trimStringList(reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement).split(QLatin1Char(','), QString::SkipEmptyParts));
|
|
|
|
|
}
|
2010-11-11 16:49:17 +01:00
|
|
|
break;
|
|
|
|
|
case QXmlStreamReader::EndElement:
|
2012-03-27 18:39:31 +02:00
|
|
|
if (reader->name() == QLatin1String("example")) {
|
2012-12-05 14:04:55 +01:00
|
|
|
if (isValidExampleOrDemo(item))
|
2012-12-19 10:19:35 +01:00
|
|
|
m_exampleItems.append(item);
|
2012-03-27 18:39:31 +02:00
|
|
|
} else if (reader->name() == QLatin1String("examples")) {
|
2012-12-19 10:19:35 +01:00
|
|
|
return;
|
2012-03-27 18:39:31 +02:00
|
|
|
}
|
2010-11-11 16:49:17 +01:00
|
|
|
break;
|
|
|
|
|
default: // nothing
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-19 10:19:35 +01:00
|
|
|
void ExamplesListModel::parseDemos(QXmlStreamReader *reader,
|
|
|
|
|
const QString &projectsOffset, const QString &demosInstallPath)
|
2010-11-11 16:49:17 +01:00
|
|
|
{
|
|
|
|
|
ExampleItem item;
|
2012-01-06 17:43:27 +01:00
|
|
|
const QChar slash = QLatin1Char('/');
|
2010-11-11 16:49:17 +01:00
|
|
|
while (!reader->atEnd()) {
|
|
|
|
|
switch (reader->readNext()) {
|
|
|
|
|
case QXmlStreamReader::StartElement:
|
|
|
|
|
if (reader->name() == QLatin1String("demo")) {
|
|
|
|
|
item = ExampleItem();
|
|
|
|
|
item.type = Demo;
|
|
|
|
|
QXmlStreamAttributes attributes = reader->attributes();
|
|
|
|
|
item.name = attributes.value(QLatin1String("name")).toString();
|
|
|
|
|
item.projectPath = attributes.value(QLatin1String("projectPath")).toString();
|
|
|
|
|
item.hasSourceCode = !item.projectPath.isEmpty();
|
2012-11-27 17:13:02 +01:00
|
|
|
item.projectPath = relativeOrInstallPath(item.projectPath, projectsOffset, demosInstallPath);
|
2010-11-11 16:49:17 +01:00
|
|
|
item.imageUrl = attributes.value(QLatin1String("imageUrl")).toString();
|
|
|
|
|
item.docUrl = attributes.value(QLatin1String("docUrl")).toString();
|
2013-02-04 10:16:02 +01:00
|
|
|
|
|
|
|
|
if (attributes.hasAttribute(QLatin1String("isHighlighted")))
|
|
|
|
|
item.isHighlighted = attributes.value(QLatin1String("isHighlighted")).toString() == QLatin1String("true");
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("fileToOpen")) {
|
2012-11-27 17:13:02 +01:00
|
|
|
item.filesToOpen.append(relativeOrInstallPath(reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement),
|
|
|
|
|
projectsOffset, demosInstallPath));
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("description")) {
|
2011-11-25 13:40:10 +01:00
|
|
|
item.description = fixStringForTags(reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
|
|
|
|
} else if (reader->name() == QLatin1String("dependency")) {
|
2012-01-06 17:43:27 +01:00
|
|
|
item.dependencies.append(projectsOffset + slash + reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("tags")) {
|
2012-01-06 17:43:27 +01:00
|
|
|
item.tags = reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement).split(QLatin1Char(','));
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case QXmlStreamReader::EndElement:
|
2012-11-27 17:43:52 +01:00
|
|
|
if (reader->name() == QLatin1String("demo")) {
|
2012-12-05 14:04:55 +01:00
|
|
|
if (isValidExampleOrDemo(item))
|
2012-12-19 10:19:35 +01:00
|
|
|
m_exampleItems.append(item);
|
2012-11-27 17:43:52 +01:00
|
|
|
} else if (reader->name() == QLatin1String("demos")) {
|
2012-12-19 10:19:35 +01:00
|
|
|
return;
|
2012-11-27 17:43:52 +01:00
|
|
|
}
|
2010-11-11 16:49:17 +01:00
|
|
|
break;
|
|
|
|
|
default: // nothing
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-19 10:19:35 +01:00
|
|
|
void ExamplesListModel::parseTutorials(QXmlStreamReader *reader, const QString &projectsOffset)
|
2010-11-11 16:49:17 +01:00
|
|
|
{
|
|
|
|
|
ExampleItem item;
|
2012-01-06 17:43:27 +01:00
|
|
|
const QChar slash = QLatin1Char('/');
|
2010-11-11 16:49:17 +01:00
|
|
|
while (!reader->atEnd()) {
|
|
|
|
|
switch (reader->readNext()) {
|
|
|
|
|
case QXmlStreamReader::StartElement:
|
|
|
|
|
if (reader->name() == QLatin1String("tutorial")) {
|
|
|
|
|
item = ExampleItem();
|
|
|
|
|
item.type = Tutorial;
|
|
|
|
|
QXmlStreamAttributes attributes = reader->attributes();
|
|
|
|
|
item.name = attributes.value(QLatin1String("name")).toString();
|
|
|
|
|
item.projectPath = attributes.value(QLatin1String("projectPath")).toString();
|
|
|
|
|
item.hasSourceCode = !item.projectPath.isEmpty();
|
2012-01-06 17:43:27 +01:00
|
|
|
item.projectPath.prepend(slash);
|
2010-11-11 16:49:17 +01:00
|
|
|
item.projectPath.prepend(projectsOffset);
|
2011-11-23 12:25:32 +01:00
|
|
|
if (attributes.hasAttribute(QLatin1String("imageUrl")))
|
|
|
|
|
item.imageUrl = attributes.value(QLatin1String("imageUrl")).toString();
|
|
|
|
|
if (attributes.hasAttribute(QLatin1String("docUrl")))
|
|
|
|
|
item.docUrl = attributes.value(QLatin1String("docUrl")).toString();
|
|
|
|
|
if (attributes.hasAttribute(QLatin1String("isVideo")))
|
|
|
|
|
item.isVideo = attributes.value(QLatin1String("isVideo")).toString() == QLatin1String("true");
|
|
|
|
|
if (attributes.hasAttribute(QLatin1String("videoUrl")))
|
|
|
|
|
item.videoUrl = attributes.value(QLatin1String("videoUrl")).toString();
|
|
|
|
|
if (attributes.hasAttribute(QLatin1String("videoLength")))
|
|
|
|
|
item.videoLength = attributes.value(QLatin1String("videoLength")).toString();
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("fileToOpen")) {
|
2012-01-06 17:43:27 +01:00
|
|
|
item.filesToOpen.append(projectsOffset + slash + reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("description")) {
|
2011-11-25 13:40:10 +01:00
|
|
|
item.description = fixStringForTags(reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
|
|
|
|
} else if (reader->name() == QLatin1String("dependency")) {
|
2012-01-06 17:43:27 +01:00
|
|
|
item.dependencies.append(projectsOffset + slash + reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("tags")) {
|
2012-01-06 17:43:27 +01:00
|
|
|
item.tags = reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement).split(QLatin1Char(','));
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case QXmlStreamReader::EndElement:
|
|
|
|
|
if (reader->name() == QLatin1String("tutorial"))
|
2012-12-19 10:19:35 +01:00
|
|
|
m_exampleItems.append(item);
|
2010-11-11 16:49:17 +01:00
|
|
|
else if (reader->name() == QLatin1String("tutorials"))
|
2012-12-19 10:19:35 +01:00
|
|
|
return;
|
2010-11-11 16:49:17 +01:00
|
|
|
break;
|
|
|
|
|
default: // nothing
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-31 16:36:52 +01:00
|
|
|
void ExamplesListModel::updateExamples()
|
2010-11-11 16:49:17 +01:00
|
|
|
{
|
2012-11-27 17:13:02 +01:00
|
|
|
QString examplesInstallPath;
|
|
|
|
|
QString demosInstallPath;
|
2012-12-19 10:19:35 +01:00
|
|
|
|
2014-02-04 09:57:17 +01:00
|
|
|
QStringList sources = exampleSources(&examplesInstallPath, &demosInstallPath);
|
2012-12-19 10:19:35 +01:00
|
|
|
|
|
|
|
|
beginResetModel();
|
|
|
|
|
m_exampleItems.clear();
|
|
|
|
|
|
|
|
|
|
foreach (const QString &exampleSource, sources) {
|
2010-11-11 16:49:17 +01:00
|
|
|
QFile exampleFile(exampleSource);
|
|
|
|
|
if (!exampleFile.open(QIODevice::ReadOnly)) {
|
2012-12-12 14:01:36 +01:00
|
|
|
if (debugExamples())
|
|
|
|
|
qWarning() << "ERROR: Could not open file" << exampleSource;
|
2012-01-31 16:36:52 +01:00
|
|
|
continue;
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFileInfo fi(exampleSource);
|
|
|
|
|
QString offsetPath = fi.path();
|
|
|
|
|
QDir examplesDir(offsetPath);
|
|
|
|
|
QDir demosDir(offsetPath);
|
|
|
|
|
|
2012-12-12 14:01:36 +01:00
|
|
|
if (debugExamples())
|
2014-04-17 14:09:47 +02:00
|
|
|
qWarning() << QString::fromLatin1("Reading file \"%1\"...").arg(fi.absoluteFilePath());
|
2010-11-11 16:49:17 +01:00
|
|
|
QXmlStreamReader reader(&exampleFile);
|
|
|
|
|
while (!reader.atEnd())
|
|
|
|
|
switch (reader.readNext()) {
|
|
|
|
|
case QXmlStreamReader::StartElement:
|
|
|
|
|
if (reader.name() == QLatin1String("examples"))
|
2012-12-19 10:19:35 +01:00
|
|
|
parseExamples(&reader, examplesDir.path(), examplesInstallPath);
|
2010-11-11 16:49:17 +01:00
|
|
|
else if (reader.name() == QLatin1String("demos"))
|
2012-12-19 10:19:35 +01:00
|
|
|
parseDemos(&reader, demosDir.path(), demosInstallPath);
|
2010-11-11 16:49:17 +01:00
|
|
|
else if (reader.name() == QLatin1String("tutorials"))
|
2012-12-19 10:19:35 +01:00
|
|
|
parseTutorials(&reader, examplesDir.path());
|
2010-11-11 16:49:17 +01:00
|
|
|
break;
|
|
|
|
|
default: // nothing
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-12 14:01:36 +01:00
|
|
|
if (reader.hasError() && debugExamples())
|
2014-04-17 14:09:47 +02:00
|
|
|
qWarning() << QString::fromLatin1("ERROR: Could not parse file as XML document (%1)").arg(exampleSource);
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
2012-12-19 10:19:35 +01:00
|
|
|
endResetModel();
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
2014-02-04 09:29:38 +01:00
|
|
|
void ExamplesListModel::updateQtVersions()
|
2014-02-03 17:17:08 +01:00
|
|
|
{
|
|
|
|
|
QList<BaseQtVersion*> versions = QtVersionManager::validVersions();
|
|
|
|
|
|
|
|
|
|
QMutableListIterator<BaseQtVersion*> iter(versions);
|
|
|
|
|
while (iter.hasNext()) {
|
|
|
|
|
BaseQtVersion *version = iter.next();
|
|
|
|
|
if (!version->hasExamples()
|
|
|
|
|
&& !version->hasDemos())
|
|
|
|
|
iter.remove();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// prioritize default qt version
|
|
|
|
|
ProjectExplorer::Kit *defaultKit = ProjectExplorer::KitManager::defaultKit();
|
|
|
|
|
BaseQtVersion *defaultVersion = QtKitInformation::qtVersion(defaultKit);
|
|
|
|
|
if (defaultVersion && versions.contains(defaultVersion))
|
|
|
|
|
versions.move(versions.indexOf(defaultVersion), 0);
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
if (m_qtVersions == versions && m_selectedExampleSetIndex >= 0)
|
2014-02-04 09:29:38 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
m_qtVersions = versions;
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
m_exampleSetModel->update();
|
2014-02-04 09:29:38 +01:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
int currentIndex = m_selectedExampleSetIndex;
|
|
|
|
|
if (currentIndex < 0) // reset from settings
|
|
|
|
|
currentIndex = m_exampleSetModel->readCurrentIndexFromSettings();
|
2014-02-04 09:29:38 +01:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
ExampleSetModel::ExampleSetType currentType
|
|
|
|
|
= m_exampleSetModel->getType(currentIndex);
|
2014-02-04 09:29:38 +01:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
if (currentType == ExampleSetModel::InvalidExampleSet) {
|
|
|
|
|
// select examples corresponding to 'highest' Qt version
|
|
|
|
|
BaseQtVersion *highestQt = findHighestQtVersion();
|
|
|
|
|
currentIndex = m_exampleSetModel->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 = m_exampleSetModel->getQtId(currentIndex);
|
2014-07-10 12:57:06 +02:00
|
|
|
BaseQtVersion *newQtVersion = Utils::findOrDefault(m_qtVersions,
|
|
|
|
|
Utils::equal(&BaseQtVersion::uniqueId, currentQtId));
|
2014-06-06 13:12:47 +02:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
if (!newQtVersion)
|
|
|
|
|
newQtVersion = findHighestQtVersion();
|
|
|
|
|
currentIndex = m_exampleSetModel->indexForQtVersion(newQtVersion);
|
|
|
|
|
} // nothing to do for extra example sets
|
|
|
|
|
selectExampleSet(currentIndex);
|
2014-02-04 09:29:38 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
BaseQtVersion *ExamplesListModel::findHighestQtVersion() const
|
2014-02-04 09:29:38 +01:00
|
|
|
{
|
|
|
|
|
QList<BaseQtVersion *> versions = qtVersions();
|
|
|
|
|
|
|
|
|
|
BaseQtVersion *newVersion = 0;
|
|
|
|
|
|
|
|
|
|
foreach (BaseQtVersion *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();
|
|
|
|
|
|
|
|
|
|
if (!newVersion)
|
2014-03-27 17:50:58 +01:00
|
|
|
return 0;
|
2014-02-04 09:29:38 +01:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
return newVersion;
|
2014-02-03 17:17:08 +01:00
|
|
|
}
|
|
|
|
|
|
2014-02-04 09:57:17 +01:00
|
|
|
QStringList ExamplesListModel::exampleSources(QString *examplesInstallPath, QString *demosInstallPath)
|
2010-11-11 16:49:17 +01:00
|
|
|
{
|
2012-01-31 16:36:52 +01:00
|
|
|
QStringList sources;
|
|
|
|
|
QString resourceDir = Core::ICore::resourcePath() + QLatin1String("/welcomescreen/");
|
|
|
|
|
|
|
|
|
|
// Qt Creator shipped tutorials
|
|
|
|
|
sources << (resourceDir + QLatin1String("/qtcreator_tutorials.xml"));
|
2010-11-11 16:49:17 +01:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
QString examplesPath;
|
|
|
|
|
QString demosPath;
|
|
|
|
|
QString manifestScanPath;
|
|
|
|
|
|
|
|
|
|
ExampleSetModel::ExampleSetType currentType
|
|
|
|
|
= m_exampleSetModel->getType(m_selectedExampleSetIndex);
|
|
|
|
|
if (currentType == ExampleSetModel::ExtraExampleSet) {
|
|
|
|
|
int index = m_exampleSetModel->getExtraExampleSetIndex(m_selectedExampleSetIndex);
|
|
|
|
|
ExtraExampleSet exampleSet = m_extraExampleSets.at(index);
|
|
|
|
|
manifestScanPath = exampleSet.manifestPath;
|
|
|
|
|
examplesPath = exampleSet.examplesPath;
|
|
|
|
|
demosPath = exampleSet.examplesPath;
|
|
|
|
|
} else if (currentType == ExampleSetModel::QtExampleSet) {
|
|
|
|
|
int qtId = m_exampleSetModel->getQtId(m_selectedExampleSetIndex);
|
|
|
|
|
foreach (BaseQtVersion *version, qtVersions()) {
|
|
|
|
|
if (version->uniqueId() == qtId) {
|
|
|
|
|
manifestScanPath = version->documentationPath();
|
|
|
|
|
examplesPath = version->examplesPath();
|
|
|
|
|
demosPath = version->demosPath();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-08-03 14:19:10 +02:00
|
|
|
}
|
2014-03-27 17:50:58 +01:00
|
|
|
if (!manifestScanPath.isEmpty()) {
|
|
|
|
|
// search for examples-manifest.xml, demos-manifest.xml in <path>/*/
|
|
|
|
|
QDir dir = QDir(manifestScanPath);
|
2014-02-04 09:57:17 +01:00
|
|
|
const QStringList examplesPattern(QLatin1String("examples-manifest.xml"));
|
|
|
|
|
const QStringList demosPattern(QLatin1String("demos-manifest.xml"));
|
|
|
|
|
QFileInfoList fis;
|
2014-03-27 17:50:58 +01:00
|
|
|
foreach (QFileInfo subDir, dir.entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot)) {
|
2014-02-04 09:57:17 +01:00
|
|
|
fis << QDir(subDir.absoluteFilePath()).entryInfoList(examplesPattern);
|
|
|
|
|
fis << QDir(subDir.absoluteFilePath()).entryInfoList(demosPattern);
|
|
|
|
|
}
|
2014-03-27 17:50:58 +01:00
|
|
|
foreach (const QFileInfo &fi, fis)
|
|
|
|
|
sources.append(fi.filePath());
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
2014-03-27 17:50:58 +01:00
|
|
|
if (examplesInstallPath)
|
|
|
|
|
*examplesInstallPath = examplesPath;
|
|
|
|
|
if (demosInstallPath)
|
|
|
|
|
*demosInstallPath = demosPath;
|
2010-11-11 16:49:17 +01:00
|
|
|
|
2012-01-31 16:36:52 +01:00
|
|
|
return sources;
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int ExamplesListModel::rowCount(const QModelIndex &) const
|
|
|
|
|
{
|
2012-12-19 10:19:35 +01:00
|
|
|
return m_exampleItems.size();
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
2013-02-04 10:16:02 +01:00
|
|
|
QString prefixForItem(const ExampleItem &item)
|
|
|
|
|
{
|
|
|
|
|
if (item.isHighlighted)
|
|
|
|
|
return QLatin1String("0000 ");
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
QVariant ExamplesListModel::data(const QModelIndex &index, int role) const
|
|
|
|
|
{
|
2012-12-19 10:19:35 +01:00
|
|
|
if (!index.isValid() || index.row()+1 > m_exampleItems.count()) {
|
2010-11-11 16:49:17 +01:00
|
|
|
qDebug() << Q_FUNC_INFO << "invalid index requested";
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-19 10:19:35 +01:00
|
|
|
ExampleItem item = m_exampleItems.at(index.row());
|
2010-11-11 16:49:17 +01:00
|
|
|
switch (role)
|
|
|
|
|
{
|
|
|
|
|
case Qt::DisplayRole: // for search only
|
2014-08-23 01:19:53 +02:00
|
|
|
return QString(prefixForItem(item) + item.name + QLatin1Char(' ') + item.tags.join(QLatin1Char(' ')));
|
2010-11-11 16:49:17 +01:00
|
|
|
case Name:
|
|
|
|
|
return item.name;
|
|
|
|
|
case ProjectPath:
|
|
|
|
|
return item.projectPath;
|
|
|
|
|
case Description:
|
|
|
|
|
return item.description;
|
|
|
|
|
case ImageUrl:
|
|
|
|
|
return item.imageUrl;
|
|
|
|
|
case DocUrl:
|
|
|
|
|
return item.docUrl;
|
|
|
|
|
case FilesToOpen:
|
|
|
|
|
return item.filesToOpen;
|
2014-06-16 12:50:32 +02:00
|
|
|
case MainFile:
|
|
|
|
|
return item.mainFile;
|
2010-11-11 16:49:17 +01:00
|
|
|
case Tags:
|
|
|
|
|
return item.tags;
|
|
|
|
|
case Difficulty:
|
|
|
|
|
return item.difficulty;
|
2011-11-25 13:40:10 +01:00
|
|
|
case Dependencies:
|
|
|
|
|
return item.dependencies;
|
2010-11-11 16:49:17 +01:00
|
|
|
case HasSourceCode:
|
|
|
|
|
return item.hasSourceCode;
|
|
|
|
|
case Type:
|
|
|
|
|
return item.type;
|
2011-11-23 12:25:32 +01:00
|
|
|
case IsVideo:
|
|
|
|
|
return item.isVideo;
|
|
|
|
|
case VideoUrl:
|
|
|
|
|
return item.videoUrl;
|
|
|
|
|
case VideoLength:
|
|
|
|
|
return item.videoLength;
|
2012-03-06 13:14:42 +01:00
|
|
|
case Platforms:
|
|
|
|
|
return item.platforms;
|
2013-02-04 10:16:02 +01:00
|
|
|
case IsHighlighted:
|
|
|
|
|
return item.isHighlighted;
|
2010-11-11 16:49:17 +01:00
|
|
|
default:
|
|
|
|
|
qDebug() << Q_FUNC_INFO << "role type not supported";
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-28 17:33:47 +02:00
|
|
|
QHash<int, QByteArray> ExamplesListModel::roleNames() const
|
|
|
|
|
{
|
|
|
|
|
QHash<int, QByteArray> roleNames;
|
|
|
|
|
roleNames[Name] = "name";
|
|
|
|
|
roleNames[ProjectPath] = "projectPath";
|
|
|
|
|
roleNames[ImageUrl] = "imageUrl";
|
|
|
|
|
roleNames[Description] = "description";
|
|
|
|
|
roleNames[DocUrl] = "docUrl";
|
|
|
|
|
roleNames[FilesToOpen] = "filesToOpen";
|
|
|
|
|
roleNames[MainFile] = "mainFile";
|
|
|
|
|
roleNames[Tags] = "tags";
|
|
|
|
|
roleNames[Difficulty] = "difficulty";
|
|
|
|
|
roleNames[Type] = "type";
|
|
|
|
|
roleNames[HasSourceCode] = "hasSourceCode";
|
|
|
|
|
roleNames[Dependencies] = "dependencies";
|
|
|
|
|
roleNames[IsVideo] = "isVideo";
|
|
|
|
|
roleNames[VideoUrl] = "videoUrl";
|
|
|
|
|
roleNames[VideoLength] = "videoLength";
|
|
|
|
|
roleNames[Platforms] = "platforms";
|
|
|
|
|
roleNames[IsHighlighted] = "isHighlighted";
|
|
|
|
|
return roleNames;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-04 09:29:38 +01:00
|
|
|
void ExamplesListModel::update()
|
2012-02-01 13:15:08 +01:00
|
|
|
{
|
2014-02-04 09:29:38 +01:00
|
|
|
updateQtVersions();
|
2013-10-15 13:21:17 +02:00
|
|
|
updateExamples();
|
2012-02-01 13:15:08 +01:00
|
|
|
}
|
2011-07-01 18:28:56 +02:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
int ExamplesListModel::selectedExampleSet() const
|
2014-02-04 09:29:38 +01:00
|
|
|
{
|
2014-03-27 17:50:58 +01:00
|
|
|
return m_selectedExampleSetIndex;
|
2014-02-04 09:29:38 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
void ExamplesListModel::selectExampleSet(int index)
|
2014-02-04 09:29:38 +01:00
|
|
|
{
|
2014-03-27 17:50:58 +01:00
|
|
|
if (index != m_selectedExampleSetIndex) {
|
|
|
|
|
m_selectedExampleSetIndex = index;
|
|
|
|
|
m_exampleSetModel->writeCurrentIdToSettings(m_selectedExampleSetIndex);
|
2014-02-04 09:29:38 +01:00
|
|
|
updateExamples();
|
2014-03-27 17:50:58 +01:00
|
|
|
emit selectedExampleSetChanged();
|
2014-02-04 09:29:38 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-01 13:15:08 +01:00
|
|
|
ExamplesListModelFilter::ExamplesListModelFilter(ExamplesListModel *sourceModel, QObject *parent) :
|
2013-02-04 10:28:16 +01:00
|
|
|
QSortFilterProxyModel(parent),
|
|
|
|
|
m_showTutorialsOnly(true),
|
|
|
|
|
m_sourceModel(sourceModel),
|
|
|
|
|
m_timerId(0),
|
2013-10-15 13:21:17 +02:00
|
|
|
m_blockIndexUpdate(false),
|
|
|
|
|
m_qtVersionManagerInitialized(false),
|
|
|
|
|
m_helpManagerInitialized(false),
|
|
|
|
|
m_initalized(false),
|
|
|
|
|
m_exampleDataRequested(false)
|
|
|
|
|
{
|
|
|
|
|
// initialization hooks
|
|
|
|
|
connect(QtVersionManager::instance(), SIGNAL(qtVersionsLoaded()),
|
|
|
|
|
this, SLOT(qtVersionManagerLoaded()));
|
|
|
|
|
connect(Core::HelpManager::instance(), SIGNAL(setupFinished()),
|
|
|
|
|
this, SLOT(helpManagerInitialized()));
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
connect(this, SIGNAL(showTutorialsOnlyChanged()), SLOT(updateFilter()));
|
2013-10-15 13:21:17 +02:00
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
connect(m_sourceModel, SIGNAL(selectedExampleSetChanged()), this, SIGNAL(exampleSetIndexChanged()));
|
2014-02-04 09:29:38 +01:00
|
|
|
|
2012-02-01 13:15:08 +01:00
|
|
|
setSourceModel(m_sourceModel);
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExamplesListModelFilter::updateFilter()
|
|
|
|
|
{
|
2012-05-22 15:28:00 +02:00
|
|
|
ExamplesListModel *exampleListModel = qobject_cast<ExamplesListModel*>(sourceModel());
|
|
|
|
|
if (exampleListModel) {
|
|
|
|
|
exampleListModel->beginReset();
|
|
|
|
|
invalidateFilter();
|
|
|
|
|
exampleListModel->endReset();
|
|
|
|
|
}
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
2012-11-26 08:35:57 +01:00
|
|
|
bool containsSubString(const QStringList &list, const QString &substr, Qt::CaseSensitivity cs)
|
2011-07-22 14:29:14 +02:00
|
|
|
{
|
2014-06-06 13:12:47 +02:00
|
|
|
return Utils::contains(list, [&substr, &cs](const QString &elem) {
|
|
|
|
|
return elem.contains(substr, cs);
|
|
|
|
|
});
|
2011-07-22 14:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
bool ExamplesListModelFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const
|
|
|
|
|
{
|
|
|
|
|
if (m_showTutorialsOnly) {
|
|
|
|
|
int type = sourceModel()->index(sourceRow, 0, sourceParent).data(Type).toInt();
|
|
|
|
|
if (type != Tutorial)
|
|
|
|
|
return false;
|
2011-07-22 14:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
2011-11-23 12:25:32 +01:00
|
|
|
if (!m_showTutorialsOnly) {
|
|
|
|
|
int type = sourceModel()->index(sourceRow, 0, sourceParent).data(Type).toInt();
|
2013-05-02 12:45:54 +02:00
|
|
|
if (type != Example && type != Demo)
|
2011-11-23 12:25:32 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-22 14:29:14 +02:00
|
|
|
const QStringList tags = sourceModel()->index(sourceRow, 0, sourceParent).data(Tags).toStringList();
|
|
|
|
|
|
|
|
|
|
if (!m_filterTags.isEmpty()) {
|
2014-07-07 19:02:26 +02:00
|
|
|
return Utils::allOf(m_filterTags, [tags](const QString &filterTag) {
|
|
|
|
|
return tags.contains(filterTag);
|
|
|
|
|
});
|
2011-07-22 14:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!m_searchString.isEmpty()) {
|
|
|
|
|
const QString description = sourceModel()->index(sourceRow, 0, sourceParent).data(Description).toString();
|
|
|
|
|
const QString name = sourceModel()->index(sourceRow, 0, sourceParent).data(Name).toString();
|
|
|
|
|
|
2012-11-28 20:44:03 +02:00
|
|
|
foreach (const QString &subString, m_searchString) {
|
2011-07-22 14:29:14 +02:00
|
|
|
bool wordMatch = false;
|
|
|
|
|
wordMatch |= (bool)name.contains(subString, Qt::CaseInsensitive);
|
|
|
|
|
if (wordMatch)
|
|
|
|
|
continue;
|
|
|
|
|
wordMatch |= containsSubString(tags, subString, Qt::CaseInsensitive);
|
|
|
|
|
if (wordMatch)
|
|
|
|
|
continue;
|
|
|
|
|
wordMatch |= (bool)description.contains(subString, Qt::CaseInsensitive);
|
|
|
|
|
if (!wordMatch)
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
2012-12-19 10:19:35 +01:00
|
|
|
return QSortFilterProxyModel::filterAcceptsRow(sourceRow, sourceParent);
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
2012-02-01 13:15:08 +01:00
|
|
|
int ExamplesListModelFilter::rowCount(const QModelIndex &parent) const
|
|
|
|
|
{
|
2013-10-15 13:21:17 +02:00
|
|
|
exampleDataRequested();
|
2012-02-01 13:15:08 +01:00
|
|
|
return QSortFilterProxyModel::rowCount(parent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant ExamplesListModelFilter::data(const QModelIndex &index, int role) const
|
|
|
|
|
{
|
2013-10-15 13:21:17 +02:00
|
|
|
exampleDataRequested();
|
2012-02-01 13:15:08 +01:00
|
|
|
return QSortFilterProxyModel::data(index, role);
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
QAbstractItemModel* ExamplesListModelFilter::exampleSetModel()
|
2013-02-04 10:28:16 +01:00
|
|
|
{
|
2014-03-27 17:50:58 +01:00
|
|
|
return m_sourceModel->exampleSetModel();
|
2013-02-04 10:28:16 +01:00
|
|
|
}
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
void ExamplesListModelFilter::filterForExampleSet(int index)
|
2013-10-15 13:21:17 +02:00
|
|
|
{
|
|
|
|
|
if (m_blockIndexUpdate || !m_initalized)
|
|
|
|
|
return;
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
m_sourceModel->selectExampleSet(index);
|
2013-10-15 13:21:17 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
void ExamplesListModelFilter::setShowTutorialsOnly(bool showTutorialsOnly)
|
|
|
|
|
{
|
|
|
|
|
m_showTutorialsOnly = showTutorialsOnly;
|
|
|
|
|
emit showTutorialsOnlyChanged();
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-04 10:28:16 +01:00
|
|
|
void ExamplesListModelFilter::handleQtVersionsChanged()
|
|
|
|
|
{
|
|
|
|
|
m_blockIndexUpdate = true;
|
2014-02-04 09:29:38 +01:00
|
|
|
m_sourceModel->update();
|
2013-02-04 10:28:16 +01:00
|
|
|
m_blockIndexUpdate = false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-15 13:21:17 +02:00
|
|
|
void ExamplesListModelFilter::qtVersionManagerLoaded()
|
|
|
|
|
{
|
|
|
|
|
m_qtVersionManagerInitialized = true;
|
|
|
|
|
tryToInitialize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExamplesListModelFilter::helpManagerInitialized()
|
|
|
|
|
{
|
|
|
|
|
m_helpManagerInitialized = true;
|
|
|
|
|
tryToInitialize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExamplesListModelFilter::exampleDataRequested() const
|
|
|
|
|
{
|
|
|
|
|
ExamplesListModelFilter *that = const_cast<ExamplesListModelFilter *>(this);
|
|
|
|
|
that->m_exampleDataRequested = true;
|
|
|
|
|
that->tryToInitialize();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExamplesListModelFilter::tryToInitialize()
|
|
|
|
|
{
|
|
|
|
|
if (!m_initalized
|
|
|
|
|
&& m_qtVersionManagerInitialized && m_helpManagerInitialized && m_exampleDataRequested) {
|
|
|
|
|
m_initalized = true;
|
|
|
|
|
connect(QtVersionManager::instance(), SIGNAL(qtVersionsChanged(QList<int>,QList<int>,QList<int>)),
|
|
|
|
|
this, SLOT(handleQtVersionsChanged()));
|
|
|
|
|
connect(ProjectExplorer::KitManager::instance(), SIGNAL(defaultkitChanged()),
|
|
|
|
|
this, SLOT(handleQtVersionsChanged()));
|
|
|
|
|
handleQtVersionsChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-22 16:52:43 +02:00
|
|
|
void ExamplesListModelFilter::delayedUpdateFilter()
|
|
|
|
|
{
|
|
|
|
|
if (m_timerId != 0)
|
|
|
|
|
killTimer(m_timerId);
|
|
|
|
|
|
|
|
|
|
m_timerId = startTimer(320);
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-27 17:50:58 +01:00
|
|
|
int ExamplesListModelFilter::exampleSetIndex() const
|
2013-02-04 10:28:16 +01:00
|
|
|
{
|
2014-03-27 17:50:58 +01:00
|
|
|
return m_sourceModel->selectedExampleSet();
|
2013-02-04 10:28:16 +01:00
|
|
|
}
|
|
|
|
|
|
2012-05-22 16:52:43 +02:00
|
|
|
void ExamplesListModelFilter::timerEvent(QTimerEvent *timerEvent)
|
|
|
|
|
{
|
|
|
|
|
if (m_timerId == timerEvent->timerId()) {
|
|
|
|
|
updateFilter();
|
|
|
|
|
killTimer(m_timerId);
|
|
|
|
|
m_timerId = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-26 08:35:57 +01:00
|
|
|
struct SearchStringLexer
|
|
|
|
|
{
|
2011-07-22 14:29:14 +02:00
|
|
|
QString code;
|
|
|
|
|
const QChar *codePtr;
|
|
|
|
|
QChar yychar;
|
|
|
|
|
QString yytext;
|
|
|
|
|
|
|
|
|
|
enum TokenKind {
|
|
|
|
|
END_OF_STRING = 0,
|
|
|
|
|
TAG,
|
|
|
|
|
STRING_LITERAL,
|
|
|
|
|
UNKNOWN
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
inline void yyinp() { yychar = *codePtr++; }
|
|
|
|
|
|
|
|
|
|
SearchStringLexer(const QString &code)
|
|
|
|
|
: code(code)
|
|
|
|
|
, codePtr(code.unicode())
|
2012-01-06 17:43:27 +01:00
|
|
|
, yychar(QLatin1Char(' ')) { }
|
2011-07-22 14:29:14 +02:00
|
|
|
|
|
|
|
|
int operator()() { return yylex(); }
|
|
|
|
|
|
|
|
|
|
int yylex() {
|
|
|
|
|
while (yychar.isSpace())
|
|
|
|
|
yyinp(); // skip all the spaces
|
|
|
|
|
|
|
|
|
|
yytext.clear();
|
|
|
|
|
|
|
|
|
|
if (yychar.isNull())
|
|
|
|
|
return END_OF_STRING;
|
|
|
|
|
|
|
|
|
|
QChar ch = yychar;
|
|
|
|
|
yyinp();
|
|
|
|
|
|
|
|
|
|
switch (ch.unicode()) {
|
|
|
|
|
case '"':
|
|
|
|
|
case '\'':
|
|
|
|
|
{
|
|
|
|
|
const QChar quote = ch;
|
|
|
|
|
yytext.clear();
|
|
|
|
|
while (!yychar.isNull()) {
|
|
|
|
|
if (yychar == quote) {
|
|
|
|
|
yyinp();
|
|
|
|
|
break;
|
2014-05-05 17:16:54 +03:00
|
|
|
}
|
|
|
|
|
if (yychar == QLatin1Char('\\')) {
|
2011-07-22 14:29:14 +02:00
|
|
|
yyinp();
|
|
|
|
|
switch (yychar.unicode()) {
|
2012-01-06 17:43:27 +01:00
|
|
|
case '"': yytext += QLatin1Char('"'); yyinp(); break;
|
|
|
|
|
case '\'': yytext += QLatin1Char('\''); yyinp(); break;
|
|
|
|
|
case '\\': yytext += QLatin1Char('\\'); yyinp(); break;
|
2011-07-22 14:29:14 +02:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
yytext += yychar;
|
|
|
|
|
yyinp();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return STRING_LITERAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
2012-01-06 17:43:27 +01:00
|
|
|
if (ch.isLetterOrNumber() || ch == QLatin1Char('_')) {
|
2011-07-22 14:29:14 +02:00
|
|
|
yytext.clear();
|
|
|
|
|
yytext += ch;
|
2012-01-06 17:43:27 +01:00
|
|
|
while (yychar.isLetterOrNumber() || yychar == QLatin1Char('_')) {
|
2011-07-22 14:29:14 +02:00
|
|
|
yytext += yychar;
|
|
|
|
|
yyinp();
|
|
|
|
|
}
|
2012-01-06 17:43:27 +01:00
|
|
|
if (yychar == QLatin1Char(':') && yytext == QLatin1String("tag")) {
|
2011-07-22 14:29:14 +02:00
|
|
|
yyinp();
|
|
|
|
|
return TAG;
|
|
|
|
|
}
|
|
|
|
|
return STRING_LITERAL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
yytext += ch;
|
|
|
|
|
return UNKNOWN;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void ExamplesListModelFilter::parseSearchString(const QString &arg)
|
|
|
|
|
{
|
|
|
|
|
QStringList tags;
|
|
|
|
|
QStringList searchTerms;
|
|
|
|
|
SearchStringLexer lex(arg);
|
|
|
|
|
bool isTag = false;
|
|
|
|
|
while (int tk = lex()) {
|
|
|
|
|
if (tk == SearchStringLexer::TAG) {
|
|
|
|
|
isTag = true;
|
|
|
|
|
searchTerms.append(lex.yytext);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tk == SearchStringLexer::STRING_LITERAL) {
|
|
|
|
|
if (isTag) {
|
|
|
|
|
searchTerms.pop_back();
|
|
|
|
|
tags.append(lex.yytext);
|
|
|
|
|
isTag = false;
|
|
|
|
|
} else {
|
|
|
|
|
searchTerms.append(lex.yytext);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setSearchStrings(searchTerms);
|
|
|
|
|
setFilterTags(tags);
|
2012-05-22 16:52:43 +02:00
|
|
|
delayedUpdateFilter();
|
2011-07-22 14:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QtSupport
|