2010-03-09 17:01:34 +01:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2010-03-09 17:01:34 +01:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2010-03-09 17:01:34 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
2010-03-09 17:01:34 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
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>
|
|
|
|
|
#include <projectexplorer/session.h>
|
|
|
|
|
|
2011-05-19 11:30:38 +02:00
|
|
|
#if QT_VERSION >= 0x050000
|
|
|
|
|
# include <QtDesigner/QDesignerFormWindowInterface>
|
|
|
|
|
#else
|
|
|
|
|
# include "qt_private/formwindowbase_p.h"
|
|
|
|
|
# include "qt_private/qtresourcemodel_p.h"
|
|
|
|
|
#endif
|
2010-03-09 17:01:34 +01:00
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
using ProjectExplorer::NodesVisitor;
|
|
|
|
|
using ProjectExplorer::ProjectNode;
|
|
|
|
|
using ProjectExplorer::FolderNode;
|
|
|
|
|
using ProjectExplorer::FileNode;
|
|
|
|
|
|
|
|
|
|
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()) {
|
|
|
|
|
if (fileNode->fileType() == ProjectExplorer::ResourceType)
|
|
|
|
|
m_qrcFiles.append(fileNode->path());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ------------ ResourceHandler
|
2011-05-19 11:30:38 +02:00
|
|
|
#if QT_VERSION >= 0x050000
|
|
|
|
|
ResourceHandler::ResourceHandler(QDesignerFormWindowInterface *fw) :
|
|
|
|
|
#else
|
2010-03-09 17:01:34 +01:00
|
|
|
ResourceHandler::ResourceHandler(qdesigner_internal::FormWindowBase *fw) :
|
2011-05-19 11:30:38 +02:00
|
|
|
#endif
|
2010-03-09 17:01:34 +01:00
|
|
|
QObject(fw),
|
|
|
|
|
m_form(fw),
|
|
|
|
|
m_sessionNode(0),
|
|
|
|
|
m_sessionWatcher(0)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceHandler::ensureInitialized()
|
|
|
|
|
{
|
|
|
|
|
if (m_sessionNode)
|
|
|
|
|
return;
|
|
|
|
|
ProjectExplorer::ProjectExplorerPlugin *pe = ProjectExplorer::ProjectExplorerPlugin::instance();
|
|
|
|
|
ProjectExplorer::SessionManager *session = pe->session();
|
|
|
|
|
|
|
|
|
|
m_sessionNode = session->sessionNode();
|
|
|
|
|
m_sessionWatcher = new ProjectExplorer::NodesWatcher();
|
|
|
|
|
|
|
|
|
|
connect(m_sessionWatcher, SIGNAL(filesAdded()), this, SLOT(updateResources()));
|
|
|
|
|
connect(m_sessionWatcher, SIGNAL(filesRemoved()), this, SLOT(updateResources()));
|
|
|
|
|
connect(m_sessionWatcher, SIGNAL(foldersAdded()), this, SLOT(updateResources()));
|
|
|
|
|
connect(m_sessionWatcher, SIGNAL(foldersRemoved()), this, SLOT(updateResources()));
|
|
|
|
|
m_sessionNode->registerWatcher(m_sessionWatcher);
|
2011-05-19 11:30:38 +02:00
|
|
|
#if QT_VERSION >= 0x050000
|
|
|
|
|
m_originalUiQrcPaths = m_form->activeResourceFilePaths();
|
|
|
|
|
#else
|
2010-03-09 17:01:34 +01:00
|
|
|
m_originalUiQrcPaths = m_form->resourceSet()->activeQrcPaths();
|
2011-05-19 11:30:38 +02:00
|
|
|
#endif
|
2010-03-09 17:01:34 +01:00
|
|
|
if (Designer::Constants::Internal::debug)
|
|
|
|
|
qDebug() << "ResourceHandler::ensureInitialized() origPaths=" << m_originalUiQrcPaths;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ResourceHandler::~ResourceHandler()
|
|
|
|
|
{
|
|
|
|
|
// Close: Delete the Designer form window via embedding widget
|
|
|
|
|
if (m_sessionNode && m_sessionWatcher) {
|
|
|
|
|
m_sessionNode->unregisterWatcher(m_sessionWatcher);
|
|
|
|
|
delete m_sessionWatcher;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceHandler::updateResources()
|
|
|
|
|
{
|
|
|
|
|
ensureInitialized();
|
|
|
|
|
|
|
|
|
|
const QString fileName = m_form->fileName();
|
|
|
|
|
QTC_ASSERT(!fileName.isEmpty(), return)
|
|
|
|
|
|
|
|
|
|
if (Designer::Constants::Internal::debug)
|
|
|
|
|
qDebug() << "ResourceHandler::updateResources()" << fileName;
|
|
|
|
|
|
|
|
|
|
ProjectExplorer::ProjectExplorerPlugin *pe = ProjectExplorer::ProjectExplorerPlugin::instance();
|
|
|
|
|
// filename could change in the meantime.
|
|
|
|
|
ProjectExplorer::Project *project = pe->session()->projectForFile(fileName);
|
|
|
|
|
|
|
|
|
|
// Does the file belong to a project?
|
|
|
|
|
if (project) {
|
|
|
|
|
// Collect project resource files.
|
|
|
|
|
ProjectNode *root = project->rootProjectNode();
|
|
|
|
|
QrcFilesVisitor qrcVisitor;
|
|
|
|
|
root->accept(&qrcVisitor);
|
|
|
|
|
const QStringList projectQrcFiles = qrcVisitor.qrcFiles();
|
2011-05-19 11:30:38 +02:00
|
|
|
#if QT_VERSION >= 0x050000
|
|
|
|
|
m_form->activateResourceFilePaths(projectQrcFiles);
|
|
|
|
|
m_form->setResourceFileSaveMode(QDesignerFormWindowInterface::SaveOnlyUsedResourceFiles);
|
|
|
|
|
#else
|
2010-03-09 17:01:34 +01:00
|
|
|
m_form->resourceSet()->activateQrcPaths(projectQrcFiles);
|
|
|
|
|
m_form->setSaveResourcesBehaviour(qdesigner_internal::FormWindowBase::SaveOnlyUsedQrcFiles);
|
2011-05-19 11:30:38 +02:00
|
|
|
#endif
|
2010-03-09 17:01:34 +01:00
|
|
|
if (Designer::Constants::Internal::debug)
|
|
|
|
|
qDebug() << "ResourceHandler::updateResources()" << fileName
|
|
|
|
|
<< " associated with project" << project->rootProjectNode()->path()
|
|
|
|
|
<< " using project qrc files" << projectQrcFiles.size();
|
|
|
|
|
} else {
|
|
|
|
|
// Use resource file originally used in form
|
2011-05-19 11:30:38 +02:00
|
|
|
#if QT_VERSION >= 0x050000
|
|
|
|
|
m_form->activateResourceFilePaths(m_originalUiQrcPaths);
|
|
|
|
|
m_form->setResourceFileSaveMode(QDesignerFormWindowInterface::SaveAllResourceFiles);
|
|
|
|
|
#else
|
2010-03-09 17:01:34 +01:00
|
|
|
m_form->resourceSet()->activateQrcPaths(m_originalUiQrcPaths);
|
|
|
|
|
m_form->setSaveResourcesBehaviour(qdesigner_internal::FormWindowBase::SaveAll);
|
2011-05-19 11:30:38 +02:00
|
|
|
#endif
|
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
|