2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-02-26 11:08:17 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2010-02-26 11:08:17 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-02-26 11:08:17 +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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2010-02-26 11:08:17 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2010-12-17 16:01:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-02-26 11:08:17 +01:00
|
|
|
|
|
|
|
|
#include "designmode.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2015-02-26 13:38:54 +01:00
|
|
|
#include <coreplugin/idocument.h>
|
2010-02-26 11:08:17 +01:00
|
|
|
#include <coreplugin/modemanager.h>
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <coreplugin/coreconstants.h>
|
2015-11-11 19:26:58 +01:00
|
|
|
#include <coreplugin/coreicons.h>
|
|
|
|
|
|
2010-03-17 17:44:46 +01:00
|
|
|
#include <coreplugin/editormanager/ieditor.h>
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2012-09-24 13:48:18 +02:00
|
|
|
#include <QPointer>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QStringList>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
|
|
#include <QStackedWidget>
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2011-10-19 13:05:53 +02:00
|
|
|
static Core::DesignMode *m_instance = 0;
|
|
|
|
|
|
2010-02-26 11:08:17 +01:00
|
|
|
namespace Core {
|
|
|
|
|
|
2011-04-14 12:28:21 +02:00
|
|
|
struct DesignEditorInfo
|
|
|
|
|
{
|
2010-03-17 17:44:46 +01:00
|
|
|
int widgetIndex;
|
|
|
|
|
QStringList mimeTypes;
|
2010-06-25 12:56:16 +02:00
|
|
|
Context context;
|
2010-03-17 17:44:46 +01:00
|
|
|
QWidget *widget;
|
|
|
|
|
};
|
|
|
|
|
|
2011-04-14 12:28:21 +02:00
|
|
|
class DesignModePrivate
|
|
|
|
|
{
|
|
|
|
|
public:
|
2015-08-26 14:39:15 +02:00
|
|
|
DesignModePrivate();
|
2016-03-14 11:24:27 +02:00
|
|
|
~DesignModePrivate();
|
2011-04-14 12:28:21 +02:00
|
|
|
|
|
|
|
|
public:
|
2014-11-16 10:52:41 +02:00
|
|
|
QPointer<IEditor> m_currentEditor;
|
2010-03-17 17:44:46 +01:00
|
|
|
bool m_isActive;
|
2011-10-19 13:05:53 +02:00
|
|
|
bool m_isRequired;
|
2010-03-17 17:44:46 +01:00
|
|
|
QList<DesignEditorInfo*> m_editors;
|
|
|
|
|
QStackedWidget *m_stackWidget;
|
2010-06-25 12:56:16 +02:00
|
|
|
Context m_activeContext;
|
2010-03-17 17:44:46 +01:00
|
|
|
};
|
|
|
|
|
|
2015-08-26 14:39:15 +02:00
|
|
|
DesignModePrivate::DesignModePrivate()
|
|
|
|
|
: m_isActive(false),
|
|
|
|
|
m_isRequired(false),
|
|
|
|
|
m_stackWidget(new QStackedWidget)
|
|
|
|
|
{}
|
2010-03-17 17:44:46 +01:00
|
|
|
|
2016-03-14 11:24:27 +02:00
|
|
|
DesignModePrivate::~DesignModePrivate()
|
|
|
|
|
{
|
|
|
|
|
delete m_stackWidget;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-14 12:28:21 +02:00
|
|
|
DesignMode::DesignMode()
|
2015-08-26 14:39:15 +02:00
|
|
|
: d(new DesignModePrivate)
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2011-10-19 13:05:53 +02:00
|
|
|
m_instance = this;
|
2015-08-26 14:39:15 +02:00
|
|
|
|
|
|
|
|
ICore::addPreCloseListener([]() -> bool {
|
|
|
|
|
m_instance->currentEditorChanged(0);
|
|
|
|
|
return true;
|
|
|
|
|
});
|
|
|
|
|
|
2010-12-03 17:30:09 +01:00
|
|
|
setObjectName(QLatin1String("DesignMode"));
|
2010-02-26 11:08:17 +01:00
|
|
|
setEnabled(false);
|
2011-04-13 13:00:30 +02:00
|
|
|
setContext(Context(Constants::C_DESIGN_MODE));
|
|
|
|
|
setWidget(d->m_stackWidget);
|
2011-04-13 16:09:04 +02:00
|
|
|
setDisplayName(tr("Design"));
|
2015-11-11 19:26:58 +01:00
|
|
|
setIcon(Utils::Icon::modeIcon(Icons::MODE_DESIGN_CLASSIC,
|
|
|
|
|
Icons::MODE_DESIGN_FLAT, Icons::MODE_DESIGN_FLAT_ACTIVE));
|
2011-04-13 16:09:04 +02:00
|
|
|
setPriority(Constants::P_MODE_DESIGN);
|
2012-05-07 18:28:03 +02:00
|
|
|
setId(Constants::MODE_DESIGN);
|
2011-04-13 13:00:30 +02:00
|
|
|
|
2014-11-16 10:52:41 +02:00
|
|
|
connect(EditorManager::instance(), &EditorManager::currentEditorChanged,
|
|
|
|
|
this, &DesignMode::currentEditorChanged);
|
2010-03-19 16:07:04 +01:00
|
|
|
|
2014-11-16 10:52:41 +02:00
|
|
|
connect(ModeManager::instance(), &ModeManager::currentModeChanged,
|
|
|
|
|
this, &DesignMode::updateContext);
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DesignMode::~DesignMode()
|
|
|
|
|
{
|
2010-03-17 17:44:46 +01:00
|
|
|
qDeleteAll(d->m_editors);
|
|
|
|
|
delete d;
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
2011-10-19 13:05:53 +02:00
|
|
|
DesignMode *DesignMode::instance()
|
|
|
|
|
{
|
|
|
|
|
return m_instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DesignMode::setDesignModeIsRequired()
|
|
|
|
|
{
|
|
|
|
|
d->m_isRequired = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool DesignMode::designModeIsRequired() const
|
|
|
|
|
{
|
|
|
|
|
return d->m_isRequired;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-16 16:51:45 +01:00
|
|
|
QStringList DesignMode::registeredMimeTypes() const
|
|
|
|
|
{
|
|
|
|
|
QStringList rc;
|
2012-11-28 20:44:03 +02:00
|
|
|
foreach (const DesignEditorInfo *i, d->m_editors)
|
2010-03-16 16:51:45 +01:00
|
|
|
rc += i->mimeTypes;
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-26 12:39:26 +01:00
|
|
|
/**
|
|
|
|
|
* Registers a widget to be displayed when an editor with a file specified in
|
|
|
|
|
* mimeTypes is opened. This also appends the additionalContext in ICore to
|
|
|
|
|
* the context, specified here.
|
|
|
|
|
*/
|
2010-03-19 16:07:04 +01:00
|
|
|
void DesignMode::registerDesignWidget(QWidget *widget,
|
|
|
|
|
const QStringList &mimeTypes,
|
2010-06-25 12:56:16 +02:00
|
|
|
const Context &context)
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2011-10-19 13:05:53 +02:00
|
|
|
setDesignModeIsRequired();
|
2010-03-17 17:44:46 +01:00
|
|
|
int index = d->m_stackWidget->addWidget(widget);
|
2010-02-26 11:08:17 +01:00
|
|
|
|
|
|
|
|
DesignEditorInfo *info = new DesignEditorInfo;
|
|
|
|
|
info->mimeTypes = mimeTypes;
|
2010-03-19 16:07:04 +01:00
|
|
|
info->context = context;
|
2010-02-26 11:08:17 +01:00
|
|
|
info->widgetIndex = index;
|
|
|
|
|
info->widget = widget;
|
2010-03-17 17:44:46 +01:00
|
|
|
d->m_editors.append(info);
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DesignMode::unregisterDesignWidget(QWidget *widget)
|
|
|
|
|
{
|
2010-03-17 17:44:46 +01:00
|
|
|
d->m_stackWidget->removeWidget(widget);
|
2012-11-28 20:44:03 +02:00
|
|
|
foreach (DesignEditorInfo *info, d->m_editors) {
|
2010-02-26 11:08:17 +01:00
|
|
|
if (info->widget == widget) {
|
2010-03-17 17:44:46 +01:00
|
|
|
d->m_editors.removeAll(info);
|
2015-01-06 21:07:18 +02:00
|
|
|
delete info;
|
2010-02-26 11:08:17 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if editor changes, check if we have valid mimetype registered.
|
2014-11-16 10:52:41 +02:00
|
|
|
void DesignMode::currentEditorChanged(IEditor *editor)
|
2010-02-26 11:08:17 +01:00
|
|
|
{
|
2010-04-06 15:10:20 +02:00
|
|
|
if (editor && (d->m_currentEditor.data() == editor))
|
2010-03-30 18:16:05 +02:00
|
|
|
return;
|
|
|
|
|
|
2010-02-26 11:08:17 +01:00
|
|
|
bool mimeEditorAvailable = false;
|
|
|
|
|
|
2013-07-04 22:25:15 +02:00
|
|
|
if (editor) {
|
2012-02-14 16:43:51 +01:00
|
|
|
const QString mimeType = editor->document()->mimeType();
|
2010-05-07 14:49:57 +02:00
|
|
|
if (!mimeType.isEmpty()) {
|
|
|
|
|
foreach (DesignEditorInfo *editorInfo, d->m_editors) {
|
|
|
|
|
foreach (const QString &mime, editorInfo->mimeTypes) {
|
|
|
|
|
if (mime == mimeType) {
|
|
|
|
|
d->m_stackWidget->setCurrentIndex(editorInfo->widgetIndex);
|
|
|
|
|
setActiveContext(editorInfo->context);
|
|
|
|
|
mimeEditorAvailable = true;
|
|
|
|
|
setEnabled(true);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} // foreach mime
|
|
|
|
|
if (mimeEditorAvailable)
|
2010-02-26 11:08:17 +01:00
|
|
|
break;
|
2010-05-07 14:49:57 +02:00
|
|
|
} // foreach editorInfo
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
}
|
2010-03-30 18:16:05 +02:00
|
|
|
if (d->m_currentEditor)
|
2016-02-02 09:10:54 +02:00
|
|
|
disconnect(d->m_currentEditor.data()->document(), &IDocument::changed, this, &DesignMode::updateActions);
|
2010-03-30 18:16:05 +02:00
|
|
|
|
2010-03-19 16:07:04 +01:00
|
|
|
if (!mimeEditorAvailable) {
|
2010-06-25 12:56:16 +02:00
|
|
|
setActiveContext(Context());
|
2012-01-26 01:18:02 +01:00
|
|
|
if (ModeManager::currentMode() == this)
|
2014-11-16 10:52:41 +02:00
|
|
|
ModeManager::activateMode(Constants::MODE_EDIT);
|
2010-02-26 11:08:17 +01:00
|
|
|
setEnabled(false);
|
2012-09-24 13:48:18 +02:00
|
|
|
d->m_currentEditor = 0;
|
2010-03-30 18:16:05 +02:00
|
|
|
emit actionsUpdated(d->m_currentEditor.data());
|
|
|
|
|
} else {
|
2012-09-24 13:48:18 +02:00
|
|
|
d->m_currentEditor = editor;
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2010-03-30 18:16:05 +02:00
|
|
|
if (d->m_currentEditor)
|
2016-02-02 09:10:54 +02:00
|
|
|
connect(d->m_currentEditor.data()->document(), &IDocument::changed, this, &DesignMode::updateActions);
|
2010-02-26 11:08:17 +01:00
|
|
|
|
2010-03-30 18:16:05 +02:00
|
|
|
emit actionsUpdated(d->m_currentEditor.data());
|
|
|
|
|
}
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DesignMode::updateActions()
|
|
|
|
|
{
|
2010-03-17 17:44:46 +01:00
|
|
|
emit actionsUpdated(d->m_currentEditor.data());
|
2010-02-26 11:08:17 +01:00
|
|
|
}
|
|
|
|
|
|
2014-11-16 10:52:41 +02:00
|
|
|
void DesignMode::updateContext(IMode *newMode, IMode *oldMode)
|
2010-03-19 16:07:04 +01:00
|
|
|
{
|
2014-11-16 11:47:18 +02:00
|
|
|
if (newMode == this)
|
|
|
|
|
ICore::addAdditionalContext(d->m_activeContext);
|
|
|
|
|
else if (oldMode == this)
|
|
|
|
|
ICore::removeAdditionalContext(d->m_activeContext);
|
2010-03-19 16:07:04 +01:00
|
|
|
}
|
|
|
|
|
|
2010-06-25 12:56:16 +02:00
|
|
|
void DesignMode::setActiveContext(const Context &context)
|
2010-03-19 16:07:04 +01:00
|
|
|
{
|
2010-06-25 18:05:09 +02:00
|
|
|
if (d->m_activeContext == context)
|
2010-03-19 16:07:04 +01:00
|
|
|
return;
|
|
|
|
|
|
2012-01-26 01:18:02 +01:00
|
|
|
if (ModeManager::currentMode() == this)
|
2014-11-16 10:52:41 +02:00
|
|
|
ICore::updateAdditionalContexts(d->m_activeContext, context);
|
2010-03-22 18:05:22 +01:00
|
|
|
|
2010-03-19 16:07:04 +01:00
|
|
|
d->m_activeContext = context;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-26 11:08:17 +01:00
|
|
|
} // namespace Core
|