2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-03-09 17:01:34 +01:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2010-03-09 17:01:34 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-03-09 17:01:34 +01: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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2010-03-09 17:01:34 +01: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.
|
2010-03-09 17:01:34 +01:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-03-09 17:01:34 +01:00
|
|
|
|
|
|
|
|
#include "resourcehandler.h"
|
|
|
|
|
#include "designerconstants.h"
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/projectexplorer.h>
|
|
|
|
|
#include <projectexplorer/projectnodes.h>
|
|
|
|
|
#include <projectexplorer/nodesvisitor.h>
|
|
|
|
|
#include <projectexplorer/project.h>
|
2015-01-09 15:50:06 +01:00
|
|
|
#include <projectexplorer/projecttree.h>
|
2010-03-09 17:01:34 +01:00
|
|
|
#include <projectexplorer/session.h>
|
2014-03-27 18:20:34 +01:00
|
|
|
#include <resourceeditor/resourcenode.h>
|
2010-03-09 17:01:34 +01:00
|
|
|
|
2014-08-20 16:09:26 +02:00
|
|
|
#include <QDesignerFormWindowInterface>
|
2010-03-09 17:01:34 +01:00
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
using namespace ProjectExplorer;
|
2010-03-09 17:01:34 +01:00
|
|
|
|
|
|
|
|
namespace Designer {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
// Visit project nodes and collect qrc-files.
|
|
|
|
|
class QrcFilesVisitor : public NodesVisitor
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
QStringList qrcFiles() const;
|
|
|
|
|
|
|
|
|
|
void visitProjectNode(ProjectNode *node);
|
|
|
|
|
void visitFolderNode(FolderNode *node);
|
|
|
|
|
private:
|
|
|
|
|
QStringList m_qrcFiles;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
QStringList QrcFilesVisitor::qrcFiles() const
|
|
|
|
|
{
|
|
|
|
|
return m_qrcFiles;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QrcFilesVisitor::visitProjectNode(ProjectNode *projectNode)
|
|
|
|
|
{
|
|
|
|
|
visitFolderNode(projectNode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QrcFilesVisitor::visitFolderNode(FolderNode *folderNode)
|
|
|
|
|
{
|
|
|
|
|
foreach (const FileNode *fileNode, folderNode->fileNodes()) {
|
2015-02-03 23:55:24 +02:00
|
|
|
if (fileNode->fileType() == ResourceType)
|
2015-10-29 17:53:47 +01:00
|
|
|
m_qrcFiles.append(fileNode->filePath().toString());
|
2010-03-09 17:01:34 +01:00
|
|
|
}
|
2015-01-09 15:50:06 +01:00
|
|
|
if (dynamic_cast<ResourceEditor::ResourceTopLevelNode *>(folderNode))
|
2015-10-29 17:53:47 +01:00
|
|
|
m_qrcFiles.append(folderNode->filePath().toString());
|
2010-03-09 17:01:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ------------ ResourceHandler
|
2011-05-19 11:30:38 +02:00
|
|
|
ResourceHandler::ResourceHandler(QDesignerFormWindowInterface *fw) :
|
2010-03-09 17:01:34 +01:00
|
|
|
QObject(fw),
|
2015-06-01 17:00:02 +02:00
|
|
|
m_form(fw)
|
2010-03-09 17:01:34 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceHandler::ensureInitialized()
|
|
|
|
|
{
|
2015-01-09 15:50:06 +01:00
|
|
|
if (m_initialized)
|
2010-03-09 17:01:34 +01:00
|
|
|
return;
|
2013-09-05 11:46:07 +02:00
|
|
|
|
2015-01-09 15:50:06 +01:00
|
|
|
m_initialized = true;
|
|
|
|
|
ProjectTree *tree = ProjectTree::instance();
|
2010-03-09 17:01:34 +01:00
|
|
|
|
2015-06-02 09:14:40 +02:00
|
|
|
connect(tree, &ProjectTree::filesAdded, this, &ResourceHandler::updateResources);
|
|
|
|
|
connect(tree, &ProjectTree::filesRemoved, this, &ResourceHandler::updateResources);
|
|
|
|
|
connect(tree, &ProjectTree::foldersAdded, this, &ResourceHandler::updateResources);
|
|
|
|
|
connect(tree, &ProjectTree::foldersRemoved, this, &ResourceHandler::updateResources);
|
2011-05-19 11:30:38 +02:00
|
|
|
m_originalUiQrcPaths = m_form->activeResourceFilePaths();
|
2010-03-09 17:01:34 +01:00
|
|
|
if (Designer::Constants::Internal::debug)
|
|
|
|
|
qDebug() << "ResourceHandler::ensureInitialized() origPaths=" << m_originalUiQrcPaths;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ResourceHandler::~ResourceHandler()
|
|
|
|
|
{
|
2015-01-09 15:50:06 +01:00
|
|
|
|
2010-03-09 17:01:34 +01:00
|
|
|
}
|
|
|
|
|
|
2015-06-02 09:14:40 +02:00
|
|
|
void ResourceHandler::updateResourcesHelper(bool updateProjectResources)
|
2010-03-09 17:01:34 +01:00
|
|
|
{
|
2013-08-30 15:55:51 +02:00
|
|
|
if (m_handlingResources)
|
|
|
|
|
return;
|
|
|
|
|
|
2010-03-09 17:01:34 +01:00
|
|
|
ensureInitialized();
|
|
|
|
|
|
|
|
|
|
const QString fileName = m_form->fileName();
|
2012-04-17 08:01:25 +02:00
|
|
|
QTC_ASSERT(!fileName.isEmpty(), return);
|
2010-03-09 17:01:34 +01:00
|
|
|
|
|
|
|
|
if (Designer::Constants::Internal::debug)
|
|
|
|
|
qDebug() << "ResourceHandler::updateResources()" << fileName;
|
|
|
|
|
|
2013-09-05 11:46:07 +02:00
|
|
|
// Filename could change in the meantime.
|
2015-02-02 00:37:38 +02:00
|
|
|
Project *project = SessionManager::projectForFile(
|
|
|
|
|
Utils::FileName::fromUserInput(QDir::fromNativeSeparators(fileName)));
|
2013-08-30 15:55:51 +02:00
|
|
|
const bool dirty = m_form->property("_q_resourcepathchanged").toBool();
|
|
|
|
|
if (dirty)
|
|
|
|
|
m_form->setDirty(true);
|
2010-03-09 17:01:34 +01:00
|
|
|
|
|
|
|
|
// Does the file belong to a project?
|
|
|
|
|
if (project) {
|
|
|
|
|
// Collect project resource files.
|
|
|
|
|
ProjectNode *root = project->rootProjectNode();
|
|
|
|
|
QrcFilesVisitor qrcVisitor;
|
|
|
|
|
root->accept(&qrcVisitor);
|
2013-08-30 15:55:51 +02:00
|
|
|
QStringList projectQrcFiles = qrcVisitor.qrcFiles();
|
|
|
|
|
// Check if the user has chosen to update the lacking resource inside designer
|
|
|
|
|
if (dirty && updateProjectResources) {
|
|
|
|
|
QStringList qrcPathsToBeAdded;
|
|
|
|
|
foreach (const QString &originalQrcPath, m_originalUiQrcPaths) {
|
|
|
|
|
if (!projectQrcFiles.contains(originalQrcPath) && !qrcPathsToBeAdded.contains(originalQrcPath))
|
|
|
|
|
qrcPathsToBeAdded.append(originalQrcPath);
|
|
|
|
|
}
|
|
|
|
|
if (!qrcPathsToBeAdded.isEmpty()) {
|
|
|
|
|
m_handlingResources = true;
|
|
|
|
|
root->addFiles(qrcPathsToBeAdded);
|
|
|
|
|
m_handlingResources = false;
|
|
|
|
|
projectQrcFiles += qrcPathsToBeAdded;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-19 11:30:38 +02:00
|
|
|
m_form->activateResourceFilePaths(projectQrcFiles);
|
|
|
|
|
m_form->setResourceFileSaveMode(QDesignerFormWindowInterface::SaveOnlyUsedResourceFiles);
|
2010-03-09 17:01:34 +01:00
|
|
|
if (Designer::Constants::Internal::debug)
|
|
|
|
|
qDebug() << "ResourceHandler::updateResources()" << fileName
|
2015-10-29 17:53:47 +01:00
|
|
|
<< " associated with project" << project->rootProjectNode()->filePath()
|
2010-03-09 17:01:34 +01:00
|
|
|
<< " using project qrc files" << projectQrcFiles.size();
|
|
|
|
|
} else {
|
|
|
|
|
// Use resource file originally used in form
|
2011-05-19 11:30:38 +02:00
|
|
|
m_form->activateResourceFilePaths(m_originalUiQrcPaths);
|
|
|
|
|
m_form->setResourceFileSaveMode(QDesignerFormWindowInterface::SaveAllResourceFiles);
|
2010-03-09 17:01:34 +01:00
|
|
|
if (Designer::Constants::Internal::debug)
|
|
|
|
|
qDebug() << "ResourceHandler::updateResources()" << fileName << " not associated with project, using loaded qrc files.";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Designer
|