2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +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.
|
2008-12-02 14:17:16 +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
|
|
|
****************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "basevcseditorfactory.h"
|
|
|
|
|
#include "vcsbaseeditor.h"
|
|
|
|
|
|
|
|
|
|
#include <texteditor/texteditoractionhandler.h>
|
2015-02-26 13:22:35 +01:00
|
|
|
#include <texteditor/textdocument.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-02-13 16:43:28 +01:00
|
|
|
#include <diffeditor/diffeditorconstants.h>
|
2014-08-28 13:45:42 +02:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
2014-02-13 16:43:28 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QCoreApplication>
|
2013-03-25 11:36:51 +01:00
|
|
|
#include <QStringList>
|
2010-01-08 09:48:54 +01:00
|
|
|
|
2014-08-21 01:24:38 +02:00
|
|
|
using namespace TextEditor;
|
|
|
|
|
|
2011-03-28 14:19:17 +02:00
|
|
|
/*!
|
2012-01-07 12:31:48 +01:00
|
|
|
\class VcsBase::BaseVCSEditorFactory
|
2011-03-28 14:19:17 +02:00
|
|
|
|
2013-06-05 14:29:24 +02:00
|
|
|
\brief The BaseVCSEditorFactory class is the base class for editor
|
|
|
|
|
factories creating instances of VcsBaseEditor subclasses.
|
2011-03-28 14:19:17 +02:00
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
\sa VcsBase::VcsBaseEditorWidget
|
2011-03-28 14:19:17 +02:00
|
|
|
*/
|
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
namespace VcsBase {
|
2011-12-08 13:07:00 +01:00
|
|
|
|
2014-08-21 01:24:38 +02:00
|
|
|
VcsEditorFactory::VcsEditorFactory(const VcsBaseEditorParameters *parameters,
|
2014-10-22 18:38:23 +02:00
|
|
|
// Force copy, see QTCREATORBUG-13218
|
|
|
|
|
const EditorWidgetCreator editorWidgetCreator,
|
2014-08-21 01:24:38 +02:00
|
|
|
QObject *describeReceiver, const char *describeSlot)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2014-08-28 13:45:42 +02:00
|
|
|
setProperty("VcsEditorFactoryName", QByteArray(parameters->id));
|
2014-08-21 01:24:38 +02:00
|
|
|
setId(parameters->id);
|
|
|
|
|
setDisplayName(QCoreApplication::translate("VCS", parameters->displayName));
|
|
|
|
|
if (QLatin1String(parameters->mimeType) != QLatin1String(DiffEditor::Constants::DIFF_EDITOR_MIMETYPE))
|
|
|
|
|
addMimeType(parameters->mimeType);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-09-02 12:25:20 +02:00
|
|
|
setEditorActionHandlers(TextEditorActionHandler::None);
|
2014-09-03 11:24:38 +02:00
|
|
|
setDuplicatedSupported(false);
|
2014-08-28 13:45:42 +02:00
|
|
|
|
2014-10-22 18:38:23 +02:00
|
|
|
setDocumentCreator([this, parameters]() -> TextDocument* {
|
2014-09-22 18:43:31 +02:00
|
|
|
auto document = new TextDocument(parameters->id);
|
2014-08-28 13:45:42 +02:00
|
|
|
// if (QLatin1String(parameters->mimeType) != QLatin1String(DiffEditor::Constants::DIFF_EDITOR_MIMETYPE))
|
|
|
|
|
document->setMimeType(QLatin1String(parameters->mimeType));
|
|
|
|
|
return document;
|
|
|
|
|
});
|
|
|
|
|
|
2014-10-22 18:38:23 +02:00
|
|
|
setEditorWidgetCreator([this, parameters, editorWidgetCreator, describeReceiver, describeSlot]() -> TextEditorWidget* {
|
2014-08-28 13:45:42 +02:00
|
|
|
auto widget = qobject_cast<VcsBaseEditorWidget *>(editorWidgetCreator());
|
|
|
|
|
widget->setDescribeSlot(describeReceiver, describeSlot);
|
|
|
|
|
widget->setParameters(parameters);
|
|
|
|
|
return widget;
|
|
|
|
|
});
|
|
|
|
|
|
2014-09-02 12:25:20 +02:00
|
|
|
setEditorCreator([]() { return new VcsBaseEditor(); });
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2014-08-28 13:45:42 +02:00
|
|
|
VcsBaseEditor *VcsEditorFactory::createEditorById(const char *id)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2014-08-28 13:45:42 +02:00
|
|
|
auto factory = ExtensionSystem::PluginManager::getObject<VcsEditorFactory>(
|
|
|
|
|
[id](QObject *ob) { return ob->property("VcsEditorFactoryName").toByteArray() == id; });
|
|
|
|
|
QTC_ASSERT(factory, return 0);
|
|
|
|
|
return qobject_cast<VcsBaseEditor *>(factory->createEditor());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2012-01-07 12:31:48 +01:00
|
|
|
} // namespace VcsBase
|