2009-04-22 15:21:04 +02: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).
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2009-04-22 15:21:04 +02: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.
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
#include "qmljseditorfactory.h"
|
|
|
|
|
#include "qmljseditor.h"
|
|
|
|
|
#include "qmljseditoractionhandler.h"
|
|
|
|
|
#include "qmljseditorconstants.h"
|
|
|
|
|
#include "qmljseditorplugin.h"
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-03-31 11:15:36 +02:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
#include <extensionsystem/pluginspec.h>
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2009-04-22 15:21:04 +02:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
|
|
|
|
|
#include <QtCore/QFileInfo>
|
|
|
|
|
#include <QtCore/QDebug>
|
2010-03-31 11:15:36 +02:00
|
|
|
#include <QtCore/QSettings>
|
|
|
|
|
#include <QtGui/QMessageBox>
|
|
|
|
|
#include <QtGui/QPushButton>
|
|
|
|
|
#include <QtGui/QMainWindow>
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
const char * const QMLDESIGNER_INFO_BAR = "QmlJSEditor.QmlDesignerInfoBar";
|
|
|
|
|
const char * const KEY_QMLGROUP = "QML";
|
|
|
|
|
const char * const KEY_NAGABOUTDESIGNER = "AskAboutVisualDesigner";
|
|
|
|
|
|
|
|
|
|
bool isQmlDesignerExperimentallyDisabled()
|
|
|
|
|
{
|
|
|
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
|
|
|
|
foreach (const ExtensionSystem::PluginSpec *spec, pm->plugins()) {
|
|
|
|
|
if (spec->name() == QLatin1String("QmlDesigner")) {
|
|
|
|
|
if (spec->isExperimental() && !spec->isEnabled())
|
|
|
|
|
return true;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool isNaggingAboutExperimentalDesignerEnabled()
|
|
|
|
|
{
|
|
|
|
|
if (!isQmlDesignerExperimentallyDisabled()) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
QSettings *settings = Core::ICore::instance()->settings();
|
|
|
|
|
settings->beginGroup(QLatin1String(KEY_QMLGROUP));
|
|
|
|
|
bool nag = settings->value(QLatin1String(KEY_NAGABOUTDESIGNER), true).toBool();
|
|
|
|
|
settings->endGroup();
|
|
|
|
|
return nag;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
using namespace QmlJSEditor::Internal;
|
|
|
|
|
using namespace QmlJSEditor::Constants;
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
QmlJSEditorFactory::QmlJSEditorFactory(QObject *parent)
|
2010-01-15 17:41:12 +01:00
|
|
|
: Core::IEditorFactory(parent)
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
2010-01-15 17:41:12 +01:00
|
|
|
m_mimeTypes
|
|
|
|
|
<< QLatin1String(QmlJSEditor::Constants::QML_MIMETYPE)
|
|
|
|
|
<< QLatin1String(QmlJSEditor::Constants::JS_MIMETYPE)
|
|
|
|
|
;
|
2009-04-22 15:21:04 +02:00
|
|
|
}
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
QmlJSEditorFactory::~QmlJSEditorFactory()
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
QString QmlJSEditorFactory::id() const
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
2010-01-15 17:20:03 +01:00
|
|
|
return QLatin1String(C_QMLJSEDITOR_ID);
|
2009-04-22 15:21:04 +02:00
|
|
|
}
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
QString QmlJSEditorFactory::displayName() const
|
2010-01-07 18:17:24 +01:00
|
|
|
{
|
2010-01-15 17:20:03 +01:00
|
|
|
return tr(C_QMLJSEDITOR_DISPLAY_NAME);
|
2010-01-07 18:17:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
Core::IFile *QmlJSEditorFactory::open(const QString &fileName)
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
2010-01-07 18:17:24 +01:00
|
|
|
Core::IEditor *iface = Core::EditorManager::instance()->openEditor(fileName, id());
|
2009-04-22 15:21:04 +02:00
|
|
|
if (!iface) {
|
2009-09-30 17:43:21 +02:00
|
|
|
qWarning() << "QmlEditorFactory::open: openEditor failed for " << fileName;
|
2009-04-22 15:21:04 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return iface->file();
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
Core::IEditor *QmlJSEditorFactory::createEditor(QWidget *parent)
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
2010-03-31 11:15:36 +02:00
|
|
|
static bool listenerInitialized = false;
|
|
|
|
|
if (!listenerInitialized) {
|
|
|
|
|
listenerInitialized = true;
|
|
|
|
|
if (isNaggingAboutExperimentalDesignerEnabled()) {
|
|
|
|
|
connect(Core::EditorManager::instance(), SIGNAL(currentEditorChanged(Core::IEditor*)),
|
|
|
|
|
SLOT(updateEditorInfoBar(Core::IEditor*)));
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-01-15 17:20:03 +01:00
|
|
|
QmlJSTextEditor *rc = new QmlJSTextEditor(parent);
|
|
|
|
|
QmlJSEditorPlugin::instance()->initializeEditor(rc);
|
2009-04-22 15:21:04 +02:00
|
|
|
return rc->editableInterface();
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
QStringList QmlJSEditorFactory::mimeTypes() const
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
|
|
|
|
return m_mimeTypes;
|
|
|
|
|
}
|
2010-03-31 11:15:36 +02:00
|
|
|
|
|
|
|
|
void QmlJSEditorFactory::updateEditorInfoBar(Core::IEditor *editor)
|
|
|
|
|
{
|
|
|
|
|
if (qobject_cast<QmlJSEditorEditable *>(editor)) {
|
|
|
|
|
Core::EditorManager::instance()->showEditorInfoBar(QMLDESIGNER_INFO_BAR,
|
2010-03-31 14:21:31 +02:00
|
|
|
tr("Do you want to enable the experimental Qt Quick Designer?"),
|
2010-03-31 16:21:12 +02:00
|
|
|
tr("Enable Qt Quick Designer"), this,
|
|
|
|
|
SLOT(activateQmlDesigner()),
|
|
|
|
|
SLOT(neverAskAgainAboutQmlDesigner()));
|
2010-03-31 11:15:36 +02:00
|
|
|
} else {
|
|
|
|
|
Core::EditorManager::instance()->hideEditorInfoBar(QMLDESIGNER_INFO_BAR);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QmlJSEditorFactory::activateQmlDesigner()
|
|
|
|
|
{
|
|
|
|
|
QString menu;
|
|
|
|
|
#ifdef Q_WS_MAC
|
|
|
|
|
menu = tr("Qt Creator -> About Plugins...");
|
|
|
|
|
#else
|
|
|
|
|
menu = tr("Help -> About Plugins...");
|
|
|
|
|
#endif
|
|
|
|
|
QMessageBox message(Core::ICore::instance()->mainWindow());
|
2010-03-31 14:21:31 +02:00
|
|
|
message.setWindowTitle(tr("Enable experimental Qt Quick Designer?"));
|
|
|
|
|
message.setText(tr("Do you want to enable the experimental Qt Quick Designer? "
|
2010-03-31 11:15:36 +02:00
|
|
|
"After enabling it, you can access the visual design capabilities by switching to Design Mode. "
|
|
|
|
|
"This can affect the overall stability of Qt Creator. "
|
2010-03-31 14:21:31 +02:00
|
|
|
"To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'.").arg(menu));
|
2010-03-31 11:15:36 +02:00
|
|
|
message.setIcon(QMessageBox::Question);
|
2010-03-31 14:21:31 +02:00
|
|
|
QPushButton *enable = message.addButton(tr("Enable Qt Quick Designer"), QMessageBox::AcceptRole);
|
2010-03-31 11:15:36 +02:00
|
|
|
message.addButton(tr("Cancel"), QMessageBox::RejectRole);
|
|
|
|
|
message.exec();
|
|
|
|
|
if (message.clickedButton() == enable) {
|
|
|
|
|
ExtensionSystem::PluginManager *pm = ExtensionSystem::PluginManager::instance();
|
|
|
|
|
foreach (ExtensionSystem::PluginSpec *spec, pm->plugins()) {
|
|
|
|
|
if (spec->name() == QLatin1String("QmlDesigner")) {
|
|
|
|
|
spec->setEnabled(true);
|
|
|
|
|
pm->writeSettings();
|
|
|
|
|
QMessageBox::information(Core::ICore::instance()->mainWindow(), tr("Please restart Qt Creator"),
|
|
|
|
|
tr("Please restart Qt Creator to make the change effective."));
|
|
|
|
|
disconnect(Core::EditorManager::instance(), SIGNAL(currentEditorChanged(Core::IEditor*)),
|
|
|
|
|
this, SLOT(updateEditorInfoBar(Core::IEditor*)));
|
|
|
|
|
Core::EditorManager::instance()->hideEditorInfoBar(QMLDESIGNER_INFO_BAR);
|
2010-04-16 15:17:31 +02:00
|
|
|
neverAskAgainAboutQmlDesigner();
|
2010-03-31 11:15:36 +02:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-03-31 16:21:12 +02:00
|
|
|
|
|
|
|
|
void QmlJSEditorFactory::neverAskAgainAboutQmlDesigner()
|
|
|
|
|
{
|
|
|
|
|
QSettings *settings = Core::ICore::instance()->settings();
|
|
|
|
|
settings->beginGroup(QLatin1String(KEY_QMLGROUP));
|
|
|
|
|
settings->setValue(QLatin1String(KEY_NAGABOUTDESIGNER), false);
|
|
|
|
|
settings->endGroup();
|
2010-04-16 15:17:31 +02:00
|
|
|
settings->sync();
|
2010-03-31 16:21:12 +02:00
|
|
|
disconnect(Core::EditorManager::instance(), SIGNAL(currentEditorChanged(Core::IEditor*)),
|
|
|
|
|
this, SLOT(updateEditorInfoBar(Core::IEditor*)));
|
|
|
|
|
}
|