Files
qt-creator/src/plugins/resourceeditor/resourceeditorw.cpp

257 lines
6.8 KiB
C++
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
2010-03-05 11:25:49 +01:00
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2008-12-02 12:01:29 +01:00
**
** Commercial Usage
**
** 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.
**
** GNU Lesser General Public License Usage
**
** 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.
**
** 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
**
**************************************************************************/
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>
#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);
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;
}
QString ResourceEditorW::id() const {
return QLatin1String(ResourceEditor::Constants::RESOURCEEDITOR_ID);
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;
}
Core::IFile::ReloadBehavior ResourceEditorFile::reloadBehavior(ChangeTrigger state, ChangeType type) const
2008-12-02 12:01:29 +01:00
{
if (type == TypePermissions)
return BehaviorSilent;
if (type == TypeContents) {
if (state == TriggerInternal && !isModified())
return BehaviorSilent;
return BehaviorAsk;
}
return BehaviorAsk;
}
2008-12-02 12:01:29 +01:00
void ResourceEditorFile::reload(ReloadFlag flag, ChangeType type)
{
if (flag == FlagIgnore)
2008-12-02 12:01:29 +01:00
return;
if (type == TypePermissions) {
2008-12-02 12:01:29 +01:00
emit changed();
} else {
m_parent->open(m_parent->m_resourceEditor->fileName());
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)
{
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