2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** 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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
|
|
|
** contact the sales department at qt-sales@nokia.com.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 16:19:05 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "texteditorplugin.h"
|
|
|
|
|
|
|
|
#include "findinfiles.h"
|
|
|
|
#include "fontsettings.h"
|
|
|
|
#include "linenumberfilter.h"
|
|
|
|
#include "texteditorconstants.h"
|
|
|
|
#include "texteditorsettings.h"
|
|
|
|
#include "textfilewizard.h"
|
|
|
|
#include "plaintexteditorfactory.h"
|
|
|
|
#include "plaintexteditor.h"
|
|
|
|
#include "storagesettings.h"
|
|
|
|
|
2009-01-21 18:30:45 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
#include <coreplugin/mimedatabase.h>
|
|
|
|
#include <coreplugin/uniqueidmanager.h>
|
2009-01-13 13:39:31 +01:00
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
2009-01-14 13:17:53 +01:00
|
|
|
#include <coreplugin/actionmanager/command.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2009-01-19 12:39:20 +01:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <texteditor/texteditoractionhandler.h>
|
2009-04-08 14:32:31 +02:00
|
|
|
#include <find/searchresultwindow.h>
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-01-19 12:39:20 +01:00
|
|
|
#include <QtCore/QtPlugin>
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtGui/QMainWindow>
|
2009-01-19 12:39:20 +01:00
|
|
|
#include <QtGui/QShortcut>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
using namespace TextEditor;
|
|
|
|
using namespace TextEditor::Internal;
|
|
|
|
|
|
|
|
TextEditorPlugin *TextEditorPlugin::m_instance = 0;
|
|
|
|
|
2009-01-20 15:31:33 +01:00
|
|
|
TextEditorPlugin::TextEditorPlugin()
|
|
|
|
: m_settings(0),
|
2008-12-02 12:01:29 +01:00
|
|
|
m_wizard(0),
|
|
|
|
m_editorFactory(0),
|
2009-04-08 14:32:31 +02:00
|
|
|
m_lineNumberFilter(0),
|
|
|
|
m_searchResultWindow(0)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2008-12-09 15:25:01 +01:00
|
|
|
QTC_ASSERT(!m_instance, return);
|
2008-12-02 12:01:29 +01:00
|
|
|
m_instance = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextEditorPlugin::~TextEditorPlugin()
|
|
|
|
{
|
|
|
|
m_instance = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
TextEditorPlugin *TextEditorPlugin::instance()
|
|
|
|
{
|
|
|
|
return m_instance;
|
|
|
|
}
|
|
|
|
|
2009-01-20 11:52:04 +01:00
|
|
|
// ExtensionSystem::PluginInterface
|
|
|
|
bool TextEditorPlugin::initialize(const QStringList &arguments, QString *errorMessage)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2009-01-20 11:52:04 +01:00
|
|
|
Q_UNUSED(arguments);
|
|
|
|
|
2009-01-20 15:31:33 +01:00
|
|
|
if (!Core::ICore::instance()->mimeDatabase()->addMimeTypes(QLatin1String(":/texteditor/TextEditor.mimetypes.xml"), errorMessage))
|
2008-12-02 12:01:29 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
Core::BaseFileWizardParameters wizardParameters(Core::IWizard::FileWizard);
|
|
|
|
wizardParameters.setDescription(tr("This creates a new text file (.txt)"));
|
|
|
|
wizardParameters.setName(tr("Text File"));
|
|
|
|
wizardParameters.setCategory(QLatin1String("General"));
|
|
|
|
wizardParameters.setTrCategory(tr("General"));
|
|
|
|
m_wizard = new TextFileWizard(QLatin1String(TextEditor::Constants::C_TEXTEDITOR_MIMETYPE_TEXT),
|
|
|
|
QLatin1String(Core::Constants::K_DEFAULT_TEXT_EDITOR),
|
|
|
|
QLatin1String("text$"),
|
2009-01-20 15:31:33 +01:00
|
|
|
wizardParameters);
|
2008-12-02 12:01:29 +01:00
|
|
|
// Add text file wizard
|
|
|
|
addAutoReleasedObject(m_wizard);
|
|
|
|
|
|
|
|
|
2009-01-23 19:13:00 +01:00
|
|
|
m_settings = new TextEditorSettings(this);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
// Add plain text editor factory
|
|
|
|
m_editorFactory = new PlainTextEditorFactory;
|
|
|
|
addAutoReleasedObject(m_editorFactory);
|
|
|
|
|
|
|
|
// Goto line functionality for quick open
|
2009-01-20 15:31:33 +01:00
|
|
|
Core::ICore *core = Core::ICore::instance();
|
2009-01-23 19:13:00 +01:00
|
|
|
m_lineNumberFilter = new LineNumberFilter;
|
2008-12-02 12:01:29 +01:00
|
|
|
addAutoReleasedObject(m_lineNumberFilter);
|
|
|
|
|
2009-01-20 15:31:33 +01:00
|
|
|
int contextId = core->uniqueIDManager()->uniqueIdentifier(TextEditor::Constants::C_TEXTEDITOR);
|
2008-12-02 12:01:29 +01:00
|
|
|
QList<int> context = QList<int>() << contextId;
|
2009-01-20 15:31:33 +01:00
|
|
|
Core::ActionManager *am = core->actionManager();
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
// Add shortcut for invoking automatic completion
|
2009-01-20 15:31:33 +01:00
|
|
|
QShortcut *completionShortcut = new QShortcut(core->mainWindow());
|
2008-12-02 12:01:29 +01:00
|
|
|
completionShortcut->setWhatsThis(tr("Triggers a completion in this scope"));
|
|
|
|
// Make sure the shortcut still works when the completion widget is active
|
|
|
|
completionShortcut->setContext(Qt::ApplicationShortcut);
|
2009-01-14 13:17:53 +01:00
|
|
|
Core::Command *command = am->registerShortcut(completionShortcut, Constants::COMPLETE_THIS, context);
|
2008-12-02 12:01:29 +01:00
|
|
|
#ifndef Q_OS_MAC
|
|
|
|
command->setDefaultKeySequence(QKeySequence(tr("Ctrl+Space")));
|
|
|
|
#else
|
|
|
|
command->setDefaultKeySequence(QKeySequence(tr("Meta+Space")));
|
|
|
|
#endif
|
|
|
|
connect(completionShortcut, SIGNAL(activated()), this, SLOT(invokeCompletion()));
|
|
|
|
|
2009-01-20 15:31:33 +01:00
|
|
|
addAutoReleasedObject(new FindInFiles(
|
|
|
|
ExtensionSystem::PluginManager::instance()->getObject<Find::SearchResultWindow>()));
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextEditorPlugin::extensionsInitialized()
|
|
|
|
{
|
|
|
|
m_editorFactory->actionHandler()->initializeActions();
|
2009-04-08 14:32:31 +02:00
|
|
|
|
|
|
|
m_searchResultWindow = ExtensionSystem::PluginManager::instance()->getObject<Find::SearchResultWindow>();
|
|
|
|
|
|
|
|
connect(m_settings, SIGNAL(fontSettingsChanged(TextEditor::FontSettings)),
|
|
|
|
this, SLOT(updateSearchResultsFont(TextEditor::FontSettings)));
|
|
|
|
|
|
|
|
updateSearchResultsFont(m_settings->fontSettings());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
2009-03-17 18:17:51 +01:00
|
|
|
void TextEditorPlugin::initializeEditor(PlainTextEditor *editor)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
// common actions
|
|
|
|
m_editorFactory->actionHandler()->setupActions(editor);
|
|
|
|
|
2009-03-17 18:17:51 +01:00
|
|
|
TextEditorSettings::instance()->initializeEditor(editor);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void TextEditorPlugin::invokeCompletion()
|
|
|
|
{
|
2009-01-21 15:52:34 +01:00
|
|
|
Core::IEditor *iface = Core::EditorManager::instance()->currentEditor();
|
2008-12-02 12:01:29 +01:00
|
|
|
ITextEditor *editor = qobject_cast<ITextEditor *>(iface);
|
|
|
|
if (editor)
|
|
|
|
editor->triggerCompletions();
|
|
|
|
}
|
|
|
|
|
2009-04-08 14:32:31 +02:00
|
|
|
void TextEditorPlugin::updateSearchResultsFont(const FontSettings &settings)
|
|
|
|
{
|
|
|
|
if (m_searchResultWindow)
|
|
|
|
m_searchResultWindow->setTextEditorFont(QFont(settings.family(), settings.fontSize()));
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
Q_EXPORT_PLUGIN(TextEditorPlugin)
|