2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
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
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02: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.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
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"
|
|
|
|
|
|
|
|
|
|
#include "findinfiles.h"
|
2009-05-29 14:14:08 +02:00
|
|
|
#include "findincurrentfile.h"
|
2012-01-23 11:49:14 +01:00
|
|
|
#include "findinopenfiles.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "fontsettings.h"
|
|
|
|
|
#include "linenumberfilter.h"
|
|
|
|
|
#include "texteditorsettings.h"
|
|
|
|
|
#include "textfilewizard.h"
|
|
|
|
|
#include "plaintexteditorfactory.h"
|
|
|
|
|
#include "plaintexteditor.h"
|
2010-05-20 13:56:11 +02:00
|
|
|
#include "manager.h"
|
2010-07-08 11:15:26 +02:00
|
|
|
#include "outlinefactory.h"
|
2010-12-02 17:02:23 +01:00
|
|
|
#include "snippets/plaintextsnippetprovider.h"
|
2013-03-26 11:32:14 +01:00
|
|
|
#include "basetextmarkregistry.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-01-21 18:30:45 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2010-12-09 14:57:22 +01:00
|
|
|
#include <coreplugin/variablemanager.h>
|
2009-01-13 13:39:31 +01:00
|
|
|
#include <coreplugin/actionmanager/actionmanager.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>
|
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
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QtPlugin>
|
|
|
|
|
#include <QShortcut>
|
2012-03-27 14:09:53 +02:00
|
|
|
#include <QDir>
|
|
|
|
|
#include <QTemporaryFile>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
using namespace TextEditor;
|
|
|
|
|
using namespace TextEditor::Internal;
|
|
|
|
|
|
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
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
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_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;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-27 14:09:53 +02:00
|
|
|
static const char wizardCategoryC[] = "U.General";
|
|
|
|
|
|
|
|
|
|
static inline QString wizardDisplayCategory()
|
|
|
|
|
{
|
|
|
|
|
return TextEditorPlugin::tr("General");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// A wizard that quickly creates a scratch buffer
|
|
|
|
|
// based on a temporary file without prompting for a path.
|
|
|
|
|
class ScratchFileWizard : public Core::IWizard
|
|
|
|
|
{
|
2013-04-05 14:33:23 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
2012-03-27 14:09:53 +02:00
|
|
|
public:
|
|
|
|
|
virtual WizardKind kind() const { return FileWizard; }
|
|
|
|
|
virtual QIcon icon() const { return QIcon(); }
|
|
|
|
|
virtual QString description() const
|
|
|
|
|
{ return TextEditorPlugin::tr("Creates a scratch buffer using a temporary file."); }
|
|
|
|
|
virtual QString displayName() const
|
|
|
|
|
{ return TextEditorPlugin::tr("Scratch Buffer"); }
|
|
|
|
|
virtual QString id() const
|
|
|
|
|
{ return QLatin1String("Z.ScratchFile"); }
|
|
|
|
|
virtual QString category() const
|
|
|
|
|
{ return QLatin1String(wizardCategoryC); }
|
|
|
|
|
virtual QString displayCategory() const
|
|
|
|
|
{ return wizardDisplayCategory(); }
|
|
|
|
|
virtual QString descriptionImage() const
|
|
|
|
|
{ return QString(); }
|
|
|
|
|
virtual Core::FeatureSet requiredFeatures() const
|
|
|
|
|
{ return Core::FeatureSet(); }
|
|
|
|
|
virtual WizardFlags flags() const
|
|
|
|
|
{ return Core::IWizard::PlatformIndependent; }
|
2013-04-05 14:33:23 +02:00
|
|
|
virtual void runWizard(const QString &, QWidget *, const QString &, const QVariantMap &)
|
|
|
|
|
{ createFile(); }
|
2012-03-27 14:09:53 +02:00
|
|
|
|
2013-04-05 14:33:23 +02:00
|
|
|
public Q_SLOTS:
|
|
|
|
|
virtual void createFile();
|
2012-03-27 14:09:53 +02:00
|
|
|
};
|
|
|
|
|
|
2013-04-05 14:33:23 +02:00
|
|
|
void ScratchFileWizard::createFile()
|
2012-03-27 14:09:53 +02:00
|
|
|
{
|
|
|
|
|
QString tempPattern = QDir::tempPath();
|
|
|
|
|
if (!tempPattern.endsWith(QLatin1Char('/')))
|
|
|
|
|
tempPattern += QLatin1Char('/');
|
|
|
|
|
tempPattern += QLatin1String("scratchXXXXXX.txt");
|
|
|
|
|
QTemporaryFile file(tempPattern);
|
|
|
|
|
file.setAutoRemove(false);
|
|
|
|
|
QTC_ASSERT(file.open(), return; );
|
|
|
|
|
file.close();
|
2013-05-31 12:52:53 +02:00
|
|
|
Core::EditorManager::openEditor(file.fileName());
|
2012-03-27 14:09:53 +02:00
|
|
|
}
|
|
|
|
|
|
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)
|
2009-01-20 11:52:04 +01:00
|
|
|
|
2012-01-24 15:36:40 +01:00
|
|
|
if (!Core::ICore::mimeDatabase()->addMimeTypes(QLatin1String(":/texteditor/TextEditor.mimetypes.xml"), errorMessage))
|
2008-12-02 12:01:29 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
Core::BaseFileWizardParameters wizardParameters(Core::IWizard::FileWizard);
|
2010-05-12 10:39:49 +02:00
|
|
|
wizardParameters.setDescription(tr("Creates a text file. The default file extension is <tt>.txt</tt>. "
|
|
|
|
|
"You can specify a different extension as part of the filename."));
|
2010-01-07 18:17:24 +01:00
|
|
|
wizardParameters.setDisplayName(tr("Text File"));
|
2012-03-27 14:09:53 +02:00
|
|
|
wizardParameters.setCategory(QLatin1String(wizardCategoryC));
|
|
|
|
|
wizardParameters.setDisplayCategory(wizardDisplayCategory());
|
2012-02-08 17:25:35 +01:00
|
|
|
wizardParameters.setFlags(Core::IWizard::PlatformIndependent);
|
2012-01-28 01:24:37 +01:00
|
|
|
TextFileWizard *wizard = new TextFileWizard(QLatin1String(Constants::C_TEXTEDITOR_MIMETYPE_TEXT),
|
|
|
|
|
QLatin1String("text$"),
|
|
|
|
|
wizardParameters);
|
2008-12-02 12:01:29 +01:00
|
|
|
// Add text file wizard
|
2012-01-28 01:24:37 +01:00
|
|
|
addAutoReleasedObject(wizard);
|
2013-04-05 14:33:23 +02:00
|
|
|
ScratchFileWizard *scratchFile = new ScratchFileWizard;
|
|
|
|
|
addAutoReleasedObject(scratchFile);
|
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
|
|
|
|
|
m_editorFactory = new PlainTextEditorFactory;
|
|
|
|
|
addAutoReleasedObject(m_editorFactory);
|
|
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
|
2010-06-25 17:37:59 +02:00
|
|
|
Core::Context context(TextEditor::Constants::C_TEXTEDITOR);
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
// Add shortcut for invoking automatic completion
|
2012-01-24 15:36:40 +01:00
|
|
|
QShortcut *completionShortcut = new QShortcut(Core::ICore::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);
|
2012-05-24 13:49:06 +02:00
|
|
|
Core::Command *command = Core::ActionManager::registerShortcut(completionShortcut, Constants::COMPLETE_THIS, context);
|
2012-05-23 13:25:51 +02:00
|
|
|
command->setDefaultKeySequence(QKeySequence(Core::UseMacShortcuts ? tr("Meta+Space") : tr("Ctrl+Space")));
|
2008-12-02 12:01:29 +01:00
|
|
|
connect(completionShortcut, SIGNAL(activated()), this, SLOT(invokeCompletion()));
|
|
|
|
|
|
2009-07-15 12:27:02 +02:00
|
|
|
// Add shortcut for invoking quick fix options
|
2012-01-24 15:36:40 +01:00
|
|
|
QShortcut *quickFixShortcut = new QShortcut(Core::ICore::mainWindow());
|
2009-06-08 14:32:42 +02:00
|
|
|
quickFixShortcut->setWhatsThis(tr("Triggers a quick fix in this scope"));
|
|
|
|
|
// Make sure the shortcut still works when the quick fix widget is active
|
|
|
|
|
quickFixShortcut->setContext(Qt::ApplicationShortcut);
|
2012-05-24 13:49:06 +02:00
|
|
|
Core::Command *quickFixCommand = Core::ActionManager::registerShortcut(quickFixShortcut, Constants::QUICKFIX_THIS, context);
|
2009-06-09 13:52:27 +02:00
|
|
|
quickFixCommand->setDefaultKeySequence(QKeySequence(tr("Alt+Return")));
|
2009-06-08 14:32:42 +02:00
|
|
|
connect(quickFixShortcut, SIGNAL(activated()), this, SLOT(invokeQuickFix()));
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2013-04-05 14:33:23 +02:00
|
|
|
// Add shortcut for create a scratch buffer
|
|
|
|
|
QShortcut *scratchBufferShortcut = new QShortcut(Core::ICore::mainWindow());
|
|
|
|
|
scratchBufferShortcut->setWhatsThis(tr("Creates a scratch buffer using a temporary file."));
|
|
|
|
|
scratchBufferShortcut->setContext(Qt::ApplicationShortcut);
|
|
|
|
|
Core::ActionManager::registerShortcut(scratchBufferShortcut, Constants::CREATE_SCRATCH_BUFFER, context);
|
|
|
|
|
connect(scratchBufferShortcut, SIGNAL(activated()), scratchFile, SLOT(createFile()));
|
|
|
|
|
|
2010-05-26 10:58:44 +02:00
|
|
|
// Generic highlighter.
|
|
|
|
|
connect(Core::ICore::instance(), SIGNAL(coreOpened()),
|
|
|
|
|
Manager::instance(), SLOT(registerMimeTypes()));
|
|
|
|
|
|
2010-12-02 17:02:23 +01:00
|
|
|
// Add text snippet provider.
|
|
|
|
|
addAutoReleasedObject(new PlainTextSnippetProvider);
|
|
|
|
|
|
2010-07-08 11:15:26 +02:00
|
|
|
m_outlineFactory = new OutlineFactory;
|
|
|
|
|
addAutoReleasedObject(m_outlineFactory);
|
|
|
|
|
|
2012-01-27 07:52:03 -05:00
|
|
|
// We have to initialize the actions because other plugins that
|
|
|
|
|
// depend upon the texteditorplugin expect that actions will be
|
|
|
|
|
// registered in the action manager at plugin initialization time.
|
|
|
|
|
m_editorFactory->actionHandler()->initializeActions();
|
|
|
|
|
|
2012-02-08 17:21:12 +01:00
|
|
|
m_baseTextMarkRegistry = new BaseTextMarkRegistry(this);
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void TextEditorPlugin::extensionsInitialized()
|
|
|
|
|
{
|
2010-07-12 12:46:50 +02:00
|
|
|
m_searchResultWindow = Find::SearchResultWindow::instance();
|
2010-07-08 11:15:26 +02:00
|
|
|
|
2012-06-18 11:34:15 +02:00
|
|
|
m_outlineFactory->setWidgetFactories(ExtensionSystem::PluginManager::getObjects<TextEditor::IOutlineWidgetFactory>());
|
2009-04-08 14:32:31 +02:00
|
|
|
|
|
|
|
|
connect(m_settings, SIGNAL(fontSettingsChanged(TextEditor::FontSettings)),
|
|
|
|
|
this, SLOT(updateSearchResultsFont(TextEditor::FontSettings)));
|
|
|
|
|
|
|
|
|
|
updateSearchResultsFont(m_settings->fontSettings());
|
2009-05-28 16:42:29 +02:00
|
|
|
|
2011-09-02 11:51:31 +02:00
|
|
|
addAutoReleasedObject(new FindInFiles);
|
|
|
|
|
addAutoReleasedObject(new FindInCurrentFile);
|
2012-01-23 11:49:14 +01:00
|
|
|
addAutoReleasedObject(new FindInOpenFiles);
|
2011-02-10 20:58:17 +01:00
|
|
|
|
2013-03-11 11:52:05 +01:00
|
|
|
Core::VariableManager::registerVariable(kCurrentDocumentSelection,
|
2011-02-10 20:58:17 +01:00
|
|
|
tr("Selected text within the current document."));
|
2013-03-11 11:52:05 +01:00
|
|
|
Core::VariableManager::registerVariable(kCurrentDocumentRow,
|
2011-02-10 20:58:17 +01:00
|
|
|
tr("Line number of the text cursor position in current document (starts with 1)."));
|
2013-03-11 11:52:05 +01:00
|
|
|
Core::VariableManager::registerVariable(kCurrentDocumentColumn,
|
2011-02-10 20:58:17 +01:00
|
|
|
tr("Column number of the text cursor position in current document (starts with 0)."));
|
2013-03-11 11:52:05 +01:00
|
|
|
Core::VariableManager::registerVariable(kCurrentDocumentRowCount,
|
2011-02-10 20:58:17 +01:00
|
|
|
tr("Number of lines visible in current document."));
|
2013-03-11 11:52:05 +01:00
|
|
|
Core::VariableManager::registerVariable(kCurrentDocumentColumnCount,
|
2011-02-10 20:58:17 +01:00
|
|
|
tr("Number of columns visible in current document."));
|
2013-03-11 11:52:05 +01:00
|
|
|
Core::VariableManager::registerVariable(kCurrentDocumentFontSize,
|
2011-02-10 20:58:17 +01:00
|
|
|
tr("Current document's font size in points."));
|
2013-03-11 11:52:05 +01:00
|
|
|
connect(Core::VariableManager::instance(), SIGNAL(variableUpdateRequested(QByteArray)),
|
2011-12-21 11:29:35 +01:00
|
|
|
this, SLOT(updateVariable(QByteArray)));
|
2010-12-09 15:53:43 +01:00
|
|
|
connect(Core::ExternalToolManager::instance(), SIGNAL(replaceSelectionRequested(QString)),
|
|
|
|
|
this, SLOT(updateCurrentSelection(QString)));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2011-02-21 16:02:26 +01:00
|
|
|
void TextEditorPlugin::initializeEditor(PlainTextEditorWidget *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()
|
|
|
|
|
{
|
2012-05-08 09:43:14 +02:00
|
|
|
Core::IEditor *iface = Core::EditorManager::currentEditor();
|
2011-04-15 16:19:23 +02:00
|
|
|
if (BaseTextEditorWidget *w = qobject_cast<BaseTextEditorWidget *>(iface->widget()))
|
|
|
|
|
w->invokeAssist(Completion);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-06-08 14:32:42 +02:00
|
|
|
void TextEditorPlugin::invokeQuickFix()
|
|
|
|
|
{
|
2012-05-08 09:43:14 +02:00
|
|
|
Core::IEditor *iface = Core::EditorManager::currentEditor();
|
2011-04-15 16:19:23 +02:00
|
|
|
if (BaseTextEditorWidget *w = qobject_cast<BaseTextEditorWidget *>(iface->widget()))
|
|
|
|
|
w->invokeAssist(QuickFix);
|
2009-06-08 14:32:42 +02:00
|
|
|
}
|
|
|
|
|
|
2009-04-08 14:32:31 +02:00
|
|
|
void TextEditorPlugin::updateSearchResultsFont(const FontSettings &settings)
|
|
|
|
|
{
|
2012-10-18 08:02:25 +02:00
|
|
|
if (m_searchResultWindow) {
|
2009-11-30 19:09:04 +01:00
|
|
|
m_searchResultWindow->setTextEditorFont(QFont(settings.family(),
|
2012-10-18 08:02:25 +02:00
|
|
|
settings.fontSize() * settings.fontZoom() / 100),
|
|
|
|
|
settings.formatFor(TextEditor::C_TEXT).foreground(),
|
|
|
|
|
settings.formatFor(TextEditor::C_TEXT).background(),
|
|
|
|
|
settings.formatFor(TextEditor::C_SEARCH_RESULT).foreground(),
|
|
|
|
|
settings.formatFor(TextEditor::C_SEARCH_RESULT).background());
|
|
|
|
|
}
|
2009-04-08 14:32:31 +02:00
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2011-12-21 11:29:35 +01:00
|
|
|
void TextEditorPlugin::updateVariable(const QByteArray &variable)
|
2010-12-09 14:57:22 +01:00
|
|
|
{
|
2011-12-21 11:29:35 +01:00
|
|
|
static QSet<QByteArray> variables = QSet<QByteArray>()
|
|
|
|
|
<< kCurrentDocumentSelection
|
|
|
|
|
<< kCurrentDocumentRow
|
|
|
|
|
<< kCurrentDocumentColumn
|
|
|
|
|
<< kCurrentDocumentRowCount
|
|
|
|
|
<< kCurrentDocumentColumnCount
|
|
|
|
|
<< kCurrentDocumentFontSize;
|
2010-12-13 15:17:33 +01:00
|
|
|
if (variables.contains(variable)) {
|
|
|
|
|
QString value;
|
2012-05-08 09:43:14 +02:00
|
|
|
Core::IEditor *iface = Core::EditorManager::currentEditor();
|
2010-12-09 14:57:22 +01:00
|
|
|
ITextEditor *editor = qobject_cast<ITextEditor *>(iface);
|
|
|
|
|
if (editor) {
|
2011-12-21 11:29:35 +01:00
|
|
|
if (variable == kCurrentDocumentSelection) {
|
2010-12-13 15:17:33 +01:00
|
|
|
value = editor->selectedText();
|
|
|
|
|
value.replace(QChar::ParagraphSeparator, QLatin1String("\n"));
|
2011-12-21 11:29:35 +01:00
|
|
|
} else if (variable == kCurrentDocumentRow) {
|
2010-12-13 15:17:33 +01:00
|
|
|
value = QString::number(editor->currentLine());
|
2011-12-21 11:29:35 +01:00
|
|
|
} else if (variable == kCurrentDocumentColumn) {
|
2010-12-13 15:17:33 +01:00
|
|
|
value = QString::number(editor->currentColumn());
|
2011-12-21 11:29:35 +01:00
|
|
|
} else if (variable == kCurrentDocumentRowCount) {
|
2010-12-13 15:17:33 +01:00
|
|
|
value = QString::number(editor->rowCount());
|
2011-12-21 11:29:35 +01:00
|
|
|
} else if (variable == kCurrentDocumentColumnCount) {
|
2010-12-13 15:17:33 +01:00
|
|
|
value = QString::number(editor->columnCount());
|
2011-12-21 11:29:35 +01:00
|
|
|
} else if (variable == kCurrentDocumentFontSize) {
|
2010-12-13 15:17:33 +01:00
|
|
|
value = QString::number(editor->widget()->font().pointSize());
|
|
|
|
|
}
|
2010-12-09 14:57:22 +01:00
|
|
|
}
|
2013-03-11 11:52:05 +01:00
|
|
|
Core::VariableManager::insert(variable, value);
|
2010-12-09 14:57:22 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-09 15:53:43 +01:00
|
|
|
void TextEditorPlugin::updateCurrentSelection(const QString &text)
|
|
|
|
|
{
|
2013-08-08 08:43:04 +02:00
|
|
|
if (ITextEditor *editor = qobject_cast<ITextEditor *>(Core::EditorManager::currentEditor())) {
|
|
|
|
|
const int pos = editor->position();
|
2010-12-09 15:53:43 +01:00
|
|
|
int anchor = editor->position(ITextEditor::Anchor);
|
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
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
Q_EXPORT_PLUGIN(TextEditorPlugin)
|
2013-04-05 14:33:23 +02:00
|
|
|
|
|
|
|
|
#include "texteditorplugin.moc"
|