Files
qt-creator/src/plugins/qmleditor/qmleditorplugin.cpp

151 lines
5.0 KiB
C++
Raw Normal View History

2009-04-22 15:21:04 +02:00
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
**
** 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
**
**************************************************************************/
2009-09-30 17:43:21 +02:00
#include "qmleditorplugin.h"
2009-04-22 15:21:04 +02:00
#include "qscripthighlighter.h"
2009-09-30 17:43:21 +02:00
#include "qmleditor.h"
#include "qmleditorconstants.h"
#include "qmleditorfactory.h"
#include "qmlcodecompletion.h"
#include "qmlhoverhandler.h"
#include "qmlmodelmanager.h"
2009-09-24 12:54:53 +02:00
#include "qmlfilewizard.h"
2009-04-22 15:21:04 +02:00
#include <coreplugin/icore.h>
#include <coreplugin/coreconstants.h>
#include <coreplugin/mimedatabase.h>
#include <coreplugin/uniqueidmanager.h>
#include <coreplugin/actionmanager/actionmanager.h>
#include <extensionsystem/pluginmanager.h>
#include <texteditor/fontsettings.h>
#include <texteditor/storagesettings.h>
#include <texteditor/texteditorconstants.h>
#include <texteditor/texteditorsettings.h>
#include <texteditor/textfilewizard.h>
#include <texteditor/texteditoractionhandler.h>
#include <texteditor/completionsupport.h>
#include <utils/qtcassert.h>
#include <QtCore/QtPlugin>
#include <QtCore/QDebug>
#include <QtCore/QSettings>
#include <QtGui/QAction>
2009-09-30 17:43:21 +02:00
using namespace QmlEditor;
using namespace QmlEditor::Internal;
using namespace QmlEditor::Constants;
2009-04-22 15:21:04 +02:00
2009-09-30 17:43:21 +02:00
QmlEditorPlugin *QmlEditorPlugin::m_instance = 0;
2009-04-22 15:21:04 +02:00
2009-09-30 17:43:21 +02:00
QmlEditorPlugin::QmlEditorPlugin() :
2009-09-04 16:51:11 +02:00
m_modelManager(0),
2009-04-22 15:21:04 +02:00
m_wizard(0),
m_editor(0),
m_actionHandler(0),
m_completion(0)
{
m_instance = this;
}
2009-09-30 17:43:21 +02:00
QmlEditorPlugin::~QmlEditorPlugin()
2009-04-22 15:21:04 +02:00
{
removeObject(m_editor);
delete m_actionHandler;
m_instance = 0;
}
2009-09-30 17:43:21 +02:00
bool QmlEditorPlugin::initialize(const QStringList & /*arguments*/, QString *error_message)
2009-04-22 15:21:04 +02:00
{
typedef SharedTools::QScriptHighlighter QScriptHighlighter;
Core::ICore *core = Core::ICore::instance();
2009-09-30 17:43:21 +02:00
if (!core->mimeDatabase()->addMimeTypes(QLatin1String(":/qmleditor/QmlEditor.mimetypes.xml"), error_message))
2009-04-22 15:21:04 +02:00
return false;
2009-09-04 16:51:11 +02:00
2009-09-30 17:43:21 +02:00
m_modelManager = new QmlModelManager(this);
2009-09-04 16:51:11 +02:00
addAutoReleasedObject(m_modelManager);
QList<int> context;
context<< core->uniqueIDManager()->uniqueIdentifier(QmlEditor::Constants::C_QMLEDITOR);
2009-04-22 15:21:04 +02:00
m_editor = new QmlEditorFactory(this);
2009-04-22 15:21:04 +02:00
addObject(m_editor);
Core::BaseFileWizardParameters wizardParameters(Core::IWizard::FileWizard);
wizardParameters.setCategory(QLatin1String("Qt"));
wizardParameters.setTrCategory(tr("Qt"));
2009-09-24 12:54:53 +02:00
wizardParameters.setDescription(tr("Creates a Qt QML file."));
wizardParameters.setName(tr("Qt QML File"));
addAutoReleasedObject(new QmlFileWizard(wizardParameters, core));
2009-04-22 15:21:04 +02:00
2009-09-30 17:43:21 +02:00
m_actionHandler = new TextEditor::TextEditorActionHandler(QmlEditor::Constants::C_QMLEDITOR,
2009-04-22 15:21:04 +02:00
TextEditor::TextEditorActionHandler::Format
| TextEditor::TextEditorActionHandler::UnCommentSelection
| TextEditor::TextEditorActionHandler::UnCollapseAll);
2009-09-11 14:42:50 +02:00
m_actionHandler->initializeActions();
2009-04-22 15:21:04 +02:00
2009-09-30 17:43:21 +02:00
m_completion = new QmlCodeCompletion();
2009-04-22 15:21:04 +02:00
addAutoReleasedObject(m_completion);
2009-09-30 17:43:21 +02:00
addAutoReleasedObject(new QmlHoverHandler());
2009-05-06 15:45:19 +02:00
2009-04-22 15:21:04 +02:00
// Restore settings
QSettings *settings = Core::ICore::instance()->settings();
settings->beginGroup(QLatin1String("CppTools")); // ### FIXME:
settings->beginGroup(QLatin1String("Completion"));
const bool caseSensitive = settings->value(QLatin1String("CaseSensitive"), true).toBool();
m_completion->setCaseSensitivity(caseSensitive ? Qt::CaseSensitive : Qt::CaseInsensitive);
settings->endGroup();
settings->endGroup();
error_message->clear();
return true;
}
2009-09-30 17:43:21 +02:00
void QmlEditorPlugin::extensionsInitialized()
2009-04-22 15:21:04 +02:00
{
}
2009-09-30 17:43:21 +02:00
void QmlEditorPlugin::initializeEditor(QmlEditor::Internal::ScriptEditor *editor)
2009-04-22 15:21:04 +02:00
{
QTC_ASSERT(m_instance, /**/);
m_actionHandler->setupActions(editor);
TextEditor::TextEditorSettings::instance()->initializeEditor(editor);
// auto completion
connect(editor, SIGNAL(requestAutoCompletion(ITextEditable*, bool)),
TextEditor::Internal::CompletionSupport::instance(), SLOT(autoComplete(ITextEditable*, bool)));
}
2009-09-30 17:43:21 +02:00
Q_EXPORT_PLUGIN(QmlEditorPlugin)