2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02: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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** 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.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02: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"
|
|
|
|
|
|
2013-08-29 16:36:42 +02:00
|
|
|
#include <resourceeditor/qrceditor/qrceditor.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2012-05-05 15:01:15 +04:00
|
|
|
#include <aggregation/aggregate.h>
|
2008-12-02 16:19:05 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2012-05-24 19:11:47 +04:00
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
|
|
|
|
#include <coreplugin/actionmanager/commandbutton.h>
|
2009-07-13 15:00:20 +02:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2014-07-31 18:15:19 +02:00
|
|
|
#include <coreplugin/find/itemviewfind.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
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QTemporaryFile>
|
|
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QDir>
|
|
|
|
|
#include <qdebug.h>
|
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
|
#include <QMenu>
|
2012-05-24 19:11:47 +04:00
|
|
|
#include <QToolBar>
|
2012-05-24 23:04:29 +04:00
|
|
|
#include <QInputDialog>
|
2012-08-06 13:54:01 +04:00
|
|
|
#include <QClipboard>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-12-21 21:54:30 +02:00
|
|
|
using namespace Utils;
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
namespace ResourceEditor {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
enum { debugResourceEditorW = 0 };
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-14 16:43:51 +01:00
|
|
|
ResourceEditorDocument::ResourceEditorDocument(ResourceEditorW *parent) :
|
|
|
|
|
IDocument(parent),
|
2013-07-04 22:25:15 +02:00
|
|
|
m_blockDirtyChanged(false),
|
2008-12-02 12:01:29 +01:00
|
|
|
m_parent(parent)
|
|
|
|
|
{
|
2014-03-05 15:58:12 +01:00
|
|
|
setId(ResourceEditor::Constants::RESOURCEEDITOR_ID);
|
2014-06-26 02:15:34 +02:00
|
|
|
setMimeType(QLatin1String(ResourceEditor::Constants::C_RESOURCE_MIMETYPE));
|
2014-12-21 21:54:30 +02:00
|
|
|
setFilePath(FileName::fromString(parent->m_resourceEditor->fileName()));
|
2008-12-02 12:01:29 +01:00
|
|
|
if (debugResourceEditorW)
|
|
|
|
|
qDebug() << "ResourceEditorFile::ResourceEditorFile()";
|
|
|
|
|
}
|
|
|
|
|
|
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)
|
2012-06-04 14:10:34 +04:00
|
|
|
: m_resourceEditor(new QrcEditor(parent)),
|
2012-02-14 16:43:51 +01:00
|
|
|
m_resourceDocument(new ResourceEditorDocument(this)),
|
2011-05-10 20:43:03 +02:00
|
|
|
m_plugin(plugin),
|
|
|
|
|
m_shouldAutoSave(false),
|
2012-05-24 19:11:47 +04:00
|
|
|
m_contextMenu(new QMenu),
|
|
|
|
|
m_toolBar(new QToolBar)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2011-04-13 13:00:30 +02:00
|
|
|
setContext(context);
|
|
|
|
|
setWidget(m_resourceEditor);
|
|
|
|
|
|
2012-05-24 19:11:47 +04:00
|
|
|
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);
|
|
|
|
|
|
2012-05-05 15:01:15 +04:00
|
|
|
Aggregation::Aggregate * agg = new Aggregation::Aggregate;
|
|
|
|
|
agg->add(m_resourceEditor->treeView());
|
2014-07-31 18:15:19 +02:00
|
|
|
agg->add(new Core::ItemViewFind(m_resourceEditor->treeView()));
|
2012-05-05 15:01:15 +04:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
m_resourceEditor->setResourceDragEnabled(true);
|
2012-05-16 13:38:31 +04:00
|
|
|
m_contextMenu->addAction(tr("Open File"), this, SLOT(openCurrentFile()));
|
2011-12-09 12:23:46 +01:00
|
|
|
m_openWithMenu = m_contextMenu->addMenu(tr("Open With"));
|
2012-08-06 13:54:01 +04:00
|
|
|
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()));
|
|
|
|
|
|
2013-07-04 22:25:15 +02:00
|
|
|
connect(m_resourceEditor, SIGNAL(dirtyChanged(bool)), m_resourceDocument, SLOT(dirtyChanged(bool)));
|
2012-03-05 22:30:59 +01:00
|
|
|
connect(m_resourceEditor, SIGNAL(undoStackChanged(bool,bool)),
|
|
|
|
|
this, SLOT(onUndoStackChanged(bool,bool)));
|
2011-12-09 12:23:46 +01:00
|
|
|
connect(m_resourceEditor, SIGNAL(showContextMenu(QPoint,QString)),
|
|
|
|
|
this, SLOT(showContextMenu(QPoint,QString)));
|
2012-05-16 13:38:31 +04:00
|
|
|
connect(m_resourceEditor, SIGNAL(itemActivated(QString)),
|
|
|
|
|
this, SLOT(openFile(QString)));
|
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
|
|
|
if (debugResourceEditorW)
|
|
|
|
|
qDebug() << "ResourceEditorW::ResourceEditorW()";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ResourceEditorW::~ResourceEditorW()
|
|
|
|
|
{
|
|
|
|
|
if (m_resourceEditor)
|
|
|
|
|
m_resourceEditor->deleteLater();
|
2011-12-09 12:23:46 +01:00
|
|
|
delete m_contextMenu;
|
2012-05-24 19:11:47 +04:00
|
|
|
delete m_toolBar;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
|
2013-07-04 22:25:15 +02:00
|
|
|
if (fileName.isEmpty())
|
2008-12-02 12:01:29 +01:00
|
|
|
return true;
|
|
|
|
|
|
2013-07-04 22:25:15 +02:00
|
|
|
m_resourceDocument->setBlockDirtyChanged(true);
|
2011-05-10 20:43:03 +02:00
|
|
|
if (!m_resourceEditor->load(realFileName)) {
|
2011-04-04 15:24:13 +02:00
|
|
|
*errorString = m_resourceEditor->errorMessage();
|
2013-07-04 22:25:15 +02:00
|
|
|
m_resourceDocument->setBlockDirtyChanged(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
|
|
|
|
2014-12-21 21:54:30 +02:00
|
|
|
m_resourceDocument->setFilePath(FileName::fromString(fileName));
|
2013-07-04 22:25:15 +02:00
|
|
|
m_resourceDocument->setBlockDirtyChanged(false);
|
2011-05-10 20:43:03 +02:00
|
|
|
m_resourceEditor->setDirty(fileName != realFileName);
|
|
|
|
|
m_shouldAutoSave = false;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-14 16:43:51 +01:00
|
|
|
bool ResourceEditorDocument::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
|
|
|
|
2014-12-21 21:54:30 +02: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;
|
|
|
|
|
|
2013-07-04 22:25:15 +02:00
|
|
|
m_blockDirtyChanged = true;
|
2014-12-21 21:54:30 +02:00
|
|
|
m_parent->m_resourceEditor->setFileName(actualName.toString());
|
2008-12-02 12:01:29 +01:00
|
|
|
if (!m_parent->m_resourceEditor->save()) {
|
2011-03-30 13:45:16 +02:00
|
|
|
*errorString = m_parent->m_resourceEditor->errorMessage();
|
2014-12-21 21:54:30 +02:00
|
|
|
m_parent->m_resourceEditor->setFileName(oldFileName.toString());
|
2013-07-04 22:25:15 +02:00
|
|
|
m_blockDirtyChanged = 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) {
|
2014-12-21 21:54:30 +02:00
|
|
|
m_parent->m_resourceEditor->setFileName(oldFileName.toString());
|
2011-05-10 20:43:03 +02:00
|
|
|
m_parent->m_resourceEditor->setDirty(true);
|
2013-07-04 22:25:15 +02:00
|
|
|
m_blockDirtyChanged = false;
|
2011-05-10 20:43:03 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-04 13:30:26 +02:00
|
|
|
setFilePath(actualName);
|
2013-07-04 22:25:15 +02:00
|
|
|
m_blockDirtyChanged = false;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
emit changed();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-19 16:59:25 +01:00
|
|
|
QString ResourceEditorDocument::plainText() const
|
|
|
|
|
{
|
|
|
|
|
return m_parent->m_resourceEditor->contents();
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-15 15:14:10 +02:00
|
|
|
bool ResourceEditorDocument::setContents(const QByteArray &contents)
|
|
|
|
|
{
|
2014-12-21 21:54:30 +02:00
|
|
|
TempFileSaver saver;
|
2013-07-15 15:14:10 +02:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-21 21:54:30 +02:00
|
|
|
void ResourceEditorDocument::setFilePath(const FileName &newName)
|
2010-05-11 14:13:38 +02:00
|
|
|
{
|
2014-12-21 21:54:30 +02:00
|
|
|
if (newName.toString() != m_parent->m_resourceEditor->fileName())
|
|
|
|
|
m_parent->m_resourceEditor->setFileName(newName.toString());
|
2013-07-04 13:30:26 +02:00
|
|
|
IDocument::setFilePath(newName);
|
2010-05-11 14:13:38 +02:00
|
|
|
}
|
|
|
|
|
|
2013-07-04 22:25:15 +02:00
|
|
|
void ResourceEditorDocument::setBlockDirtyChanged(bool value)
|
|
|
|
|
{
|
|
|
|
|
m_blockDirtyChanged = value;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-24 19:11:47 +04:00
|
|
|
QWidget *ResourceEditorW::toolBar()
|
|
|
|
|
{
|
|
|
|
|
return m_toolBar;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-14 16:43:51 +01:00
|
|
|
bool ResourceEditorDocument::shouldAutoSave() const
|
2011-05-10 20:43:03 +02:00
|
|
|
{
|
|
|
|
|
return m_parent->m_shouldAutoSave;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-14 16:43:51 +01:00
|
|
|
bool ResourceEditorDocument::isModified() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
return m_parent->m_resourceEditor->isDirty();
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-14 16:43:51 +01:00
|
|
|
bool ResourceEditorDocument::isSaveAsAllowed() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-14 16:43:51 +01:00
|
|
|
bool ResourceEditorDocument::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();
|
2014-12-21 21:54:30 +02:00
|
|
|
QString fn = filePath().toString();
|
2013-06-20 12:49:19 +02:00
|
|
|
const bool success = m_parent->open(errorString, fn, fn);
|
|
|
|
|
emit reloadFinished(success);
|
|
|
|
|
return success;
|
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
|
|
|
}
|
|
|
|
|
|
2012-02-14 16:43:51 +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;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-14 16:43:51 +01:00
|
|
|
QString ResourceEditorDocument::suggestedFileName() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
return m_parent->m_suggestedName;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-04 22:25:15 +02:00
|
|
|
void ResourceEditorDocument::dirtyChanged(bool dirty)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2013-07-04 22:25:15 +02:00
|
|
|
if (m_blockDirtyChanged)
|
2011-05-10 20:43:03 +02:00
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-09 12:23:46 +01:00
|
|
|
void ResourceEditorW::showContextMenu(const QPoint &globalPoint, const QString &fileName)
|
|
|
|
|
{
|
2015-05-20 13:07:13 +02:00
|
|
|
Core::EditorManager::populateOpenWithMenu(m_openWithMenu, fileName);
|
2012-05-24 23:04:29 +04:00
|
|
|
m_currentFileName = fileName;
|
|
|
|
|
m_renameAction->setEnabled(!document()->isFileReadOnly());
|
|
|
|
|
m_contextMenu->popup(globalPoint);
|
2012-05-16 13:38:31 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceEditorW::openCurrentFile()
|
|
|
|
|
{
|
|
|
|
|
openFile(m_currentFileName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceEditorW::openFile(const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
Core::EditorManager::openEditor(fileName);
|
2011-12-09 12:23:46 +01:00
|
|
|
}
|
|
|
|
|
|
2012-05-24 19:11:47 +04:00
|
|
|
void ResourceEditorW::onRefresh()
|
|
|
|
|
{
|
2012-07-20 19:42:38 +04:00
|
|
|
m_resourceEditor->refresh();
|
2012-05-24 19:11:47 +04:00
|
|
|
}
|
|
|
|
|
|
2012-05-24 23:04:29 +04:00
|
|
|
void ResourceEditorW::renameCurrentFile()
|
|
|
|
|
{
|
|
|
|
|
m_resourceEditor->editCurrentItem();
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-06 13:54:01 +04:00
|
|
|
void ResourceEditorW::copyCurrentResourcePath()
|
|
|
|
|
{
|
|
|
|
|
QApplication::clipboard()->setText(m_resourceEditor->currentResourcePath());
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void ResourceEditorW::onUndo()
|
|
|
|
|
{
|
2012-07-20 19:42:38 +04:00
|
|
|
m_resourceEditor->onUndo();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ResourceEditorW::onRedo()
|
|
|
|
|
{
|
2012-07-20 19:42:38 +04:00
|
|
|
m_resourceEditor->onRedo();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 16:19:05 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ResourceEditor
|