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

325 lines
9.9 KiB
C++
Raw Normal View History

/****************************************************************************
2008-12-02 12:01:29 +01:00
**
** Copyright (C) 2015 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator.
2008-12-02 12:01:29 +01: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
** a written agreement between you and The Qt Company. For licensing terms and
** conditions see http://www.qt.io/terms-conditions. For further information
** use the contact form at http://www.qt.io/contact-us.
**
** 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 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.
**
** 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.
**
****************************************************************************/
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 <resourceeditor/qrceditor/qrceditor.h>
2008-12-02 12:01:29 +01:00
#include <aggregation/aggregate.h>
2008-12-02 16:19:05 +01:00
#include <coreplugin/icore.h>
#include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/actionmanager/commandbutton.h>
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/find/itemviewfind.h>
2008-12-02 16:19:05 +01:00
#include <utils/reloadpromptutils.h>
#include <utils/fileutils.h>
2008-12-02 16:19:05 +01:00
#include <QTemporaryFile>
#include <QFileInfo>
#include <QDir>
#include <qdebug.h>
#include <QHBoxLayout>
#include <QMenu>
#include <QToolBar>
#include <QInputDialog>
#include <QClipboard>
2008-12-02 12:01:29 +01:00
using namespace Utils;
2008-12-02 12:01:29 +01:00
namespace ResourceEditor {
namespace Internal {
enum { debugResourceEditorW = 0 };
ResourceEditorDocument::ResourceEditorDocument(ResourceEditorW *parent) :
IDocument(parent),
m_blockDirtyChanged(false),
2008-12-02 12:01:29 +01:00
m_parent(parent)
{
setId(ResourceEditor::Constants::RESOURCEEDITOR_ID);
setMimeType(QLatin1String(ResourceEditor::Constants::C_RESOURCE_MIMETYPE));
setFilePath(FileName::fromString(parent->m_resourceEditor->fileName()));
2008-12-02 12:01:29 +01:00
if (debugResourceEditorW)
qDebug() << "ResourceEditorFile::ResourceEditorFile()";
}
ResourceEditorW::ResourceEditorW(const Core::Context &context,
2008-12-02 12:01:29 +01:00
ResourceEditorPlugin *plugin,
QWidget *parent)
: m_resourceEditor(new QrcEditor(parent)),
m_resourceDocument(new ResourceEditorDocument(this)),
m_plugin(plugin),
m_shouldAutoSave(false),
m_contextMenu(new QMenu),
m_toolBar(new QToolBar)
2008-12-02 12:01:29 +01:00
{
setContext(context);
setWidget(m_resourceEditor);
Core::CommandButton *refreshButton = new Core::CommandButton(Constants::REFRESH, m_toolBar);
refreshButton->setIcon(QIcon(QLatin1String(":/texteditor/images/finddocuments.png")));
connect(refreshButton, SIGNAL(clicked()), this, SLOT(onRefresh()));
m_toolBar->addWidget(refreshButton);
Aggregation::Aggregate * agg = new Aggregation::Aggregate;
agg->add(m_resourceEditor->treeView());
agg->add(new Core::ItemViewFind(m_resourceEditor->treeView()));
2008-12-02 12:01:29 +01:00
m_resourceEditor->setResourceDragEnabled(true);
m_contextMenu->addAction(tr("Open File"), this, SLOT(openCurrentFile()));
m_openWithMenu = m_contextMenu->addMenu(tr("Open With"));
m_renameAction = m_contextMenu->addAction(tr("Rename File..."), this, SLOT(renameCurrentFile()));
m_copyFileNameAction = m_contextMenu->addAction(tr("Copy Resource Path to Clipboard"), this, SLOT(copyCurrentResourcePath()));
connect(m_resourceEditor, SIGNAL(dirtyChanged(bool)), m_resourceDocument, SLOT(dirtyChanged(bool)));
connect(m_resourceEditor, SIGNAL(undoStackChanged(bool,bool)),
this, SLOT(onUndoStackChanged(bool,bool)));
connect(m_resourceEditor, SIGNAL(showContextMenu(QPoint,QString)),
this, SLOT(showContextMenu(QPoint,QString)));
connect(m_resourceEditor, SIGNAL(itemActivated(QString)),
this, SLOT(openFile(QString)));
connect(m_resourceEditor->commandHistory(), SIGNAL(indexChanged(int)),
this, SLOT(setShouldAutoSave()));
2008-12-02 12:01:29 +01:00
if (debugResourceEditorW)
qDebug() << "ResourceEditorW::ResourceEditorW()";
}
ResourceEditorW::~ResourceEditorW()
{
if (m_resourceEditor)
m_resourceEditor->deleteLater();
delete m_contextMenu;
delete m_toolBar;
2008-12-02 12:01:29 +01: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())
2008-12-02 12:01:29 +01:00
return true;
m_resourceDocument->setBlockDirtyChanged(true);
if (!m_resourceEditor->load(realFileName)) {
*errorString = m_resourceEditor->errorMessage();
m_resourceDocument->setBlockDirtyChanged(false);
2008-12-02 12:01:29 +01:00
return false;
}
2008-12-02 12:01:29 +01:00
m_resourceDocument->setFilePath(FileName::fromString(fileName));
m_resourceDocument->setBlockDirtyChanged(false);
m_resourceEditor->setDirty(fileName != realFileName);
m_shouldAutoSave = false;
2008-12-02 12:01:29 +01:00
return true;
}
bool ResourceEditorDocument::save(QString *errorString, const QString &name, bool autoSave)
2008-12-02 12:01:29 +01:00
{
if (debugResourceEditorW)
qDebug(">ResourceEditorW::save: %s", qPrintable(name));
2008-12-02 12:01:29 +01:00
const FileName oldFileName = filePath();
const FileName actualName = name.isEmpty() ? oldFileName : FileName::fromString(name);
2008-12-02 12:01:29 +01:00
if (actualName.isEmpty())
return false;
m_blockDirtyChanged = true;
m_parent->m_resourceEditor->setFileName(actualName.toString());
2008-12-02 12:01:29 +01:00
if (!m_parent->m_resourceEditor->save()) {
*errorString = m_parent->m_resourceEditor->errorMessage();
m_parent->m_resourceEditor->setFileName(oldFileName.toString());
m_blockDirtyChanged = false;
2008-12-02 12:01:29 +01:00
return false;
}
m_parent->m_shouldAutoSave = false;
if (autoSave) {
m_parent->m_resourceEditor->setFileName(oldFileName.toString());
m_parent->m_resourceEditor->setDirty(true);
m_blockDirtyChanged = false;
return true;
}
setFilePath(actualName);
m_blockDirtyChanged = false;
2008-12-02 12:01:29 +01:00
emit changed();
return true;
}
QString ResourceEditorDocument::plainText() const
{
return m_parent->m_resourceEditor->contents();
}
bool ResourceEditorDocument::setContents(const QByteArray &contents)
{
TempFileSaver saver;
saver.write(contents);
if (!saver.finalize(Core::ICore::mainWindow()))
return false;
const bool rc = m_parent->m_resourceEditor->load(saver.fileName());
m_parent->m_shouldAutoSave = false;
if (debugResourceEditorW)
qDebug() << "ResourceEditorW::createNew: " << contents << " (" << saver.fileName() << ") returns " << rc;
return rc;
}
void ResourceEditorDocument::setFilePath(const FileName &newName)
{
if (newName.toString() != m_parent->m_resourceEditor->fileName())
m_parent->m_resourceEditor->setFileName(newName.toString());
IDocument::setFilePath(newName);
}
void ResourceEditorDocument::setBlockDirtyChanged(bool value)
{
m_blockDirtyChanged = value;
}
QWidget *ResourceEditorW::toolBar()
{
return m_toolBar;
}
bool ResourceEditorDocument::shouldAutoSave() const
{
return m_parent->m_shouldAutoSave;
}
bool ResourceEditorDocument::isModified() const
2008-12-02 12:01:29 +01:00
{
return m_parent->m_resourceEditor->isDirty();
}
bool ResourceEditorDocument::isSaveAsAllowed() const
2008-12-02 12:01:29 +01:00
{
return true;
}
bool ResourceEditorDocument::reload(QString *errorString, ReloadFlag flag, ChangeType type)
{
if (flag == FlagIgnore)
return true;
if (type == TypePermissions) {
2008-12-02 12:01:29 +01:00
emit changed();
} else {
emit aboutToReload();
QString fn = filePath().toString();
const bool success = m_parent->open(errorString, fn, fn);
emit reloadFinished(success);
return success;
2008-12-02 12:01:29 +01:00
}
return true;
2008-12-02 12:01:29 +01:00
}
QString ResourceEditorDocument::defaultPath() const
2008-12-02 12:01:29 +01:00
{
return QString();
}
void ResourceEditorW::setSuggestedFileName(const QString &fileName)
{
m_suggestedName = fileName;
}
QString ResourceEditorDocument::suggestedFileName() const
2008-12-02 12:01:29 +01:00
{
return m_parent->m_suggestedName;
}
void ResourceEditorDocument::dirtyChanged(bool dirty)
2008-12-02 12:01:29 +01:00
{
if (m_blockDirtyChanged)
return; // We emit changed() afterwards, unless it was an autosave
2008-12-02 12:01:29 +01:00
if (debugResourceEditorW)
qDebug() << " ResourceEditorW::dirtyChanged" << dirty;
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::showContextMenu(const QPoint &globalPoint, const QString &fileName)
{
Core::EditorManager::populateOpenWithMenu(m_openWithMenu, fileName);
m_currentFileName = fileName;
m_renameAction->setEnabled(!document()->isFileReadOnly());
m_contextMenu->popup(globalPoint);
}
void ResourceEditorW::openCurrentFile()
{
openFile(m_currentFileName);
}
void ResourceEditorW::openFile(const QString &fileName)
{
Core::EditorManager::openEditor(fileName);
}
void ResourceEditorW::onRefresh()
{
m_resourceEditor->refresh();
}
void ResourceEditorW::renameCurrentFile()
{
m_resourceEditor->editCurrentItem();
}
void ResourceEditorW::copyCurrentResourcePath()
{
QApplication::clipboard()->setText(m_resourceEditor->currentResourcePath());
}
2008-12-02 12:01:29 +01:00
void ResourceEditorW::onUndo()
{
m_resourceEditor->onUndo();
2008-12-02 12:01:29 +01:00
}
void ResourceEditorW::onRedo()
{
m_resourceEditor->onRedo();
2008-12-02 12:01:29 +01:00
}
2008-12-02 16:19:05 +01:00
} // namespace Internal
} // namespace ResourceEditor