2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-19 12:20:04 +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-19 12:20:04 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-19 12:20:04 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-19 12:20:04 +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-19 12:20:04 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-19 12:20:04 +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-19 12:20:04 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
2008-12-19 12:20:04 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-19 12:20:04 +01:00
|
|
|
|
|
|
|
|
#include "fakevimplugin.h"
|
|
|
|
|
|
2009-01-09 16:54:06 +01:00
|
|
|
#include "fakevimhandler.h"
|
2009-03-30 12:40:08 +02:00
|
|
|
#include "ui_fakevimoptions.h"
|
|
|
|
|
|
2008-12-19 12:20:04 +01:00
|
|
|
|
2009-01-13 13:39:31 +01:00
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
2008-12-19 12:20:04 +01:00
|
|
|
#include <coreplugin/coreconstants.h>
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
2009-01-15 15:27:14 +01:00
|
|
|
#include <coreplugin/filemanager.h>
|
2008-12-19 12:20:04 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2009-01-15 15:27:14 +01:00
|
|
|
#include <coreplugin/ifile.h>
|
2009-03-30 12:40:08 +02:00
|
|
|
#include <coreplugin/dialogs/ioptionspage.h>
|
2008-12-19 12:20:04 +01:00
|
|
|
#include <coreplugin/messagemanager.h>
|
|
|
|
|
#include <coreplugin/modemanager.h>
|
|
|
|
|
#include <coreplugin/uniqueidmanager.h>
|
|
|
|
|
|
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
|
|
|
#include <projectexplorer/session.h>
|
|
|
|
|
|
|
|
|
|
#include <texteditor/basetexteditor.h>
|
|
|
|
|
#include <texteditor/basetextmark.h>
|
2009-03-25 14:52:13 +01:00
|
|
|
#include <texteditor/completionsupport.h>
|
2008-12-19 12:20:04 +01:00
|
|
|
#include <texteditor/itexteditor.h>
|
|
|
|
|
#include <texteditor/texteditorconstants.h>
|
2009-01-09 17:31:20 +01:00
|
|
|
#include <texteditor/tabsettings.h>
|
|
|
|
|
#include <texteditor/texteditorsettings.h>
|
2009-02-03 10:39:57 +01:00
|
|
|
#include <texteditor/textblockiterator.h>
|
2008-12-19 12:20:04 +01:00
|
|
|
|
2009-05-29 07:45:35 +10:00
|
|
|
#include <find/textfindconstants.h>
|
|
|
|
|
|
2008-12-19 12:20:04 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2009-03-30 12:40:08 +02:00
|
|
|
#include <utils/savedaction.h>
|
2008-12-19 12:20:04 +01:00
|
|
|
|
2009-02-03 10:39:57 +01:00
|
|
|
#include <indenter.h>
|
|
|
|
|
|
2008-12-19 12:20:04 +01:00
|
|
|
#include <QtCore/QDebug>
|
2009-01-13 16:38:05 +01:00
|
|
|
#include <QtCore/QtPlugin>
|
2008-12-19 12:20:04 +01:00
|
|
|
#include <QtCore/QObject>
|
|
|
|
|
#include <QtCore/QPoint>
|
|
|
|
|
#include <QtCore/QSettings>
|
2009-11-24 15:05:02 +01:00
|
|
|
#include <QtCore/QTextStream>
|
2008-12-19 12:20:04 +01:00
|
|
|
|
2009-01-09 15:36:02 +01:00
|
|
|
#include <QtGui/QMessageBox>
|
2008-12-19 12:20:04 +01:00
|
|
|
#include <QtGui/QPlainTextEdit>
|
|
|
|
|
#include <QtGui/QTextBlock>
|
|
|
|
|
#include <QtGui/QTextCursor>
|
2009-01-13 17:41:23 +01:00
|
|
|
#include <QtGui/QTextEdit>
|
2008-12-19 12:20:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
using namespace FakeVim::Internal;
|
|
|
|
|
using namespace TextEditor;
|
|
|
|
|
using namespace Core;
|
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace FakeVim {
|
|
|
|
|
namespace Constants {
|
|
|
|
|
|
2009-02-20 15:58:14 +01:00
|
|
|
const char * const INSTALL_HANDLER = "TextEditor.FakeVimHandler";
|
|
|
|
|
const char * const MINI_BUFFER = "TextEditor.FakeVimMiniBuffer";
|
2008-12-19 12:20:04 +01:00
|
|
|
const char * const INSTALL_KEY = "Alt+V,Alt+V";
|
2009-11-27 16:12:12 +01:00
|
|
|
const char * const SETTINGS_CATEGORY = "D.FakeVim";
|
|
|
|
|
const char * const SETTINGS_ID = "General";
|
2008-12-19 12:20:04 +01:00
|
|
|
|
|
|
|
|
} // namespace Constants
|
|
|
|
|
} // namespace FakeVim
|
|
|
|
|
|
|
|
|
|
|
2009-03-30 12:40:08 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// FakeVimOptionPage
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
namespace FakeVim {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class FakeVimOptionPage : public Core::IOptionsPage
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
FakeVimOptionPage() {}
|
|
|
|
|
|
|
|
|
|
// IOptionsPage
|
2009-11-27 16:12:12 +01:00
|
|
|
QString id() const { return QLatin1String(Constants::SETTINGS_ID); }
|
2009-03-30 12:40:08 +02:00
|
|
|
QString trName() const { return tr("General"); }
|
2009-11-27 16:12:12 +01:00
|
|
|
QString category() const { return QLatin1String(Constants::SETTINGS_CATEGORY); }
|
2009-03-30 12:40:08 +02:00
|
|
|
QString trCategory() const { return tr("FakeVim"); }
|
|
|
|
|
|
|
|
|
|
QWidget *createPage(QWidget *parent);
|
|
|
|
|
void apply() { m_group.apply(ICore::instance()->settings()); }
|
|
|
|
|
void finish() { m_group.finish(); }
|
2009-11-24 15:05:02 +01:00
|
|
|
virtual bool matches(const QString &) const;
|
2009-03-30 12:40:08 +02:00
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void copyTextEditorSettings();
|
|
|
|
|
void setQtStyle();
|
|
|
|
|
void setPlainStyle();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
friend class DebuggerPlugin;
|
|
|
|
|
Ui::FakeVimOptionPage m_ui;
|
2009-11-24 15:05:02 +01:00
|
|
|
QString m_searchKeywords;
|
2009-10-05 11:06:05 +02:00
|
|
|
Utils::SavedActionSet m_group;
|
2009-03-30 12:40:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
QWidget *FakeVimOptionPage::createPage(QWidget *parent)
|
|
|
|
|
{
|
|
|
|
|
QWidget *w = new QWidget(parent);
|
|
|
|
|
m_ui.setupUi(w);
|
|
|
|
|
|
|
|
|
|
m_group.clear();
|
|
|
|
|
m_group.insert(theFakeVimSetting(ConfigUseFakeVim),
|
2009-11-24 15:05:02 +01:00
|
|
|
m_ui.groupBox);
|
2009-03-30 12:40:08 +02:00
|
|
|
|
|
|
|
|
m_group.insert(theFakeVimSetting(ConfigExpandTab),
|
|
|
|
|
m_ui.checkBoxExpandTab);
|
|
|
|
|
m_group.insert(theFakeVimSetting(ConfigHlSearch),
|
|
|
|
|
m_ui.checkBoxHlSearch);
|
|
|
|
|
m_group.insert(theFakeVimSetting(ConfigShiftWidth),
|
|
|
|
|
m_ui.lineEditShiftWidth);
|
|
|
|
|
|
|
|
|
|
m_group.insert(theFakeVimSetting(ConfigSmartTab),
|
|
|
|
|
m_ui.checkBoxSmartTab);
|
|
|
|
|
m_group.insert(theFakeVimSetting(ConfigStartOfLine),
|
|
|
|
|
m_ui.checkBoxStartOfLine);
|
|
|
|
|
m_group.insert(theFakeVimSetting(ConfigTabStop),
|
|
|
|
|
m_ui.lineEditTabStop);
|
|
|
|
|
m_group.insert(theFakeVimSetting(ConfigBackspace),
|
|
|
|
|
m_ui.lineEditBackspace);
|
|
|
|
|
|
|
|
|
|
m_group.insert(theFakeVimSetting(ConfigAutoIndent),
|
|
|
|
|
m_ui.checkBoxAutoIndent);
|
2010-01-06 14:57:46 +01:00
|
|
|
m_group.insert(theFakeVimSetting(ConfigSmartIndent),
|
|
|
|
|
m_ui.checkBoxSmartIndent);
|
2009-06-02 11:56:58 +02:00
|
|
|
m_group.insert(theFakeVimSetting(ConfigIncSearch),
|
|
|
|
|
m_ui.checkBoxIncSearch);
|
2009-03-30 12:40:08 +02:00
|
|
|
|
|
|
|
|
connect(m_ui.pushButtonCopyTextEditorSettings, SIGNAL(clicked()),
|
2009-03-30 13:59:47 +02:00
|
|
|
this, SLOT(copyTextEditorSettings()));
|
2009-03-30 12:40:08 +02:00
|
|
|
connect(m_ui.pushButtonSetQtStyle, SIGNAL(clicked()),
|
|
|
|
|
this, SLOT(setQtStyle()));
|
|
|
|
|
connect(m_ui.pushButtonSetPlainStyle, SIGNAL(clicked()),
|
|
|
|
|
this, SLOT(setPlainStyle()));
|
2009-11-24 15:05:02 +01:00
|
|
|
if (m_searchKeywords.isEmpty()) {
|
|
|
|
|
QTextStream(&m_searchKeywords)
|
|
|
|
|
<< ' ' << m_ui.labelAutoIndent->text() << ' ' << m_ui.labelExpandTab->text()
|
2010-01-06 14:57:46 +01:00
|
|
|
<< ' ' << m_ui.labelSmartIndent->text() << ' ' << m_ui.labelExpandTab->text()
|
2009-11-24 15:05:02 +01:00
|
|
|
<< ' ' << m_ui.labelHlSearch->text() << ' ' << m_ui.labelIncSearch->text()
|
|
|
|
|
<< ' ' << m_ui.labelShiftWidth->text() << ' ' << m_ui.labelSmartTab->text()
|
|
|
|
|
<< ' ' << m_ui.labelStartOfLine->text() << ' ' << m_ui.tabulatorLabel->text()
|
|
|
|
|
<< ' ' << m_ui.labelBackspace->text();
|
|
|
|
|
m_searchKeywords.remove(QLatin1Char('&'));
|
|
|
|
|
}
|
2009-03-30 12:40:08 +02:00
|
|
|
return w;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeVimOptionPage::copyTextEditorSettings()
|
|
|
|
|
{
|
|
|
|
|
TextEditor::TabSettings ts =
|
|
|
|
|
TextEditor::TextEditorSettings::instance()->tabSettings();
|
|
|
|
|
|
|
|
|
|
m_ui.checkBoxExpandTab->setChecked(ts.m_spacesForTabs);
|
|
|
|
|
m_ui.lineEditTabStop->setText(QString::number(ts.m_tabSize));
|
|
|
|
|
m_ui.lineEditShiftWidth->setText(QString::number(ts.m_indentSize));
|
|
|
|
|
m_ui.checkBoxSmartTab->setChecked(ts.m_smartBackspace);
|
2010-01-06 14:57:46 +01:00
|
|
|
m_ui.checkBoxAutoIndent->setChecked(true);
|
|
|
|
|
m_ui.checkBoxSmartIndent->setChecked(ts.m_autoIndent);
|
2009-06-02 11:56:58 +02:00
|
|
|
// FIXME: Not present in core
|
|
|
|
|
//m_ui.checkBoxIncSearch->setChecked(ts.m_incSearch);
|
2009-03-30 12:40:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeVimOptionPage::setQtStyle()
|
|
|
|
|
{
|
|
|
|
|
m_ui.checkBoxExpandTab->setChecked(true);
|
2009-11-24 15:05:02 +01:00
|
|
|
const QString four = QString(QLatin1Char('4'));
|
|
|
|
|
m_ui.lineEditTabStop->setText(four);
|
|
|
|
|
m_ui.lineEditShiftWidth->setText(four);
|
2009-03-30 12:40:08 +02:00
|
|
|
m_ui.checkBoxSmartTab->setChecked(true);
|
|
|
|
|
m_ui.checkBoxAutoIndent->setChecked(true);
|
2010-01-06 14:57:46 +01:00
|
|
|
m_ui.checkBoxSmartIndent->setChecked(true);
|
2009-06-02 11:56:58 +02:00
|
|
|
m_ui.checkBoxIncSearch->setChecked(true);
|
2009-11-24 15:05:02 +01:00
|
|
|
m_ui.lineEditBackspace->setText(QLatin1String("indent,eol,start"));
|
2009-03-30 12:40:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeVimOptionPage::setPlainStyle()
|
|
|
|
|
{
|
|
|
|
|
m_ui.checkBoxExpandTab->setChecked(false);
|
2009-11-24 15:05:02 +01:00
|
|
|
const QString eight = QString(QLatin1Char('4'));
|
|
|
|
|
m_ui.lineEditTabStop->setText(eight);
|
|
|
|
|
m_ui.lineEditShiftWidth->setText(eight);
|
2009-03-30 12:40:08 +02:00
|
|
|
m_ui.checkBoxSmartTab->setChecked(false);
|
|
|
|
|
m_ui.checkBoxAutoIndent->setChecked(false);
|
2010-01-06 14:57:46 +01:00
|
|
|
m_ui.checkBoxSmartIndent->setChecked(false);
|
2009-06-02 11:56:58 +02:00
|
|
|
m_ui.checkBoxIncSearch->setChecked(false);
|
2009-03-30 13:59:47 +02:00
|
|
|
m_ui.lineEditBackspace->setText(QString());
|
2009-03-30 12:40:08 +02:00
|
|
|
}
|
|
|
|
|
|
2009-11-24 15:05:02 +01:00
|
|
|
bool FakeVimOptionPage::matches(const QString &s) const
|
|
|
|
|
{
|
|
|
|
|
return m_searchKeywords.contains(s, Qt::CaseInsensitive);
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-30 12:40:08 +02:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace FakeVim
|
|
|
|
|
|
|
|
|
|
|
2008-12-19 12:20:04 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2009-01-13 16:38:05 +01:00
|
|
|
// FakeVimPluginPrivate
|
2008-12-19 12:20:04 +01:00
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
namespace FakeVim {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class FakeVimPluginPrivate : public QObject
|
2008-12-19 12:20:04 +01:00
|
|
|
{
|
2009-01-13 16:38:05 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
FakeVimPluginPrivate(FakeVimPlugin *);
|
|
|
|
|
~FakeVimPluginPrivate();
|
|
|
|
|
friend class FakeVimPlugin;
|
|
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
bool initialize();
|
2009-01-13 16:38:05 +01:00
|
|
|
void shutdown();
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void editorOpened(Core::IEditor *);
|
|
|
|
|
void editorAboutToClose(Core::IEditor *);
|
2009-01-23 15:12:04 +01:00
|
|
|
|
2009-03-30 16:54:25 +02:00
|
|
|
void setUseFakeVim(const QVariant &value);
|
2009-03-31 11:44:18 +02:00
|
|
|
void quitFakeVim();
|
2009-03-25 13:31:30 +01:00
|
|
|
void triggerCompletions();
|
2009-04-03 16:33:28 +02:00
|
|
|
void windowCommand(int key);
|
2009-05-29 07:45:35 +10:00
|
|
|
void find(bool reverse);
|
2009-05-29 11:34:11 +10:00
|
|
|
void findNext(bool reverse);
|
2009-03-30 14:20:46 +02:00
|
|
|
void showSettingsDialog();
|
2009-01-23 15:12:04 +01:00
|
|
|
|
|
|
|
|
void showCommandBuffer(const QString &contents);
|
|
|
|
|
void showExtraInformation(const QString &msg);
|
|
|
|
|
void changeSelection(const QList<QTextEdit::ExtraSelection> &selections);
|
|
|
|
|
void writeFile(bool *handled, const QString &fileName, const QString &contents);
|
2009-01-28 22:03:51 +01:00
|
|
|
void moveToMatchingParenthesis(bool *moved, bool *forward, QTextCursor *cursor);
|
2010-01-06 14:57:46 +01:00
|
|
|
void checkForElectricCharacter(bool *result, QChar c);
|
2009-03-06 13:03:33 +01:00
|
|
|
void indentRegion(int *amount, int beginLine, int endLine, QChar typedChar);
|
2009-06-15 15:14:16 +02:00
|
|
|
void handleExCommand(const QString &cmd);
|
|
|
|
|
|
|
|
|
|
void handleDelayedQuitAll(bool forced);
|
|
|
|
|
void handleDelayedQuit(bool forced, Core::IEditor *editor);
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void delayedQuitRequested(bool forced, Core::IEditor *editor);
|
|
|
|
|
void delayedQuitAllRequested(bool forced);
|
2009-01-13 16:38:05 +01:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
FakeVimPlugin *q;
|
2009-03-30 13:59:47 +02:00
|
|
|
FakeVimOptionPage *m_fakeVimOptionsPage;
|
2009-03-30 16:54:25 +02:00
|
|
|
QHash<Core::IEditor *, FakeVimHandler *> m_editorToHandler;
|
2009-05-29 07:45:35 +10:00
|
|
|
|
|
|
|
|
void triggerAction(const QString& code);
|
2009-01-13 16:38:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace FakeVim
|
|
|
|
|
|
|
|
|
|
FakeVimPluginPrivate::FakeVimPluginPrivate(FakeVimPlugin *plugin)
|
|
|
|
|
{
|
|
|
|
|
q = plugin;
|
2009-03-30 13:59:47 +02:00
|
|
|
m_fakeVimOptionsPage = 0;
|
2008-12-19 12:20:04 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
FakeVimPluginPrivate::~FakeVimPluginPrivate()
|
|
|
|
|
{
|
|
|
|
|
}
|
2008-12-19 12:20:04 +01:00
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
void FakeVimPluginPrivate::shutdown()
|
2008-12-19 12:20:04 +01:00
|
|
|
{
|
2009-03-30 13:59:47 +02:00
|
|
|
q->removeObject(m_fakeVimOptionsPage);
|
|
|
|
|
delete m_fakeVimOptionsPage;
|
|
|
|
|
m_fakeVimOptionsPage = 0;
|
|
|
|
|
theFakeVimSettings()->writeSettings(Core::ICore::instance()->settings());
|
2009-06-03 13:53:45 +02:00
|
|
|
delete theFakeVimSettings();
|
2008-12-19 12:20:04 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
bool FakeVimPluginPrivate::initialize()
|
2008-12-19 12:20:04 +01:00
|
|
|
{
|
2009-01-28 12:44:46 +01:00
|
|
|
Core::ActionManager *actionManager = Core::ICore::instance()->actionManager();
|
2008-12-19 12:20:04 +01:00
|
|
|
QTC_ASSERT(actionManager, return false);
|
|
|
|
|
|
|
|
|
|
QList<int> globalcontext;
|
|
|
|
|
globalcontext << Core::Constants::C_GLOBAL_ID;
|
|
|
|
|
|
2009-03-30 13:59:47 +02:00
|
|
|
m_fakeVimOptionsPage = new FakeVimOptionPage;
|
|
|
|
|
q->addObject(m_fakeVimOptionsPage);
|
|
|
|
|
theFakeVimSettings()->readSettings(Core::ICore::instance()->settings());
|
2008-12-19 12:20:04 +01:00
|
|
|
|
2009-01-14 13:17:53 +01:00
|
|
|
Core::Command *cmd = 0;
|
2009-03-30 16:54:25 +02:00
|
|
|
cmd = actionManager->registerAction(theFakeVimSetting(ConfigUseFakeVim),
|
2008-12-19 12:20:04 +01:00
|
|
|
Constants::INSTALL_HANDLER, globalcontext);
|
|
|
|
|
cmd->setDefaultKeySequence(QKeySequence(Constants::INSTALL_KEY));
|
|
|
|
|
|
2009-01-14 12:39:59 +01:00
|
|
|
ActionContainer *advancedMenu =
|
2008-12-19 12:20:04 +01:00
|
|
|
actionManager->actionContainer(Core::Constants::M_EDIT_ADVANCED);
|
2009-01-20 09:48:50 +01:00
|
|
|
advancedMenu->addAction(cmd, Core::Constants::G_EDIT_EDITOR);
|
2008-12-19 12:20:04 +01:00
|
|
|
|
2009-01-09 17:57:48 +01:00
|
|
|
// EditorManager
|
2009-01-28 12:44:46 +01:00
|
|
|
QObject *editorManager = Core::ICore::instance()->editorManager();
|
2009-01-09 17:57:48 +01:00
|
|
|
connect(editorManager, SIGNAL(editorAboutToClose(Core::IEditor*)),
|
|
|
|
|
this, SLOT(editorAboutToClose(Core::IEditor*)));
|
|
|
|
|
connect(editorManager, SIGNAL(editorOpened(Core::IEditor*)),
|
|
|
|
|
this, SLOT(editorOpened(Core::IEditor*)));
|
|
|
|
|
|
2009-03-30 14:20:46 +02:00
|
|
|
connect(theFakeVimSetting(SettingsDialog), SIGNAL(triggered()),
|
|
|
|
|
this, SLOT(showSettingsDialog()));
|
2009-03-30 16:54:25 +02:00
|
|
|
connect(theFakeVimSetting(ConfigUseFakeVim), SIGNAL(valueChanged(QVariant)),
|
|
|
|
|
this, SLOT(setUseFakeVim(QVariant)));
|
2009-03-30 14:20:46 +02:00
|
|
|
|
2009-06-15 15:14:16 +02:00
|
|
|
// Delayed operatiosn
|
|
|
|
|
connect(this, SIGNAL(delayedQuitRequested(bool,Core::IEditor*)),
|
|
|
|
|
this, SLOT(handleDelayedQuit(bool,Core::IEditor*)), Qt::QueuedConnection);
|
|
|
|
|
connect(this, SIGNAL(delayedQuitAllRequested(bool)),
|
|
|
|
|
this, SLOT(handleDelayedQuitAll(bool)), Qt::QueuedConnection);
|
|
|
|
|
|
2008-12-19 12:20:04 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-30 14:20:46 +02:00
|
|
|
void FakeVimPluginPrivate::showSettingsDialog()
|
|
|
|
|
{
|
2009-11-27 16:12:12 +01:00
|
|
|
Core::ICore::instance()->showOptionsDialog(QLatin1String(Constants::SETTINGS_CATEGORY),
|
|
|
|
|
QLatin1String(Constants::SETTINGS_ID));
|
2009-03-30 14:20:46 +02:00
|
|
|
}
|
|
|
|
|
|
2009-05-29 07:45:35 +10:00
|
|
|
void FakeVimPluginPrivate::triggerAction(const QString& code)
|
|
|
|
|
{
|
|
|
|
|
Core::ActionManager *am = Core::ICore::instance()->actionManager();
|
|
|
|
|
QTC_ASSERT(am, return);
|
|
|
|
|
Core::Command *cmd = am->command(code);
|
|
|
|
|
QTC_ASSERT(cmd, return);
|
|
|
|
|
QAction *action = cmd->action();
|
|
|
|
|
QTC_ASSERT(action, return);
|
|
|
|
|
action->trigger();
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-03 16:33:28 +02:00
|
|
|
void FakeVimPluginPrivate::windowCommand(int key)
|
|
|
|
|
{
|
|
|
|
|
#define control(n) (256 + n)
|
|
|
|
|
QString code;
|
|
|
|
|
switch (key) {
|
|
|
|
|
case 'c': case 'C': case control('c'):
|
|
|
|
|
code = Core::Constants::CLOSE;
|
|
|
|
|
break;
|
|
|
|
|
case 'n': case 'N': case control('n'):
|
|
|
|
|
code = Core::Constants::GOTONEXT;
|
|
|
|
|
break;
|
|
|
|
|
case 'o': case 'O': case control('o'):
|
|
|
|
|
code = Core::Constants::REMOVE_ALL_SPLITS;
|
|
|
|
|
code = Core::Constants::REMOVE_CURRENT_SPLIT;
|
|
|
|
|
break;
|
|
|
|
|
case 'p': case 'P': case control('p'):
|
|
|
|
|
code = Core::Constants::GOTOPREV;
|
|
|
|
|
break;
|
|
|
|
|
case 's': case 'S': case control('s'):
|
|
|
|
|
code = Core::Constants::SPLIT;
|
|
|
|
|
break;
|
|
|
|
|
case 'w': case 'W': case control('w'):
|
|
|
|
|
code = Core::Constants::GOTO_OTHER_SPLIT;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
#undef control
|
|
|
|
|
qDebug() << "RUNNING WINDOW COMMAND: " << key << code;
|
|
|
|
|
if (code.isEmpty()) {
|
|
|
|
|
qDebug() << "UNKNOWN WINDOWS COMMAND: " << key;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-05-29 07:45:35 +10:00
|
|
|
triggerAction(code);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeVimPluginPrivate::find(bool reverse)
|
|
|
|
|
{
|
2009-07-13 18:55:11 +02:00
|
|
|
Q_UNUSED(reverse) // TODO: Creator needs an action for find in reverse.
|
2009-05-29 07:45:35 +10:00
|
|
|
triggerAction(Find::Constants::FIND_IN_DOCUMENT);
|
2009-04-03 16:33:28 +02:00
|
|
|
}
|
|
|
|
|
|
2009-05-29 11:34:11 +10:00
|
|
|
void FakeVimPluginPrivate::findNext(bool reverse)
|
|
|
|
|
{
|
|
|
|
|
if (reverse)
|
|
|
|
|
triggerAction(Find::Constants::FIND_PREVIOUS);
|
|
|
|
|
else
|
|
|
|
|
triggerAction(Find::Constants::FIND_NEXT);
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-30 16:54:25 +02:00
|
|
|
void FakeVimPluginPrivate::editorOpened(Core::IEditor *editor)
|
2009-01-09 17:57:48 +01:00
|
|
|
{
|
2009-02-04 16:42:55 +01:00
|
|
|
if (!editor)
|
|
|
|
|
return;
|
|
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
QWidget *widget = editor->widget();
|
2009-02-04 16:42:55 +01:00
|
|
|
if (!widget)
|
|
|
|
|
return;
|
2009-02-04 16:48:03 +01:00
|
|
|
|
|
|
|
|
// we can only handle QTextEdit and QPlainTextEdit
|
|
|
|
|
if (!qobject_cast<QTextEdit *>(widget) && !qobject_cast<QPlainTextEdit *>(widget))
|
|
|
|
|
return;
|
2009-01-23 15:12:04 +01:00
|
|
|
|
2009-03-30 16:54:25 +02:00
|
|
|
//qDebug() << "OPENING: " << editor << editor->widget()
|
|
|
|
|
// << "MODE: " << theFakeVimSetting(ConfigUseFakeVim)->value();
|
|
|
|
|
|
2009-01-27 14:50:36 +01:00
|
|
|
FakeVimHandler *handler = new FakeVimHandler(widget, widget);
|
2009-03-30 16:54:25 +02:00
|
|
|
m_editorToHandler[editor] = handler;
|
2009-01-23 15:12:04 +01:00
|
|
|
|
|
|
|
|
connect(handler, SIGNAL(extraInformationChanged(QString)),
|
|
|
|
|
this, SLOT(showExtraInformation(QString)));
|
|
|
|
|
connect(handler, SIGNAL(commandBufferChanged(QString)),
|
2008-12-19 12:20:04 +01:00
|
|
|
this, SLOT(showCommandBuffer(QString)));
|
2009-01-23 15:12:04 +01:00
|
|
|
connect(handler, SIGNAL(writeFileRequested(bool*,QString,QString)),
|
|
|
|
|
this, SLOT(writeFile(bool*,QString,QString)));
|
|
|
|
|
connect(handler, SIGNAL(selectionChanged(QList<QTextEdit::ExtraSelection>)),
|
|
|
|
|
this, SLOT(changeSelection(QList<QTextEdit::ExtraSelection>)));
|
2009-01-28 22:03:51 +01:00
|
|
|
connect(handler, SIGNAL(moveToMatchingParenthesis(bool*,bool*,QTextCursor*)),
|
|
|
|
|
this, SLOT(moveToMatchingParenthesis(bool*,bool*,QTextCursor*)));
|
2009-03-06 13:03:33 +01:00
|
|
|
connect(handler, SIGNAL(indentRegion(int*,int,int,QChar)),
|
|
|
|
|
this, SLOT(indentRegion(int*,int,int,QChar)));
|
2010-01-06 14:57:46 +01:00
|
|
|
connect(handler, SIGNAL(checkForElectricCharacter(bool*,QChar)),
|
|
|
|
|
this, SLOT(checkForElectricCharacter(bool*,QChar)));
|
2009-03-25 13:31:30 +01:00
|
|
|
connect(handler, SIGNAL(completionRequested()),
|
|
|
|
|
this, SLOT(triggerCompletions()));
|
2009-04-03 16:33:28 +02:00
|
|
|
connect(handler, SIGNAL(windowCommandRequested(int)),
|
|
|
|
|
this, SLOT(windowCommand(int)));
|
2009-05-29 07:45:35 +10:00
|
|
|
connect(handler, SIGNAL(findRequested(bool)),
|
|
|
|
|
this, SLOT(find(bool)));
|
2009-05-29 11:34:11 +10:00
|
|
|
connect(handler, SIGNAL(findNextRequested(bool)),
|
|
|
|
|
this, SLOT(findNext(bool)));
|
2009-01-23 15:12:04 +01:00
|
|
|
|
2009-06-15 15:14:16 +02:00
|
|
|
connect(handler, SIGNAL(handleExCommandRequested(QString)),
|
|
|
|
|
this, SLOT(handleExCommand(QString)));
|
|
|
|
|
|
2009-03-30 13:59:47 +02:00
|
|
|
handler->setCurrentFileName(editor->file()->fileName());
|
2009-03-30 16:54:25 +02:00
|
|
|
handler->installEventFilter();
|
2009-03-31 11:44:18 +02:00
|
|
|
|
|
|
|
|
// pop up the bar
|
|
|
|
|
if (theFakeVimSetting(ConfigUseFakeVim)->value().toBool())
|
|
|
|
|
showCommandBuffer("");
|
2008-12-19 12:20:04 +01:00
|
|
|
}
|
|
|
|
|
|
2009-03-30 16:54:25 +02:00
|
|
|
void FakeVimPluginPrivate::editorAboutToClose(Core::IEditor *editor)
|
2009-01-26 10:24:36 +01:00
|
|
|
{
|
2009-03-30 16:54:25 +02:00
|
|
|
//qDebug() << "CLOSING: " << editor << editor->widget();
|
|
|
|
|
m_editorToHandler.remove(editor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeVimPluginPrivate::setUseFakeVim(const QVariant &value)
|
|
|
|
|
{
|
2009-03-31 11:44:18 +02:00
|
|
|
//qDebug() << "SET USE FAKEVIM" << value;
|
2009-03-30 16:54:25 +02:00
|
|
|
bool on = value.toBool();
|
|
|
|
|
if (on) {
|
|
|
|
|
Core::EditorManager::instance()->showEditorStatusBar(
|
|
|
|
|
QLatin1String(Constants::MINI_BUFFER),
|
|
|
|
|
"vi emulation mode. Type :q to leave. Use , Ctrl-R to trigger run.",
|
2009-03-31 11:44:18 +02:00
|
|
|
tr("Quit FakeVim"), this, SLOT(quitFakeVim()));
|
2009-03-30 16:54:25 +02:00
|
|
|
foreach (Core::IEditor *editor, m_editorToHandler.keys())
|
|
|
|
|
m_editorToHandler[editor]->setupWidget();
|
|
|
|
|
} else {
|
|
|
|
|
Core::EditorManager::instance()->hideEditorStatusBar(
|
|
|
|
|
QLatin1String(Constants::MINI_BUFFER));
|
|
|
|
|
foreach (Core::IEditor *editor, m_editorToHandler.keys())
|
|
|
|
|
m_editorToHandler[editor]->restoreWidget();
|
|
|
|
|
}
|
2009-01-26 10:24:36 +01:00
|
|
|
}
|
|
|
|
|
|
2009-03-25 13:31:30 +01:00
|
|
|
void FakeVimPluginPrivate::triggerCompletions()
|
|
|
|
|
{
|
|
|
|
|
FakeVimHandler *handler = qobject_cast<FakeVimHandler *>(sender());
|
|
|
|
|
if (!handler)
|
|
|
|
|
return;
|
|
|
|
|
if (BaseTextEditor *bt = qobject_cast<BaseTextEditor *>(handler->widget()))
|
2009-03-25 14:52:13 +01:00
|
|
|
TextEditor::Internal::CompletionSupport::instance()->
|
|
|
|
|
autoComplete(bt->editableInterface(), false);
|
|
|
|
|
// bt->triggerCompletions();
|
2009-03-25 13:31:30 +01:00
|
|
|
}
|
|
|
|
|
|
2010-01-06 14:57:46 +01:00
|
|
|
void FakeVimPluginPrivate::checkForElectricCharacter(bool *result, QChar c)
|
|
|
|
|
{
|
|
|
|
|
FakeVimHandler *handler = qobject_cast<FakeVimHandler *>(sender());
|
|
|
|
|
if (!handler)
|
|
|
|
|
return;
|
|
|
|
|
if (BaseTextEditor *bt = qobject_cast<BaseTextEditor *>(handler->widget()))
|
|
|
|
|
*result = bt->isElectricCharacter(c);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
void FakeVimPluginPrivate::writeFile(bool *handled,
|
|
|
|
|
const QString &fileName, const QString &contents)
|
2009-01-15 15:27:14 +01:00
|
|
|
{
|
2009-07-13 18:55:11 +02:00
|
|
|
Q_UNUSED(contents)
|
2009-01-23 19:13:00 +01:00
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
FakeVimHandler *handler = qobject_cast<FakeVimHandler *>(sender());
|
|
|
|
|
if (!handler)
|
|
|
|
|
return;
|
|
|
|
|
|
2009-03-30 16:54:25 +02:00
|
|
|
Core::IEditor *editor = m_editorToHandler.key(handler);
|
2009-01-23 15:12:04 +01:00
|
|
|
if (editor && editor->file()->fileName() == fileName) {
|
2009-01-15 15:34:35 +01:00
|
|
|
// Handle that as a special case for nicer interaction with core
|
2009-01-23 15:12:04 +01:00
|
|
|
Core::IFile *file = editor->file();
|
2009-01-28 12:44:46 +01:00
|
|
|
Core::ICore::instance()->fileManager()->blockFileChange(file);
|
2009-01-23 15:12:04 +01:00
|
|
|
file->save(fileName);
|
2009-01-28 12:44:46 +01:00
|
|
|
Core::ICore::instance()->fileManager()->unblockFileChange(file);
|
2009-01-23 15:12:04 +01:00
|
|
|
*handled = true;
|
|
|
|
|
}
|
2009-01-15 15:27:14 +01:00
|
|
|
}
|
|
|
|
|
|
2009-06-15 15:14:16 +02:00
|
|
|
void FakeVimPluginPrivate::handleExCommand(const QString &cmd)
|
|
|
|
|
{
|
|
|
|
|
static QRegExp reNextFile("^n(ext)?!?( (.*))?$");
|
|
|
|
|
static QRegExp rePreviousFile("^(N(ext)?|prev(ious)?)!?( (.*))?$");
|
|
|
|
|
static QRegExp reWriteAll("^wa(ll)?!?$");
|
|
|
|
|
static QRegExp reQuit("^q!?$");
|
|
|
|
|
static QRegExp reQuitAll("^qa!?$");
|
|
|
|
|
|
|
|
|
|
using namespace Core;
|
|
|
|
|
|
|
|
|
|
FakeVimHandler *handler = qobject_cast<FakeVimHandler *>(sender());
|
|
|
|
|
if (!handler)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
EditorManager *editorManager = EditorManager::instance();
|
|
|
|
|
QTC_ASSERT(editorManager, return);
|
|
|
|
|
|
|
|
|
|
if (reNextFile.indexIn(cmd) != -1) {
|
|
|
|
|
// :n
|
|
|
|
|
editorManager->goForwardInNavigationHistory();
|
|
|
|
|
} else if (rePreviousFile.indexIn(cmd) != -1) {
|
|
|
|
|
// :N, :prev
|
|
|
|
|
editorManager->goBackInNavigationHistory();
|
|
|
|
|
} else if (reWriteAll.indexIn(cmd) != -1) {
|
|
|
|
|
// :wa
|
|
|
|
|
FileManager *fm = ICore::instance()->fileManager();
|
|
|
|
|
QList<IFile *> toSave = fm->modifiedFiles();
|
|
|
|
|
QList<IFile *> failed = fm->saveModifiedFilesSilently(toSave);
|
|
|
|
|
if (failed.isEmpty())
|
|
|
|
|
handler->showBlackMessage(tr("Saving succeeded"));
|
|
|
|
|
else
|
2009-07-31 16:41:12 +02:00
|
|
|
handler->showRedMessage(tr("%n files not saved", 0, failed.size()));
|
2009-06-15 15:14:16 +02:00
|
|
|
} else if (reQuit.indexIn(cmd) != -1) {
|
|
|
|
|
// :q
|
|
|
|
|
bool forced = cmd.contains(QChar('!'));
|
|
|
|
|
emit delayedQuitRequested(forced, m_editorToHandler.key(handler));
|
|
|
|
|
} else if (reQuitAll.indexIn(cmd) != -1) {
|
|
|
|
|
// :qa
|
|
|
|
|
bool forced = cmd.contains(QChar('!'));
|
|
|
|
|
emit delayedQuitAllRequested(forced);
|
|
|
|
|
} else {
|
2009-07-31 16:41:12 +02:00
|
|
|
handler->showRedMessage(tr("Not an editor command: %1").arg(cmd));
|
2009-06-15 15:14:16 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeVimPluginPrivate::handleDelayedQuit(bool forced, Core::IEditor *editor)
|
|
|
|
|
{
|
|
|
|
|
QList<Core::IEditor *> editors;
|
|
|
|
|
editors.append(editor);
|
|
|
|
|
Core::EditorManager::instance()->closeEditors(editors, !forced);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeVimPluginPrivate::handleDelayedQuitAll(bool forced)
|
|
|
|
|
{
|
|
|
|
|
Core::EditorManager::instance()->closeAllEditors(!forced);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-28 22:03:51 +01:00
|
|
|
void FakeVimPluginPrivate::moveToMatchingParenthesis(bool *moved, bool *forward,
|
|
|
|
|
QTextCursor *cursor)
|
|
|
|
|
{
|
|
|
|
|
*moved = false;
|
|
|
|
|
|
|
|
|
|
bool undoFakeEOL = false;
|
|
|
|
|
if (cursor->atBlockEnd() && cursor->block().length() > 1) {
|
|
|
|
|
cursor->movePosition(QTextCursor::Left, QTextCursor::KeepAnchor, 1);
|
|
|
|
|
undoFakeEOL = true;
|
|
|
|
|
}
|
|
|
|
|
TextEditor::TextBlockUserData::MatchType match
|
|
|
|
|
= TextEditor::TextBlockUserData::matchCursorForward(cursor);
|
|
|
|
|
if (match == TextEditor::TextBlockUserData::Match) {
|
|
|
|
|
*moved = true;
|
|
|
|
|
*forward = true;
|
2009-06-15 15:14:16 +02:00
|
|
|
} else {
|
2009-01-28 22:03:51 +01:00
|
|
|
if (undoFakeEOL)
|
|
|
|
|
cursor->movePosition(QTextCursor::Right, QTextCursor::KeepAnchor, 1);
|
|
|
|
|
if (match == TextEditor::TextBlockUserData::NoMatch) {
|
|
|
|
|
// backward matching is according to the character before the cursor
|
|
|
|
|
bool undoMove = false;
|
|
|
|
|
if (!cursor->atBlockEnd()) {
|
|
|
|
|
cursor->movePosition(QTextCursor::Right, QTextCursor::KeepAnchor, 1);
|
|
|
|
|
undoMove = true;
|
|
|
|
|
}
|
|
|
|
|
match = TextEditor::TextBlockUserData::matchCursorBackward(cursor);
|
|
|
|
|
if (match == TextEditor::TextBlockUserData::Match) {
|
|
|
|
|
*moved = true;
|
|
|
|
|
*forward = false;
|
|
|
|
|
} else if (undoMove) {
|
|
|
|
|
cursor->movePosition(QTextCursor::Left, QTextCursor::KeepAnchor, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-06 13:03:33 +01:00
|
|
|
void FakeVimPluginPrivate::indentRegion(int *amount, int beginLine, int endLine,
|
2009-02-03 10:39:57 +01:00
|
|
|
QChar typedChar)
|
|
|
|
|
{
|
|
|
|
|
FakeVimHandler *handler = qobject_cast<FakeVimHandler *>(sender());
|
|
|
|
|
if (!handler)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
BaseTextEditor *bt = qobject_cast<BaseTextEditor *>(handler->widget());
|
|
|
|
|
if (!bt)
|
|
|
|
|
return;
|
|
|
|
|
|
2009-03-30 12:40:08 +02:00
|
|
|
TextEditor::TabSettings tabSettings =
|
|
|
|
|
TextEditor::TextEditorSettings::instance()->tabSettings();
|
2009-02-03 10:39:57 +01:00
|
|
|
typedef SharedTools::Indenter<TextEditor::TextBlockIterator> Indenter;
|
|
|
|
|
Indenter &indenter = Indenter::instance();
|
2009-03-30 12:40:08 +02:00
|
|
|
indenter.setIndentSize(tabSettings.m_indentSize);
|
|
|
|
|
indenter.setTabSize(tabSettings.m_tabSize);
|
2009-02-03 10:39:57 +01:00
|
|
|
|
2009-03-06 13:03:33 +01:00
|
|
|
const QTextDocument *doc = bt->document();
|
2009-02-03 10:39:57 +01:00
|
|
|
const TextEditor::TextBlockIterator docStart(doc->begin());
|
2010-01-05 18:42:26 +01:00
|
|
|
QTextBlock cur = doc->findBlockByNumber(beginLine);
|
|
|
|
|
for(int i = beginLine; i<= endLine; ++i)
|
|
|
|
|
{
|
2009-02-03 10:39:57 +01:00
|
|
|
if (typedChar == 0 && cur.text().simplified().isEmpty()) {
|
2010-01-05 18:42:26 +01:00
|
|
|
// clear empty lines
|
2009-02-03 10:39:57 +01:00
|
|
|
*amount = 0;
|
2010-01-05 18:42:26 +01:00
|
|
|
QTextCursor cursor(cur);
|
|
|
|
|
while (!cursor.atBlockEnd())
|
|
|
|
|
cursor.deleteChar();
|
2009-02-03 10:39:57 +01:00
|
|
|
} else {
|
|
|
|
|
const TextEditor::TextBlockIterator current(cur);
|
|
|
|
|
const TextEditor::TextBlockIterator next(cur.next());
|
|
|
|
|
*amount = indenter.indentForBottomLine(current, docStart, next, typedChar);
|
2010-01-05 18:42:26 +01:00
|
|
|
tabSettings.indentLine(cur, *amount);
|
2009-02-03 10:39:57 +01:00
|
|
|
}
|
2010-01-05 18:42:26 +01:00
|
|
|
cur = cur.next();
|
|
|
|
|
}
|
2009-02-03 10:39:57 +01:00
|
|
|
}
|
|
|
|
|
|
2009-03-31 11:44:18 +02:00
|
|
|
void FakeVimPluginPrivate::quitFakeVim()
|
2009-01-09 17:57:48 +01:00
|
|
|
{
|
2009-04-14 14:42:46 +02:00
|
|
|
theFakeVimSetting(ConfigUseFakeVim)->setValue(false);
|
2009-01-09 17:57:48 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
void FakeVimPluginPrivate::showCommandBuffer(const QString &contents)
|
2008-12-19 12:20:04 +01:00
|
|
|
{
|
2009-03-30 16:54:25 +02:00
|
|
|
//qDebug() << "SHOW COMMAND BUFFER" << contents;
|
|
|
|
|
Core::EditorManager::instance()->showEditorStatusBar(
|
|
|
|
|
QLatin1String(Constants::MINI_BUFFER), contents,
|
2009-03-31 11:44:18 +02:00
|
|
|
tr("Quit FakeVim"), this, SLOT(quitFakeVim()));
|
2008-12-19 12:20:04 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
void FakeVimPluginPrivate::showExtraInformation(const QString &text)
|
2009-01-09 15:36:02 +01:00
|
|
|
{
|
2009-01-23 15:12:04 +01:00
|
|
|
FakeVimHandler *handler = qobject_cast<FakeVimHandler *>(sender());
|
|
|
|
|
if (handler)
|
|
|
|
|
QMessageBox::information(handler->widget(), tr("FakeVim Information"), text);
|
2009-01-09 15:36:02 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
void FakeVimPluginPrivate::changeSelection
|
|
|
|
|
(const QList<QTextEdit::ExtraSelection> &selection)
|
2009-01-13 13:47:00 +01:00
|
|
|
{
|
2009-01-23 15:12:04 +01:00
|
|
|
if (FakeVimHandler *handler = qobject_cast<FakeVimHandler *>(sender()))
|
|
|
|
|
if (BaseTextEditor *bt = qobject_cast<BaseTextEditor *>(handler->widget()))
|
|
|
|
|
bt->setExtraSelections(BaseTextEditor::FakeVimSelection, selection);
|
2009-01-13 13:47:00 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// FakeVimPlugin
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
FakeVimPlugin::FakeVimPlugin()
|
|
|
|
|
: d(new FakeVimPluginPrivate(this))
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
FakeVimPlugin::~FakeVimPlugin()
|
|
|
|
|
{
|
|
|
|
|
delete d;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
bool FakeVimPlugin::initialize(const QStringList &arguments, QString *errorMessage)
|
2009-01-13 16:38:05 +01:00
|
|
|
{
|
2009-07-13 18:55:11 +02:00
|
|
|
Q_UNUSED(arguments)
|
|
|
|
|
Q_UNUSED(errorMessage)
|
2009-01-23 15:12:04 +01:00
|
|
|
return d->initialize();
|
2009-01-13 16:38:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeVimPlugin::shutdown()
|
|
|
|
|
{
|
|
|
|
|
d->shutdown();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeVimPlugin::extensionsInitialized()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "fakevimplugin.moc"
|
2008-12-19 12:20:04 +01:00
|
|
|
|
|
|
|
|
Q_EXPORT_PLUGIN(FakeVimPlugin)
|