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 "texteditorplugin.h"
|
|
|
|
|
|
2014-09-26 09:14:03 +02:00
|
|
|
#include "texteditor.h"
|
2009-05-29 14:14:08 +02:00
|
|
|
#include "findincurrentfile.h"
|
2014-09-02 12:54:28 +02:00
|
|
|
#include "findinfiles.h"
|
2012-01-23 11:49:14 +01:00
|
|
|
#include "findinopenfiles.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "fontsettings.h"
|
2014-09-02 12:54:28 +02:00
|
|
|
#include "generichighlighter/manager.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "linenumberfilter.h"
|
2010-07-08 11:15:26 +02:00
|
|
|
#include "outlinefactory.h"
|
2014-09-02 12:54:28 +02:00
|
|
|
#include "plaintexteditorfactory.h"
|
2017-04-24 15:52:04 +02:00
|
|
|
#include "snippets/snippetprovider.h"
|
2014-09-02 12:54:28 +02:00
|
|
|
#include "texteditoractionhandler.h"
|
|
|
|
|
#include "texteditorsettings.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-01-21 18:30:45 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2009-01-13 13:39:31 +01:00
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
2015-02-26 13:38:54 +01:00
|
|
|
#include <coreplugin/actionmanager/command.h>
|
2011-08-17 12:54:58 +02:00
|
|
|
#include <coreplugin/externaltoolmanager.h>
|
2009-01-19 12:39:20 +01:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2013-07-03 18:23:03 +02:00
|
|
|
|
|
|
|
|
#include <texteditor/icodestylepreferences.h>
|
|
|
|
|
#include <texteditor/tabsettings.h>
|
|
|
|
|
|
2008-12-09 15:25:01 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2014-10-13 18:49:44 +02:00
|
|
|
#include <utils/macroexpander.h>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QtPlugin>
|
2014-02-28 17:33:48 +01:00
|
|
|
#include <QAction>
|
2012-03-27 14:09:53 +02:00
|
|
|
#include <QDir>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2014-09-02 12:54:28 +02:00
|
|
|
using namespace Core;
|
|
|
|
|
|
|
|
|
|
namespace TextEditor {
|
|
|
|
|
namespace Internal {
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-05-10 15:19:38 +02:00
|
|
|
static const char kCurrentDocumentSelection[] = "CurrentDocument:Selection";
|
|
|
|
|
static const char kCurrentDocumentRow[] = "CurrentDocument:Row";
|
|
|
|
|
static const char kCurrentDocumentColumn[] = "CurrentDocument:Column";
|
|
|
|
|
static const char kCurrentDocumentRowCount[] = "CurrentDocument:RowCount";
|
|
|
|
|
static const char kCurrentDocumentColumnCount[] = "CurrentDocument:ColumnCount";
|
|
|
|
|
static const char kCurrentDocumentFontSize[] = "CurrentDocument:FontSize";
|
2011-02-10 20:58:17 +01:00
|
|
|
|
2014-06-24 17:13:26 +02:00
|
|
|
static TextEditorPlugin *m_instance = 0;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-01-20 15:31:33 +01:00
|
|
|
TextEditorPlugin::TextEditorPlugin()
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-24 15:52:04 +02:00
|
|
|
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-07-13 17:35:17 +02:00
|
|
|
Q_UNUSED(arguments)
|
2015-02-04 09:32:46 +01:00
|
|
|
Q_UNUSED(errorMessage)
|
2008-12-02 12:01:29 +01:00
|
|
|
|
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
|
2014-08-27 11:19:04 +02:00
|
|
|
addAutoReleasedObject(new PlainTextEditorFactory);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
// Goto line functionality for quick open
|
2009-01-23 19:13:00 +01:00
|
|
|
m_lineNumberFilter = new LineNumberFilter;
|
2008-12-02 12:01:29 +01:00
|
|
|
addAutoReleasedObject(m_lineNumberFilter);
|
|
|
|
|
|
2014-09-02 12:54:28 +02:00
|
|
|
Context context(TextEditor::Constants::C_TEXTEDITOR);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
// Add shortcut for invoking automatic completion
|
2014-02-28 17:33:48 +01:00
|
|
|
QAction *completionAction = new QAction(tr("Trigger Completion"), this);
|
2014-09-02 12:54:28 +02:00
|
|
|
Command *command = ActionManager::registerAction(completionAction, Constants::COMPLETE_THIS, context);
|
|
|
|
|
command->setDefaultKeySequence(QKeySequence(UseMacShortcuts ? tr("Meta+Space") : tr("Ctrl+Space")));
|
|
|
|
|
connect(completionAction, &QAction::triggered, []() {
|
|
|
|
|
if (BaseTextEditor *editor = BaseTextEditor::currentTextEditor())
|
|
|
|
|
editor->editorWidget()->invokeAssist(Completion);
|
|
|
|
|
});
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-07-15 12:27:02 +02:00
|
|
|
// Add shortcut for invoking quick fix options
|
2014-07-16 10:55:36 +02:00
|
|
|
QAction *quickFixAction = new QAction(tr("Trigger Refactoring Action"), this);
|
2014-09-02 12:54:28 +02:00
|
|
|
Command *quickFixCommand = ActionManager::registerAction(quickFixAction, Constants::QUICKFIX_THIS, context);
|
2009-06-09 13:52:27 +02:00
|
|
|
quickFixCommand->setDefaultKeySequence(QKeySequence(tr("Alt+Return")));
|
2014-09-02 12:54:28 +02:00
|
|
|
connect(quickFixAction, &QAction::triggered, []() {
|
|
|
|
|
if (BaseTextEditor *editor = BaseTextEditor::currentTextEditor())
|
|
|
|
|
editor->editorWidget()->invokeAssist(QuickFix);
|
|
|
|
|
});
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2017-06-01 17:15:35 +02:00
|
|
|
QAction *showContextMenuAction = new QAction(tr("Show Context Menu"), this);
|
|
|
|
|
ActionManager::registerAction(showContextMenuAction,
|
|
|
|
|
Constants::SHOWCONTEXTMENU,
|
|
|
|
|
context);
|
|
|
|
|
connect(showContextMenuAction, &QAction::triggered, []() {
|
|
|
|
|
if (BaseTextEditor *editor = BaseTextEditor::currentTextEditor())
|
|
|
|
|
editor->editorWidget()->showContextMenu();
|
|
|
|
|
});
|
|
|
|
|
|
2010-05-26 10:58:44 +02:00
|
|
|
// Generic highlighter.
|
2015-02-03 16:47:03 +01:00
|
|
|
connect(ICore::instance(), &ICore::coreOpened, Manager::instance(), &Manager::registerHighlightingFiles);
|
2010-05-26 10:58:44 +02:00
|
|
|
|
2010-12-02 17:02:23 +01:00
|
|
|
// Add text snippet provider.
|
2017-04-24 15:52:04 +02:00
|
|
|
SnippetProvider::registerGroup(Constants::TEXT_SNIPPET_GROUP_ID,
|
|
|
|
|
tr("Text", "SnippetProvider"));
|
2010-12-02 17:02:23 +01:00
|
|
|
|
2010-07-08 11:15:26 +02:00
|
|
|
m_outlineFactory = new OutlineFactory;
|
|
|
|
|
addAutoReleasedObject(m_outlineFactory);
|
|
|
|
|
|
2016-01-28 23:37:10 +02:00
|
|
|
addAutoReleasedObject(new FindInFiles);
|
|
|
|
|
addAutoReleasedObject(new FindInCurrentFile);
|
|
|
|
|
addAutoReleasedObject(new FindInOpenFiles);
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextEditorPlugin::extensionsInitialized()
|
|
|
|
|
{
|
2014-09-02 12:54:28 +02:00
|
|
|
connect(m_settings, &TextEditorSettings::fontSettingsChanged,
|
|
|
|
|
this, &TextEditorPlugin::updateSearchResultsFont);
|
2009-04-08 14:32:31 +02:00
|
|
|
|
|
|
|
|
updateSearchResultsFont(m_settings->fontSettings());
|
2009-05-28 16:42:29 +02:00
|
|
|
|
2013-07-03 18:23:03 +02:00
|
|
|
connect(m_settings->codeStyle(), &ICodeStylePreferences::currentTabSettingsChanged,
|
|
|
|
|
this, &TextEditorPlugin::updateSearchResultsTabWidth);
|
|
|
|
|
|
|
|
|
|
updateSearchResultsTabWidth(m_settings->codeStyle()->currentTabSettings());
|
|
|
|
|
|
2014-10-13 18:49:44 +02:00
|
|
|
Utils::MacroExpander *expander = Utils::globalMacroExpander();
|
2014-10-13 12:49:05 +02:00
|
|
|
|
|
|
|
|
expander->registerVariable(kCurrentDocumentSelection,
|
2014-06-23 16:57:56 +02:00
|
|
|
tr("Selected text within the current document."),
|
|
|
|
|
[]() -> QString {
|
|
|
|
|
QString value;
|
2014-07-23 19:10:38 +02:00
|
|
|
if (BaseTextEditor *editor = BaseTextEditor::currentTextEditor()) {
|
2014-06-23 16:57:56 +02:00
|
|
|
value = editor->selectedText();
|
|
|
|
|
value.replace(QChar::ParagraphSeparator, QLatin1String("\n"));
|
|
|
|
|
}
|
|
|
|
|
return value;
|
|
|
|
|
});
|
|
|
|
|
|
2014-10-13 12:49:05 +02:00
|
|
|
expander->registerIntVariable(kCurrentDocumentRow,
|
2014-06-23 16:57:56 +02:00
|
|
|
tr("Line number of the text cursor position in current document (starts with 1)."),
|
|
|
|
|
[]() -> int {
|
2014-07-23 19:10:38 +02:00
|
|
|
BaseTextEditor *editor = BaseTextEditor::currentTextEditor();
|
2014-06-23 16:57:56 +02:00
|
|
|
return editor ? editor->currentLine() : 0;
|
|
|
|
|
});
|
|
|
|
|
|
2014-10-13 12:49:05 +02:00
|
|
|
expander->registerIntVariable(kCurrentDocumentColumn,
|
2014-06-23 16:57:56 +02:00
|
|
|
tr("Column number of the text cursor position in current document (starts with 0)."),
|
|
|
|
|
[]() -> int {
|
2014-07-23 19:10:38 +02:00
|
|
|
BaseTextEditor *editor = BaseTextEditor::currentTextEditor();
|
2014-06-23 16:57:56 +02:00
|
|
|
return editor ? editor->currentColumn() : 0;
|
|
|
|
|
});
|
|
|
|
|
|
2014-10-13 12:49:05 +02:00
|
|
|
expander->registerIntVariable(kCurrentDocumentRowCount,
|
2014-06-23 16:57:56 +02:00
|
|
|
tr("Number of lines visible in current document."),
|
|
|
|
|
[]() -> int {
|
2014-07-23 19:10:38 +02:00
|
|
|
BaseTextEditor *editor = BaseTextEditor::currentTextEditor();
|
2014-06-23 16:57:56 +02:00
|
|
|
return editor ? editor->rowCount() : 0;
|
|
|
|
|
});
|
|
|
|
|
|
2014-10-13 12:49:05 +02:00
|
|
|
expander->registerIntVariable(kCurrentDocumentColumnCount,
|
2014-06-23 16:57:56 +02:00
|
|
|
tr("Number of columns visible in current document."),
|
|
|
|
|
[]() -> int {
|
2014-07-23 19:10:38 +02:00
|
|
|
BaseTextEditor *editor = BaseTextEditor::currentTextEditor();
|
2014-06-23 16:57:56 +02:00
|
|
|
return editor ? editor->columnCount() : 0;
|
|
|
|
|
});
|
|
|
|
|
|
2014-10-13 12:49:05 +02:00
|
|
|
expander->registerIntVariable(kCurrentDocumentFontSize,
|
2014-06-23 16:57:56 +02:00
|
|
|
tr("Current document's font size in points."),
|
|
|
|
|
[]() -> int {
|
2014-07-23 19:10:38 +02:00
|
|
|
BaseTextEditor *editor = BaseTextEditor::currentTextEditor();
|
2014-06-23 16:57:56 +02:00
|
|
|
return editor ? editor->widget()->font().pointSize() : 0;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
2015-12-13 01:18:33 +02:00
|
|
|
connect(ExternalToolManager::instance(), &ExternalToolManager::replaceSelectionRequested,
|
|
|
|
|
this, &TextEditorPlugin::updateCurrentSelection);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2014-06-24 17:13:26 +02:00
|
|
|
LineNumberFilter *TextEditorPlugin::lineNumberFilter()
|
|
|
|
|
{
|
|
|
|
|
return m_instance->m_lineNumberFilter;
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-08 14:32:31 +02:00
|
|
|
void TextEditorPlugin::updateSearchResultsFont(const FontSettings &settings)
|
|
|
|
|
{
|
2014-09-02 12:54:28 +02:00
|
|
|
if (auto window = SearchResultWindow::instance()) {
|
|
|
|
|
window->setTextEditorFont(QFont(settings.family(), settings.fontSize() * settings.fontZoom() / 100),
|
2014-09-30 17:45:48 +02:00
|
|
|
settings.formatFor(C_TEXT).foreground(),
|
|
|
|
|
settings.formatFor(C_TEXT).background(),
|
|
|
|
|
settings.formatFor(C_SEARCH_RESULT).foreground(),
|
|
|
|
|
settings.formatFor(C_SEARCH_RESULT).background());
|
2012-10-18 08:02:25 +02:00
|
|
|
}
|
2009-04-08 14:32:31 +02:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-07-03 18:23:03 +02:00
|
|
|
void TextEditorPlugin::updateSearchResultsTabWidth(const TabSettings &tabSettings)
|
|
|
|
|
{
|
|
|
|
|
if (auto window = SearchResultWindow::instance())
|
|
|
|
|
window->setTabWidth(tabSettings.m_tabSize);
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-09 15:53:43 +01:00
|
|
|
void TextEditorPlugin::updateCurrentSelection(const QString &text)
|
|
|
|
|
{
|
2014-09-30 17:45:48 +02:00
|
|
|
if (BaseTextEditor *editor = BaseTextEditor::currentTextEditor()) {
|
2013-08-08 08:43:04 +02:00
|
|
|
const int pos = editor->position();
|
2014-09-30 17:45:48 +02:00
|
|
|
int anchor = editor->position(AnchorPosition);
|
2011-02-28 14:48:42 +01:00
|
|
|
if (anchor < 0) // no selection
|
|
|
|
|
anchor = pos;
|
2013-08-08 08:43:04 +02:00
|
|
|
int selectionLength = pos - anchor;
|
|
|
|
|
const bool selectionInTextDirection = selectionLength >= 0;
|
|
|
|
|
if (!selectionInTextDirection)
|
2010-12-09 15:53:43 +01:00
|
|
|
selectionLength = -selectionLength;
|
2013-08-08 08:43:04 +02:00
|
|
|
const int start = qMin(pos, anchor);
|
2011-02-21 16:02:26 +01:00
|
|
|
editor->setCursorPosition(start);
|
2010-12-09 15:53:43 +01:00
|
|
|
editor->replace(selectionLength, text);
|
2013-08-08 08:43:04 +02:00
|
|
|
const int replacementEnd = editor->position();
|
|
|
|
|
editor->setCursorPosition(selectionInTextDirection ? start : replacementEnd);
|
|
|
|
|
editor->select(selectionInTextDirection ? replacementEnd : start);
|
2010-12-09 15:53:43 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-02 12:54:28 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace TextEditor
|