2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
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
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Alternatively, 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
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
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>
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ResourceEditorW::ResourceEditorW(const QList<int> &context,
|
|
|
|
|
ResourceEditorPlugin *plugin,
|
|
|
|
|
QWidget *parent)
|
|
|
|
|
: m_context(context),
|
|
|
|
|
m_resourceEditor(new SharedTools::QrcEditor(parent)),
|
|
|
|
|
m_resourceFile(new ResourceEditorFile(this)),
|
|
|
|
|
m_plugin(plugin)
|
|
|
|
|
{
|
|
|
|
|
m_resourceEditor->setResourceDragEnabled(true);
|
|
|
|
|
m_resourceEditor->layout()->setMargin(9);
|
|
|
|
|
|
|
|
|
|
connect(m_resourceEditor, SIGNAL(dirtyChanged(bool)), this, SLOT(dirtyChanged(bool)));
|
|
|
|
|
connect(m_resourceEditor, SIGNAL(undoStackChanged(bool, bool)),
|
|
|
|
|
this, SLOT(onUndoStackChanged(bool, bool)));
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
QTemporaryFile tempFile(0);
|
|
|
|
|
tempFile.setAutoRemove(true);
|
|
|
|
|
if (!tempFile.open())
|
|
|
|
|
return false;
|
|
|
|
|
const QString tempFileName = tempFile.fileName();
|
|
|
|
|
tempFile.write(contents.toUtf8());
|
|
|
|
|
tempFile.close();
|
|
|
|
|
|
|
|
|
|
const bool rc = m_resourceEditor->load(tempFileName);
|
|
|
|
|
m_resourceEditor->setFileName(QString());
|
|
|
|
|
if (debugResourceEditorW)
|
|
|
|
|
qDebug() << "ResourceEditorW::createNew: " << contents << " (" << tempFileName << ") returns " << rc;
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ResourceEditorW::open(const QString &fileName /*= QString()*/)
|
|
|
|
|
{
|
|
|
|
|
if (debugResourceEditorW)
|
|
|
|
|
qDebug() << "ResourceEditorW::open: " << fileName;
|
|
|
|
|
|
|
|
|
|
if (fileName.isEmpty()) {
|
|
|
|
|
setDisplayName(tr("untitled"));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QFileInfo fi(fileName);
|
|
|
|
|
|
|
|
|
|
const QString absFileName = fi.absoluteFilePath();
|
|
|
|
|
|
|
|
|
|
if (!fi.isReadable())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (!m_resourceEditor->load(absFileName))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
setDisplayName(fi.fileName());
|
|
|
|
|
|
|
|
|
|
emit changed();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ResourceEditorFile::save(const QString &name /*= QString()*/)
|
|
|
|
|
{
|
|
|
|
|
if (debugResourceEditorW)
|
|
|
|
|
qDebug() << ">ResourceEditorW::save: " << name;
|
|
|
|
|
|
|
|
|
|
const QString oldFileName = fileName();
|
|
|
|
|
const QString actualName = name.isEmpty() ? oldFileName : name;
|
|
|
|
|
if (actualName.isEmpty())
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
m_parent->m_resourceEditor->setFileName(actualName);
|
|
|
|
|
if (!m_parent->m_resourceEditor->save()) {
|
|
|
|
|
m_parent->m_resourceEditor->setFileName(oldFileName);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_parent->m_resourceEditor->setDirty(false);
|
|
|
|
|
m_parent->setDisplayName(QFileInfo(actualName).fileName());
|
|
|
|
|
|
|
|
|
|
emit changed();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *ResourceEditorW::kind() const {
|
2009-01-28 17:53:10 +01:00
|
|
|
return ResourceEditor::Constants::C_RESOURCEEDITOR;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ResourceEditorFile::fileName() const
|
|
|
|
|
{
|
|
|
|
|
return m_parent->m_resourceEditor->fileName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceEditorFile::modified(Core::IFile::ReloadBehavior *behavior)
|
|
|
|
|
{
|
|
|
|
|
const QString fileName = m_parent->m_resourceEditor->fileName();
|
|
|
|
|
|
|
|
|
|
switch (*behavior) {
|
2009-07-13 15:00:20 +02:00
|
|
|
case Core::IFile::ReloadNone:
|
2008-12-02 12:01:29 +01:00
|
|
|
return;
|
2009-07-13 15:00:20 +02:00
|
|
|
case Core::IFile::ReloadUnmodified:
|
|
|
|
|
if (!isModified()) {
|
|
|
|
|
m_parent->open(fileName);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2008-12-02 12:01:29 +01:00
|
|
|
case Core::IFile::ReloadAll:
|
|
|
|
|
m_parent->open(fileName);
|
|
|
|
|
return;
|
|
|
|
|
case Core::IFile::ReloadPermissions:
|
|
|
|
|
emit changed();
|
|
|
|
|
return;
|
|
|
|
|
case Core::IFile::AskForReload:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-05 11:06:05 +02:00
|
|
|
switch (Utils::reloadPrompt(fileName, isModified(), Core::ICore::instance()->mainWindow())) {
|
|
|
|
|
case Utils::ReloadCurrent:
|
2008-12-02 12:01:29 +01:00
|
|
|
m_parent->open(fileName);
|
|
|
|
|
break;
|
2009-10-05 11:06:05 +02:00
|
|
|
case Utils::ReloadAll:
|
2008-12-02 12:01:29 +01:00
|
|
|
m_parent->open(fileName);
|
|
|
|
|
*behavior = Core::IFile::ReloadAll;
|
|
|
|
|
break;
|
2009-10-05 11:06:05 +02:00
|
|
|
case Utils::ReloadSkipCurrent:
|
2008-12-02 12:01:29 +01:00
|
|
|
break;
|
2009-10-05 11:06:05 +02:00
|
|
|
case Utils::ReloadNone:
|
2008-12-02 12:01:29 +01:00
|
|
|
*behavior = Core::IFile::ReloadNone;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
if (debugResourceEditorW)
|
|
|
|
|
qDebug() << " ResourceEditorW::dirtyChanged" << dirty;
|
|
|
|
|
if (dirty)
|
|
|
|
|
emit changed();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QWidget *ResourceEditorW::widget()
|
|
|
|
|
{
|
|
|
|
|
return m_resourceEditor; /* we know it's a subclass of QWidget...*/
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|