2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
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.
|
2008-12-02 14:17:16 +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.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "resourceeditorw.h"
|
|
|
|
|
#include "resourceeditorplugin.h"
|
|
|
|
|
#include "resourceeditorconstants.h"
|
|
|
|
|
|
|
|
|
|
#include <qrceditor.h>
|
|
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2009-07-13 15:00:20 +02:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2008-12-02 16:19:05 +01:00
|
|
|
#include <utils/reloadpromptutils.h>
|
2011-03-30 15:15:15 +02:00
|
|
|
#include <utils/fileutils.h>
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtCore/QTemporaryFile>
|
|
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QDir>
|
|
|
|
|
#include <QtCore/qdebug.h>
|
|
|
|
|
#include <QtGui/QMainWindow>
|
|
|
|
|
#include <QtGui/QHBoxLayout>
|
|
|
|
|
|
|
|
|
|
namespace ResourceEditor {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
enum { debugResourceEditorW = 0 };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ResourceEditorFile::ResourceEditorFile(ResourceEditorW *parent) :
|
|
|
|
|
IFile(parent),
|
|
|
|
|
m_mimeType(QLatin1String(ResourceEditor::Constants::C_RESOURCE_MIMETYPE)),
|
|
|
|
|
m_parent(parent)
|
|
|
|
|
{
|
|
|
|
|
if (debugResourceEditorW)
|
|
|
|
|
qDebug() << "ResourceEditorFile::ResourceEditorFile()";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ResourceEditorFile::mimeType() const
|
|
|
|
|
{
|
|
|
|
|
return m_mimeType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-06-25 12:56:16 +02:00
|
|
|
ResourceEditorW::ResourceEditorW(const Core::Context &context,
|
2008-12-02 12:01:29 +01:00
|
|
|
ResourceEditorPlugin *plugin,
|
|
|
|
|
QWidget *parent)
|
2011-04-13 13:00:30 +02:00
|
|
|
: m_resourceEditor(new SharedTools::QrcEditor(parent)),
|
2008-12-02 12:01:29 +01:00
|
|
|
m_resourceFile(new ResourceEditorFile(this)),
|
2011-05-10 20:43:03 +02:00
|
|
|
m_plugin(plugin),
|
|
|
|
|
m_shouldAutoSave(false),
|
|
|
|
|
m_diskIo(false)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2011-04-13 13:00:30 +02:00
|
|
|
setContext(context);
|
|
|
|
|
setWidget(m_resourceEditor);
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
m_resourceEditor->setResourceDragEnabled(true);
|
|
|
|
|
|
|
|
|
|
connect(m_resourceEditor, SIGNAL(dirtyChanged(bool)), this, SLOT(dirtyChanged(bool)));
|
|
|
|
|
connect(m_resourceEditor, SIGNAL(undoStackChanged(bool, bool)),
|
|
|
|
|
this, SLOT(onUndoStackChanged(bool, bool)));
|
2011-05-10 20:43:03 +02:00
|
|
|
connect(m_resourceEditor->commandHistory(), SIGNAL(indexChanged(int)),
|
|
|
|
|
this, SLOT(setShouldAutoSave()));
|
2008-12-02 12:01:29 +01:00
|
|
|
connect(m_resourceFile, SIGNAL(changed()), this, SIGNAL(changed()));
|
|
|
|
|
if (debugResourceEditorW)
|
|
|
|
|
qDebug() << "ResourceEditorW::ResourceEditorW()";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ResourceEditorW::~ResourceEditorW()
|
|
|
|
|
{
|
|
|
|
|
if (m_resourceEditor)
|
|
|
|
|
m_resourceEditor->deleteLater();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ResourceEditorW::createNew(const QString &contents)
|
|
|
|
|
{
|
2011-03-30 15:15:15 +02:00
|
|
|
Utils::TempFileSaver saver;
|
|
|
|
|
saver.write(contents.toUtf8());
|
|
|
|
|
if (!saver.finalize(Core::ICore::instance()->mainWindow()))
|
2008-12-02 12:01:29 +01:00
|
|
|
return false;
|
|
|
|
|
|
2011-03-30 15:15:15 +02:00
|
|
|
const bool rc = m_resourceEditor->load(saver.fileName());
|
2008-12-02 12:01:29 +01:00
|
|
|
m_resourceEditor->setFileName(QString());
|
2011-05-10 20:43:03 +02:00
|
|
|
m_shouldAutoSave = false;
|
2008-12-02 12:01:29 +01:00
|
|
|
if (debugResourceEditorW)
|
2011-03-30 15:15:15 +02:00
|
|
|
qDebug() << "ResourceEditorW::createNew: " << contents << " (" << saver.fileName() << ") returns " << rc;
|
2008-12-02 12:01:29 +01:00
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-10 20:43:03 +02:00
|
|
|
bool ResourceEditorW::open(QString *errorString, const QString &fileName, const QString &realFileName)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
if (debugResourceEditorW)
|
|
|
|
|
qDebug() << "ResourceEditorW::open: " << fileName;
|
|
|
|
|
|
|
|
|
|
if (fileName.isEmpty()) {
|
|
|
|
|
setDisplayName(tr("untitled"));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QFileInfo fi(fileName);
|
|
|
|
|
|
2011-05-10 20:43:03 +02:00
|
|
|
m_diskIo = true;
|
|
|
|
|
if (!m_resourceEditor->load(realFileName)) {
|
2011-04-04 15:24:13 +02:00
|
|
|
*errorString = m_resourceEditor->errorMessage();
|
2011-05-10 20:43:03 +02:00
|
|
|
m_diskIo = false;
|
2008-12-02 12:01:29 +01:00
|
|
|
return false;
|
2011-04-04 15:24:13 +02:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-05-10 20:43:03 +02:00
|
|
|
m_resourceEditor->setFileName(fileName);
|
|
|
|
|
m_resourceEditor->setDirty(fileName != realFileName);
|
2008-12-02 12:01:29 +01:00
|
|
|
setDisplayName(fi.fileName());
|
2011-05-10 20:43:03 +02:00
|
|
|
m_shouldAutoSave = false;
|
|
|
|
|
m_diskIo = false;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
emit changed();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-10 20:43:03 +02:00
|
|
|
bool ResourceEditorFile::save(QString *errorString, const QString &name, bool autoSave)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
if (debugResourceEditorW)
|
2010-09-10 10:51:43 +02:00
|
|
|
qDebug(">ResourceEditorW::save: %s", qPrintable(name));
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
const QString oldFileName = fileName();
|
|
|
|
|
const QString actualName = name.isEmpty() ? oldFileName : name;
|
|
|
|
|
if (actualName.isEmpty())
|
|
|
|
|
return false;
|
|
|
|
|
|
2011-05-10 20:43:03 +02:00
|
|
|
m_parent->m_diskIo = true;
|
2008-12-02 12:01:29 +01:00
|
|
|
m_parent->m_resourceEditor->setFileName(actualName);
|
|
|
|
|
if (!m_parent->m_resourceEditor->save()) {
|
2011-03-30 13:45:16 +02:00
|
|
|
*errorString = m_parent->m_resourceEditor->errorMessage();
|
2008-12-02 12:01:29 +01:00
|
|
|
m_parent->m_resourceEditor->setFileName(oldFileName);
|
2011-05-10 20:43:03 +02:00
|
|
|
m_parent->m_diskIo = false;
|
2008-12-02 12:01:29 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-10 20:43:03 +02:00
|
|
|
m_parent->m_shouldAutoSave = false;
|
|
|
|
|
if (autoSave) {
|
|
|
|
|
m_parent->m_resourceEditor->setFileName(oldFileName);
|
|
|
|
|
m_parent->m_resourceEditor->setDirty(true);
|
|
|
|
|
m_parent->m_diskIo = false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
m_parent->setDisplayName(QFileInfo(actualName).fileName());
|
2011-05-10 20:43:03 +02:00
|
|
|
m_parent->m_diskIo = false;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
emit changed();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2010-05-11 14:13:38 +02:00
|
|
|
void ResourceEditorFile::rename(const QString &newName)
|
|
|
|
|
{
|
|
|
|
|
m_parent->m_resourceEditor->setFileName(newName);
|
|
|
|
|
emit changed();
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-10 11:36:51 +01:00
|
|
|
Core::Id ResourceEditorW::id() const
|
|
|
|
|
{
|
|
|
|
|
return Core::Id(ResourceEditor::Constants::RESOURCEEDITOR_ID);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ResourceEditorFile::fileName() const
|
|
|
|
|
{
|
|
|
|
|
return m_parent->m_resourceEditor->fileName();
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-10 20:43:03 +02:00
|
|
|
bool ResourceEditorFile::shouldAutoSave() const
|
|
|
|
|
{
|
|
|
|
|
return m_parent->m_shouldAutoSave;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
bool ResourceEditorFile::isModified() const
|
|
|
|
|
{
|
|
|
|
|
return m_parent->m_resourceEditor->isDirty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ResourceEditorFile::isReadOnly() const
|
|
|
|
|
{
|
|
|
|
|
const QString fileName = m_parent->m_resourceEditor->fileName();
|
|
|
|
|
if (fileName.isEmpty())
|
|
|
|
|
return false;
|
|
|
|
|
const QFileInfo fi(fileName);
|
|
|
|
|
return !fi.isWritable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ResourceEditorFile::isSaveAsAllowed() const
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-04 15:24:13 +02:00
|
|
|
bool ResourceEditorFile::reload(QString *errorString, ReloadFlag flag, ChangeType type)
|
2010-03-19 10:28:05 +01:00
|
|
|
{
|
|
|
|
|
if (flag == FlagIgnore)
|
2011-04-04 15:24:13 +02:00
|
|
|
return true;
|
2010-03-19 10:28:05 +01:00
|
|
|
if (type == TypePermissions) {
|
2008-12-02 12:01:29 +01:00
|
|
|
emit changed();
|
2010-03-19 10:28:05 +01:00
|
|
|
} else {
|
2010-05-28 14:06:57 +02:00
|
|
|
emit aboutToReload();
|
2011-05-10 20:43:03 +02:00
|
|
|
QString fn = m_parent->m_resourceEditor->fileName();
|
|
|
|
|
if (!m_parent->open(errorString, fn, fn))
|
2011-04-04 15:24:13 +02:00
|
|
|
return false;
|
|
|
|
|
emit reloaded();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2011-04-04 15:24:13 +02:00
|
|
|
return true;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ResourceEditorFile::defaultPath() const
|
|
|
|
|
{
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceEditorW::setSuggestedFileName(const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
m_suggestedName = fileName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ResourceEditorFile::suggestedFileName() const
|
|
|
|
|
{
|
|
|
|
|
return m_parent->m_suggestedName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceEditorW::dirtyChanged(bool dirty)
|
|
|
|
|
{
|
2011-05-10 20:43:03 +02:00
|
|
|
if (m_diskIo)
|
|
|
|
|
return; // We emit changed() afterwards, unless it was an autosave
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
if (debugResourceEditorW)
|
|
|
|
|
qDebug() << " ResourceEditorW::dirtyChanged" << dirty;
|
2011-05-10 20:43:03 +02:00
|
|
|
emit changed();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceEditorW::onUndoStackChanged(bool canUndo, bool canRedo)
|
|
|
|
|
{
|
|
|
|
|
m_plugin->onUndoStackChanged(this, canUndo, canRedo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceEditorW::onUndo()
|
|
|
|
|
{
|
|
|
|
|
if (!m_resourceEditor.isNull())
|
|
|
|
|
m_resourceEditor.data()->onUndo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceEditorW::onRedo()
|
|
|
|
|
{
|
|
|
|
|
if (!m_resourceEditor.isNull())
|
|
|
|
|
m_resourceEditor.data()->onRedo();
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ResourceEditor
|