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

81 lines
2.4 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 "qmleditorfactory.h"
#include "qmleditor.h"
#include "qmleditoractionhandler.h"
#include "qmleditorconstants.h"
#include "qmleditorplugin.h"
2009-04-22 15:21:04 +02:00
#include <coreplugin/editormanager/editormanager.h>
#include <QtCore/QFileInfo>
#include <QtCore/QDebug>
2009-09-30 17:43:21 +02:00
using namespace QmlEditor::Internal;
using namespace QmlEditor::Constants;
2009-04-22 15:21:04 +02:00
QmlEditorFactory::QmlEditorFactory(QObject *parent)
2009-04-22 15:21:04 +02:00
: Core::IEditorFactory(parent),
2009-09-30 17:43:21 +02:00
m_kind(QLatin1String(C_QMLEDITOR)),
m_mimeTypes(QLatin1String(QmlEditor::Constants::QMLEDITOR_MIMETYPE))
2009-04-22 15:21:04 +02:00
{
}
2009-09-30 17:43:21 +02:00
QmlEditorFactory::~QmlEditorFactory()
2009-04-22 15:21:04 +02:00
{
}
2009-09-30 17:43:21 +02:00
QString QmlEditorFactory::kind() const
2009-04-22 15:21:04 +02:00
{
return m_kind;
}
2009-09-30 17:43:21 +02:00
Core::IFile *QmlEditorFactory::open(const QString &fileName)
2009-04-22 15:21:04 +02:00
{
Core::IEditor *iface = Core::EditorManager::instance()->openEditor(fileName, kind());
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();
}
2009-09-30 17:43:21 +02:00
Core::IEditor *QmlEditorFactory::createEditor(QWidget *parent)
2009-04-22 15:21:04 +02:00
{
QmlTextEditor *rc = new QmlTextEditor(parent);
2009-09-30 17:43:21 +02:00
QmlEditorPlugin::instance()->initializeEditor(rc);
2009-04-22 15:21:04 +02:00
return rc->editableInterface();
}
2009-09-30 17:43:21 +02:00
QStringList QmlEditorFactory::mimeTypes() const
2009-04-22 15:21:04 +02:00
{
return m_mimeTypes;
}