2009-04-22 15:21:04 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
2011-11-02 15:59:12 +01:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-11-02 15:59:12 +01:00
|
|
|
** Nokia at qt-info@nokia.com.
|
2009-04-22 15:21:04 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
#include "qmljseditorfactory.h"
|
2010-11-02 11:10:27 +01:00
|
|
|
#include "qmljseditoreditable.h"
|
2010-01-15 17:20:03 +01:00
|
|
|
#include "qmljseditor.h"
|
|
|
|
|
#include "qmljseditoractionhandler.h"
|
|
|
|
|
#include "qmljseditorconstants.h"
|
|
|
|
|
#include "qmljseditorplugin.h"
|
2009-04-22 15:21:04 +02:00
|
|
|
|
2011-10-05 12:09:14 +02:00
|
|
|
#include <qmljstools/qmljstoolsconstants.h>
|
|
|
|
|
|
2010-03-31 11:15:36 +02:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
#include <extensionsystem/pluginspec.h>
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2011-05-06 12:48:44 +02:00
|
|
|
#include <coreplugin/infobar.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>
|
|
|
|
|
|
2010-11-25 15:10:25 +01:00
|
|
|
using namespace QmlJSEditor;
|
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
|
2011-10-05 12:09:14 +02:00
|
|
|
<< QLatin1String(QmlJSTools::Constants::QML_MIMETYPE)
|
|
|
|
|
<< QLatin1String(QmlJSTools::Constants::JS_MIMETYPE)
|
|
|
|
|
<< QLatin1String(QmlJSTools::Constants::JSON_MIMETYPE)
|
2010-01-15 17:41:12 +01:00
|
|
|
;
|
2009-04-22 15:21:04 +02:00
|
|
|
}
|
|
|
|
|
|
2011-09-07 09:26:29 +02:00
|
|
|
Core::Id QmlJSEditorFactory::id() const
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
2011-09-07 09:26:29 +02:00
|
|
|
return 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
|
|
|
{
|
2011-02-21 16:02:26 +01:00
|
|
|
QmlJSEditor::QmlJSTextEditorWidget *rc = new QmlJSEditor::QmlJSTextEditorWidget(parent);
|
2010-01-15 17:20:03 +01:00
|
|
|
QmlJSEditorPlugin::instance()->initializeEditor(rc);
|
2011-02-21 16:02:26 +01:00
|
|
|
return rc->editor();
|
2009-04-22 15:21:04 +02:00
|
|
|
}
|
|
|
|
|
|
2010-01-15 17:20:03 +01:00
|
|
|
QStringList QmlJSEditorFactory::mimeTypes() const
|
2009-04-22 15:21:04 +02:00
|
|
|
{
|
|
|
|
|
return m_mimeTypes;
|
|
|
|
|
}
|