2008-12-02 12:01:29 +01:00
|
|
|
/***************************************************************************
|
|
|
|
**
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
2009-01-13 19:21:51 +01:00
|
|
|
** Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
|
|
|
** Non-Open Source Usage
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
** Licensees may use this file in accordance with the Qt Beta Version
|
|
|
|
** License Agreement, Agreement version 2.2 provided with the Software or,
|
|
|
|
** alternatively, in accordance with the terms contained in a written
|
2008-12-02 14:17:16 +01:00
|
|
|
** agreement between you and Nokia.
|
|
|
|
**
|
|
|
|
** GNU General Public License Usage
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU General
|
|
|
|
** Public License versions 2.0 or 3.0 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the packaging
|
|
|
|
** of this file. Please review the following information to ensure GNU
|
|
|
|
** General Public Licensing requirements will be met:
|
|
|
|
**
|
|
|
|
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
|
|
|
|
** http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
**
|
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2008-12-02 14:17:16 +01:00
|
|
|
** rights. These rights are described in the Nokia Qt GPL Exception
|
2008-12-16 17:20:00 +01:00
|
|
|
** version 1.3, included in the file GPL_EXCEPTION.txt in this package.
|
2008-12-02 14:17:16 +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"
|
|
|
|
|
|
|
|
#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>
|
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),
|
|
|
|
m_lineNumberFilter(0)
|
|
|
|
{
|
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);
|
|
|
|
|
|
|
|
|
|
|
|
m_settings = new TextEditorSettings(this, this);
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
m_lineNumberFilter = new LineNumberFilter(core->editorManager());
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextEditorPlugin::initializeEditor(TextEditor::PlainTextEditor *editor)
|
|
|
|
{
|
|
|
|
// common actions
|
|
|
|
m_editorFactory->actionHandler()->setupActions(editor);
|
|
|
|
|
|
|
|
// settings
|
|
|
|
connect(m_settings, SIGNAL(fontSettingsChanged(TextEditor::FontSettings)),
|
|
|
|
editor, SLOT(setFontSettings(TextEditor::FontSettings)));
|
|
|
|
connect(m_settings, SIGNAL(tabSettingsChanged(TextEditor::TabSettings)),
|
|
|
|
editor, SLOT(setTabSettings(TextEditor::TabSettings)));
|
|
|
|
connect(m_settings, SIGNAL(storageSettingsChanged(TextEditor::StorageSettings)),
|
|
|
|
editor, SLOT(setStorageSettings(TextEditor::StorageSettings)));
|
|
|
|
connect(m_settings, SIGNAL(displaySettingsChanged(TextEditor::DisplaySettings)),
|
|
|
|
editor, SLOT(setDisplaySettings(TextEditor::DisplaySettings)));
|
|
|
|
|
|
|
|
// tab settings rely on font settings
|
|
|
|
editor->setFontSettings(m_settings->fontSettings());
|
|
|
|
editor->setTabSettings(m_settings->tabSettings());
|
|
|
|
editor->setStorageSettings(m_settings->storageSettings());
|
|
|
|
editor->setDisplaySettings(m_settings->displaySettings());
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Q_EXPORT_PLUGIN(TextEditorPlugin)
|