2011-06-30 17:31:41 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
|
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
|
**
|
|
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** If you have questions regarding the use of this file, please contact
|
|
|
|
|
** Nokia at info@qt.nokia.com.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
#include "exampleslistmodel.h"
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QFile>
|
|
|
|
|
#include <QtCore/QDir>
|
|
|
|
|
#include <QtCore/QXmlStreamReader>
|
|
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2011-07-01 18:28:56 +02:00
|
|
|
#include <coreplugin/helpmanager.h>
|
2010-11-11 16:49:17 +01:00
|
|
|
#include <qtsupport/qtversionmanager.h>
|
|
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
|
|
using QtSupport::QtVersionManager;
|
|
|
|
|
using QtSupport::BaseQtVersion;
|
|
|
|
|
|
|
|
|
|
namespace QtSupport {
|
|
|
|
|
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
ExamplesListModel::ExamplesListModel(QObject *parent) :
|
|
|
|
|
QAbstractListModel(parent)
|
|
|
|
|
{
|
|
|
|
|
QHash<int, QByteArray> roleNames;
|
|
|
|
|
roleNames[Name] = "name";
|
|
|
|
|
roleNames[ProjectPath] = "projectPath";
|
|
|
|
|
roleNames[ImageUrl] = "imageUrl";
|
|
|
|
|
roleNames[Description] = "description";
|
|
|
|
|
roleNames[DocUrl] = "docUrl";
|
|
|
|
|
roleNames[FilesToOpen] = "filesToOpen";
|
|
|
|
|
roleNames[Tags] = "tags";
|
|
|
|
|
roleNames[Difficulty] = "difficulty";
|
|
|
|
|
roleNames[Type] = "type";
|
|
|
|
|
roleNames[HasSourceCode] = "hasSourceCode";
|
|
|
|
|
setRoleNames(roleNames);
|
|
|
|
|
|
|
|
|
|
connect(QtVersionManager::instance(), SIGNAL(updateExamples(QString,QString,QString)),
|
2011-07-01 18:28:56 +02:00
|
|
|
SLOT(cacheExamplesPath(QString,QString,QString)));
|
|
|
|
|
connect(Core::HelpManager::instance(), SIGNAL(setupFinished()),
|
|
|
|
|
SLOT(helpInitialized()));
|
2010-11-11 16:49:17 +01:00
|
|
|
}
|
|
|
|
|
|
2011-09-28 11:30:30 +02:00
|
|
|
static inline QString fixSTringForTags(const QString &string)
|
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
QList<ExampleItem> ExamplesListModel::parseExamples(QXmlStreamReader* reader, const QString& projectsOffset)
|
|
|
|
|
{
|
|
|
|
|
QList<ExampleItem> examples;
|
|
|
|
|
ExampleItem item;
|
|
|
|
|
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();
|
|
|
|
|
item.projectPath.prepend('/');
|
|
|
|
|
item.projectPath.prepend(projectsOffset);
|
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();
|
|
|
|
|
} else if (reader->name() == QLatin1String("fileToOpen")) {
|
2011-07-05 15:22:38 +02:00
|
|
|
item.filesToOpen.append(projectsOffset + '/' + reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("description")) {
|
2011-09-28 11:30:30 +02:00
|
|
|
item.description = fixSTringForTags(reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("tags")) {
|
|
|
|
|
item.tags = reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement).split(",");
|
|
|
|
|
m_tags.append(item.tags);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case QXmlStreamReader::EndElement:
|
|
|
|
|
if (reader->name() == QLatin1String("example"))
|
|
|
|
|
examples.append(item);
|
|
|
|
|
else if (reader->name() == QLatin1String("examples"))
|
|
|
|
|
return examples;
|
|
|
|
|
break;
|
|
|
|
|
default: // nothing
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return examples;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<ExampleItem> ExamplesListModel::parseDemos(QXmlStreamReader* reader, const QString& projectsOffset)
|
|
|
|
|
{
|
|
|
|
|
QList<ExampleItem> demos;
|
|
|
|
|
ExampleItem item;
|
|
|
|
|
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();
|
|
|
|
|
item.projectPath.prepend('/');
|
|
|
|
|
item.projectPath.prepend(projectsOffset);
|
|
|
|
|
item.imageUrl = attributes.value(QLatin1String("imageUrl")).toString();
|
|
|
|
|
item.docUrl = attributes.value(QLatin1String("docUrl")).toString();
|
|
|
|
|
} else if (reader->name() == QLatin1String("fileToOpen")) {
|
2011-07-05 15:22:38 +02:00
|
|
|
item.filesToOpen.append(projectsOffset + '/' + reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("description")) {
|
2011-09-28 11:30:30 +02:00
|
|
|
item.description = fixSTringForTags(reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("tags")) {
|
|
|
|
|
item.tags = reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement).split(",");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case QXmlStreamReader::EndElement:
|
|
|
|
|
if (reader->name() == QLatin1String("demo"))
|
|
|
|
|
demos.append(item);
|
|
|
|
|
else if (reader->name() == QLatin1String("demos"))
|
|
|
|
|
return demos;
|
|
|
|
|
break;
|
|
|
|
|
default: // nothing
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return demos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<ExampleItem> ExamplesListModel::parseTutorials(QXmlStreamReader* reader, const QString& projectsOffset)
|
|
|
|
|
{
|
|
|
|
|
QList<ExampleItem> tutorials;
|
|
|
|
|
ExampleItem item;
|
|
|
|
|
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();
|
|
|
|
|
item.projectPath.prepend('/');
|
|
|
|
|
item.projectPath.prepend(projectsOffset);
|
|
|
|
|
item.imageUrl = attributes.value(QLatin1String("imageUrl")).toString();
|
|
|
|
|
item.docUrl = attributes.value(QLatin1String("docUrl")).toString();
|
|
|
|
|
} else if (reader->name() == QLatin1String("fileToOpen")) {
|
2011-07-05 15:22:38 +02:00
|
|
|
item.filesToOpen.append(projectsOffset + '/' + reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("description")) {
|
2011-09-28 11:30:30 +02:00
|
|
|
item.description = fixSTringForTags(reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement));
|
2010-11-11 16:49:17 +01:00
|
|
|
} else if (reader->name() == QLatin1String("tags")) {
|
|
|
|
|
item.tags = reader->readElementText(QXmlStreamReader::ErrorOnUnexpectedElement).split(",");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case QXmlStreamReader::EndElement:
|
|
|
|
|
if (reader->name() == QLatin1String("tutorial"))
|
|
|
|
|
tutorials.append(item);
|
|
|
|
|
else if (reader->name() == QLatin1String("tutorials"))
|
|
|
|
|
return tutorials;
|
|
|
|
|
break;
|
|
|
|
|
default: // nothing
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return tutorials;
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-05 15:22:38 +02:00
|
|
|
void ExamplesListModel::readNewsItems(const QString &examplesPath, const QString &demosPath, const QString & sourcePath)
|
2010-11-11 16:49:17 +01:00
|
|
|
{
|
|
|
|
|
clear();
|
|
|
|
|
foreach (const QString exampleSource, exampleSources()) {
|
|
|
|
|
QFile exampleFile(exampleSource);
|
|
|
|
|
if (!exampleFile.open(QIODevice::ReadOnly)) {
|
|
|
|
|
qDebug() << Q_FUNC_INFO << "Could not open file" << exampleSource;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFileInfo fi(exampleSource);
|
|
|
|
|
QString offsetPath = fi.path();
|
|
|
|
|
QDir examplesDir(offsetPath);
|
|
|
|
|
QDir demosDir(offsetPath);
|
|
|
|
|
if (offsetPath.startsWith(Core::ICore::instance()->resourcePath())) {
|
2011-07-05 15:22:38 +02:00
|
|
|
// Try to get dir from first Qt Version, based on the Qt source directory
|
|
|
|
|
// at first, since examplesPath / demosPath points at the build directory
|
|
|
|
|
QString sourceBasedExamplesPath = sourcePath + QLatin1String("/examples");
|
|
|
|
|
QString sourceBasedDemosPath = sourcePath + QLatin1String("/demos");
|
|
|
|
|
examplesDir = sourceBasedExamplesPath;
|
|
|
|
|
demosDir = sourceBasedDemosPath;
|
|
|
|
|
// SDK case, folders might be called sth else (e.g. 'Examples' with uppercase E)
|
|
|
|
|
// but examplesPath / demosPath is correct
|
|
|
|
|
if (!examplesDir.exists() || !demosDir.exists()) {
|
|
|
|
|
examplesDir = examplesPath;
|
|
|
|
|
demosDir = demosPath;
|
|
|
|
|
}
|
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"))
|
|
|
|
|
addItems(parseExamples(&reader, examplesDir.path()));
|
|
|
|
|
else if (reader.name() == QLatin1String("demos"))
|
|
|
|
|
addItems(parseDemos(&reader, demosDir.path()));
|
|
|
|
|
else if (reader.name() == QLatin1String("tutorials"))
|
|
|
|
|
addItems(parseTutorials(&reader, examplesDir.path()));
|
|
|
|
|
break;
|
|
|
|
|
default: // nothing
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (reader.hasError())
|
|
|
|
|
qDebug() << "error parsing file" << exampleSource << "as XML document";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_tags.sort();
|
|
|
|
|
m_tags.erase(std::unique(m_tags.begin(), m_tags.end()), m_tags.end());
|
|
|
|
|
emit tagsUpdated();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QStringList ExamplesListModel::exampleSources() const
|
|
|
|
|
{
|
|
|
|
|
QFileInfoList sources;
|
|
|
|
|
const QStringList pattern(QLatin1String("*.xml"));
|
|
|
|
|
|
2011-08-03 14:19:10 +02:00
|
|
|
// Read keys from SDK installer
|
|
|
|
|
QSettings *settings = Core::ICore::instance()->settings(QSettings::SystemScope);
|
|
|
|
|
int size = settings->beginReadArray("ExampleManifests");
|
|
|
|
|
for (int i = 0; i < size; ++i) {
|
|
|
|
|
settings->setArrayIndex(i);
|
|
|
|
|
sources.append(settings->value("Location").toString());
|
|
|
|
|
}
|
|
|
|
|
settings->endArray();
|
2010-11-11 16:49:17 +01:00
|
|
|
|
|
|
|
|
if (sources.isEmpty()) {
|
|
|
|
|
// Try to get dir from first Qt Version
|
|
|
|
|
QtVersionManager *versionManager = QtVersionManager::instance();
|
|
|
|
|
foreach (BaseQtVersion *version, versionManager->validVersions()) {
|
|
|
|
|
|
|
|
|
|
QDir examplesDir(version->examplesPath());
|
|
|
|
|
if (examplesDir.exists())
|
|
|
|
|
sources << examplesDir.entryInfoList(pattern);
|
|
|
|
|
|
|
|
|
|
QDir demosDir(version->demosPath());
|
|
|
|
|
if (demosDir.exists())
|
|
|
|
|
sources << demosDir.entryInfoList(pattern);
|
|
|
|
|
|
|
|
|
|
if (!sources.isEmpty())
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString resourceDir = Core::ICore::instance()->resourcePath() + QLatin1String("/welcomescreen/");
|
|
|
|
|
|
|
|
|
|
// Try Creator-provided XML file only
|
|
|
|
|
if (sources.isEmpty()) {
|
2011-06-30 17:37:02 +02:00
|
|
|
// qDebug() << Q_FUNC_INFO << "falling through to Creator-provided XML file";
|
2010-11-11 16:49:17 +01:00
|
|
|
sources << QString(resourceDir + QLatin1String("/examples_fallback.xml"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sources << QString(resourceDir + QLatin1String("/qtcreator_tutorials.xml"));
|
|
|
|
|
|
|
|
|
|
QStringList ret;
|
|
|
|
|
foreach (const QFileInfo& source, sources)
|
|
|
|
|
ret.append(source.filePath());
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExamplesListModel::clear()
|
|
|
|
|
{
|
|
|
|
|
if (exampleItems.count() > 0) {
|
|
|
|
|
beginRemoveRows(QModelIndex(), 0, exampleItems.size()-1);
|
|
|
|
|
exampleItems.clear();
|
|
|
|
|
endRemoveRows();
|
|
|
|
|
}
|
|
|
|
|
m_tags.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExamplesListModel::addItems(const QList<ExampleItem> &newItems)
|
|
|
|
|
{
|
|
|
|
|
beginInsertRows(QModelIndex(), exampleItems.size(), exampleItems.size() - 1 + newItems.size());
|
|
|
|
|
exampleItems.append(newItems);
|
|
|
|
|
endInsertRows();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int ExamplesListModel::rowCount(const QModelIndex &) const
|
|
|
|
|
{
|
|
|
|
|
return exampleItems.size();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QVariant ExamplesListModel::data(const QModelIndex &index, int role) const
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (!index.isValid() || index.row()+1 > exampleItems.count()) {
|
|
|
|
|
qDebug() << Q_FUNC_INFO << "invalid index requested";
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ExampleItem item = exampleItems.at(index.row());
|
|
|
|
|
switch (role)
|
|
|
|
|
{
|
|
|
|
|
case Qt::DisplayRole: // for search only
|
|
|
|
|
return QString(item.name + ' ' + item.tags.join(" "));
|
|
|
|
|
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;
|
|
|
|
|
case Tags:
|
|
|
|
|
return item.tags;
|
|
|
|
|
case Difficulty:
|
|
|
|
|
return item.difficulty;
|
|
|
|
|
case HasSourceCode:
|
|
|
|
|
return item.hasSourceCode;
|
|
|
|
|
case Type:
|
|
|
|
|
return item.type;
|
|
|
|
|
default:
|
|
|
|
|
qDebug() << Q_FUNC_INFO << "role type not supported";
|
|
|
|
|
return QVariant();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-01 18:28:56 +02:00
|
|
|
void ExamplesListModel::cacheExamplesPath(const QString &examplesPath, const QString &demosPath, const QString &sourcePath)
|
|
|
|
|
{
|
|
|
|
|
m_cache = QMakePathCache(examplesPath, demosPath, sourcePath);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExamplesListModel::helpInitialized()
|
|
|
|
|
{
|
|
|
|
|
disconnect(this, SLOT(cacheExamplesPath(QString, QString, QString)));
|
|
|
|
|
connect(QtVersionManager::instance(), SIGNAL(updateExamples(QString,QString,QString)),
|
|
|
|
|
SLOT(readNewsItems(QString,QString,QString)));
|
2011-07-05 15:22:38 +02:00
|
|
|
readNewsItems(m_cache.examplesPath, m_cache.demosPath, m_cache.sourcePath);
|
2011-07-01 18:28:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
ExamplesListModelFilter::ExamplesListModelFilter(QObject *parent) :
|
|
|
|
|
QSortFilterProxyModel(parent), m_showTutorialsOnly(true)
|
|
|
|
|
{
|
|
|
|
|
connect(this, SIGNAL(showTutorialsOnlyChanged()), SLOT(updateFilter()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExamplesListModelFilter::updateFilter()
|
|
|
|
|
{
|
|
|
|
|
invalidateFilter();
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-22 14:29:14 +02:00
|
|
|
bool containsSubString(const QStringList& list, const QString& substr, Qt::CaseSensitivity cs)
|
|
|
|
|
{
|
|
|
|
|
foreach (const QString &elem, list) {
|
|
|
|
|
if (elem.contains(substr, cs))
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QStringList tags = sourceModel()->index(sourceRow, 0, sourceParent).data(Tags).toStringList();
|
|
|
|
|
|
|
|
|
|
if (!m_filterTags.isEmpty()) {
|
|
|
|
|
foreach(const QString &tag, m_filterTags) {
|
|
|
|
|
if (!tags.contains(tag, Qt::CaseInsensitive))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach(const QString &subString, m_searchString) {
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ok = QSortFilterProxyModel::filterAcceptsRow(sourceRow, sourceParent);
|
|
|
|
|
if (!ok)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ExamplesListModelFilter::setShowTutorialsOnly(bool showTutorialsOnly)
|
|
|
|
|
{
|
|
|
|
|
m_showTutorialsOnly = showTutorialsOnly;
|
|
|
|
|
emit showTutorialsOnlyChanged();
|
|
|
|
|
}
|
|
|
|
|
|
2011-07-22 14:29:14 +02:00
|
|
|
struct SearchStringLexer {
|
|
|
|
|
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())
|
|
|
|
|
, yychar(' ') { }
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
} if (yychar == '\\') {
|
|
|
|
|
yyinp();
|
|
|
|
|
switch (yychar.unicode()) {
|
|
|
|
|
case '"': yytext += '"'; yyinp(); break;
|
|
|
|
|
case '\'': yytext += '\''; yyinp(); break;
|
|
|
|
|
case '\\': yytext += '\\'; yyinp(); break;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
yytext += yychar;
|
|
|
|
|
yyinp();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return STRING_LITERAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
if (ch.isLetterOrNumber() || ch == '_') {
|
|
|
|
|
yytext.clear();
|
|
|
|
|
yytext += ch;
|
|
|
|
|
while (yychar.isLetterOrNumber() || yychar == '_') {
|
|
|
|
|
yytext += yychar;
|
|
|
|
|
yyinp();
|
|
|
|
|
}
|
|
|
|
|
if (yychar == ':' && yytext == QLatin1String("tag")) {
|
|
|
|
|
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);
|
|
|
|
|
updateFilter();
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-11 16:49:17 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace QtSupport
|