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
|
|
|
**
|
|
|
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
|
|
|
**
|
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
|
|
|
|
|
** contact the sales department at qt-sales@nokia.com.
|
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 "fakevimconstants.h"
|
|
|
|
|
#include "fakevimhandler.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>
|
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>
|
|
|
|
|
#include <texteditor/itexteditor.h>
|
|
|
|
|
#include <texteditor/texteditorconstants.h>
|
2009-01-23 18:21:36 +01:00
|
|
|
#include <texteditor/interactionsettings.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
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
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-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";
|
|
|
|
|
|
|
|
|
|
} // namespace Constants
|
|
|
|
|
} // namespace FakeVim
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
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-01-26 10:24:36 +01:00
|
|
|
void installHandlerOnCurrentEditor();
|
2009-01-23 15:12:04 +01:00
|
|
|
void installHandler(Core::IEditor *editor);
|
|
|
|
|
void removeHandler();
|
|
|
|
|
|
|
|
|
|
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);
|
2009-03-06 13:03:33 +01:00
|
|
|
void indentRegion(int *amount, int beginLine, int endLine, QChar typedChar);
|
2009-01-13 16:38:05 +01:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
FakeVimPlugin *q;
|
|
|
|
|
QAction *m_installHandlerAction;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace FakeVim
|
|
|
|
|
|
|
|
|
|
FakeVimPluginPrivate::FakeVimPluginPrivate(FakeVimPlugin *plugin)
|
|
|
|
|
{
|
|
|
|
|
q = plugin;
|
|
|
|
|
m_installHandlerAction = 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-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;
|
|
|
|
|
|
|
|
|
|
m_installHandlerAction = new QAction(this);
|
|
|
|
|
m_installHandlerAction->setText(tr("Set vi-Style Keyboard Action Handler"));
|
|
|
|
|
|
2009-01-14 13:17:53 +01:00
|
|
|
Core::Command *cmd = 0;
|
2008-12-19 12:20:04 +01:00
|
|
|
cmd = actionManager->registerAction(m_installHandlerAction,
|
|
|
|
|
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
|
|
|
|
|
|
|
|
connect(m_installHandlerAction, SIGNAL(triggered()),
|
2009-01-26 10:24:36 +01:00
|
|
|
this, SLOT(installHandlerOnCurrentEditor()));
|
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*)));
|
|
|
|
|
|
2008-12-19 12:20:04 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
void FakeVimPluginPrivate::installHandler(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-01-27 14:50:36 +01:00
|
|
|
FakeVimHandler *handler = new FakeVimHandler(widget, widget);
|
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(quitRequested()),
|
|
|
|
|
this, SLOT(removeHandler()), Qt::QueuedConnection);
|
|
|
|
|
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)));
|
2009-01-23 15:12:04 +01:00
|
|
|
|
|
|
|
|
handler->setupWidget();
|
|
|
|
|
handler->setExtraData(editor);
|
2009-01-09 17:31:20 +01:00
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
if (BaseTextEditor *bt = qobject_cast<BaseTextEditor *>(widget)) {
|
2009-01-09 17:31:20 +01:00
|
|
|
using namespace TextEditor;
|
|
|
|
|
using namespace FakeVim::Constants;
|
2009-01-23 15:12:04 +01:00
|
|
|
handler->setCurrentFileName(editor->file()->fileName());
|
2009-01-13 13:47:00 +01:00
|
|
|
TabSettings settings = bt->tabSettings();
|
2009-01-23 15:12:04 +01:00
|
|
|
handler->setConfigValue(ConfigTabStop,
|
2009-01-09 17:31:20 +01:00
|
|
|
QString::number(settings.m_tabSize));
|
2009-01-23 15:12:04 +01:00
|
|
|
handler->setConfigValue(ConfigShiftWidth,
|
2009-01-09 17:31:20 +01:00
|
|
|
QString::number(settings.m_indentSize));
|
2009-01-23 15:12:04 +01:00
|
|
|
handler->setConfigValue(ConfigExpandTab,
|
2009-01-09 17:31:20 +01:00
|
|
|
settings.m_spacesForTabs ? ConfigOn : ConfigOff);
|
2009-01-23 15:12:04 +01:00
|
|
|
handler->setConfigValue(ConfigSmartTab,
|
2009-01-09 17:31:20 +01:00
|
|
|
settings.m_smartBackspace ? ConfigOn : ConfigOff);
|
2009-01-23 15:12:04 +01:00
|
|
|
handler->setConfigValue(ConfigAutoIndent,
|
2009-01-13 12:35:43 +01:00
|
|
|
settings.m_autoIndent ? ConfigOn : ConfigOff);
|
2009-01-09 17:31:20 +01:00
|
|
|
}
|
2008-12-19 12:20:04 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-26 10:24:36 +01:00
|
|
|
void FakeVimPluginPrivate::installHandlerOnCurrentEditor()
|
|
|
|
|
{
|
|
|
|
|
installHandler(EditorManager::instance()->currentEditor());
|
|
|
|
|
}
|
|
|
|
|
|
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-01-23 19:13:00 +01:00
|
|
|
Q_UNUSED(contents);
|
|
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
FakeVimHandler *handler = qobject_cast<FakeVimHandler *>(sender());
|
|
|
|
|
if (!handler)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Core::IEditor *editor = qobject_cast<Core::IEditor *>(handler->extraData());
|
|
|
|
|
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-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;
|
|
|
|
|
} else {
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
typedef SharedTools::Indenter<TextEditor::TextBlockIterator> Indenter;
|
|
|
|
|
Indenter &indenter = Indenter::instance();
|
|
|
|
|
indenter.setIndentSize(bt->tabSettings().m_indentSize);
|
|
|
|
|
indenter.setTabSize(bt->tabSettings().m_tabSize);
|
|
|
|
|
|
2009-03-06 13:03:33 +01:00
|
|
|
const QTextDocument *doc = bt->document();
|
|
|
|
|
QTextBlock begin = doc->findBlockByNumber(beginLine);
|
|
|
|
|
QTextBlock end = doc->findBlockByNumber(endLine);
|
2009-02-03 10:39:57 +01:00
|
|
|
const TextEditor::TextBlockIterator docStart(doc->begin());
|
|
|
|
|
QTextBlock cur = begin;
|
|
|
|
|
do {
|
|
|
|
|
if (typedChar == 0 && cur.text().simplified().isEmpty()) {
|
|
|
|
|
*amount = 0;
|
|
|
|
|
if (cur != end) {
|
|
|
|
|
QTextCursor cursor(cur);
|
|
|
|
|
while (!cursor.atBlockEnd())
|
|
|
|
|
cursor.deleteChar();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
const TextEditor::TextBlockIterator current(cur);
|
|
|
|
|
const TextEditor::TextBlockIterator next(cur.next());
|
|
|
|
|
*amount = indenter.indentForBottomLine(current, docStart, next, typedChar);
|
|
|
|
|
if (cur != end)
|
|
|
|
|
bt->tabSettings().indentLine(cur, *amount);
|
|
|
|
|
}
|
|
|
|
|
if (cur != end)
|
|
|
|
|
cur = cur.next();
|
|
|
|
|
} while (cur != end);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-23 15:12:04 +01:00
|
|
|
void FakeVimPluginPrivate::removeHandler()
|
2008-12-19 12:20:04 +01:00
|
|
|
{
|
2009-01-23 15:12:04 +01:00
|
|
|
if (FakeVimHandler *handler = qobject_cast<FakeVimHandler *>(sender())) {
|
|
|
|
|
handler->restoreWidget();
|
|
|
|
|
handler->deleteLater();
|
|
|
|
|
}
|
2009-03-23 11:36:21 +01:00
|
|
|
Core::EditorManager::instance()->hideEditorStatusBar(
|
2009-01-07 18:05:45 +01:00
|
|
|
QLatin1String(Constants::MINI_BUFFER));
|
2008-12-19 12:20:04 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
void FakeVimPluginPrivate::editorOpened(Core::IEditor *editor)
|
2009-01-09 17:57:48 +01:00
|
|
|
{
|
|
|
|
|
//qDebug() << "OPENING: " << editor << editor->widget();
|
2009-01-23 19:13:00 +01:00
|
|
|
QSettings *s = ICore::instance()->settings();
|
|
|
|
|
bool automatic = s->value("textInteractionSettings/UseVim").toBool();
|
|
|
|
|
if (automatic)
|
|
|
|
|
installHandler(editor);
|
2009-01-09 17:57:48 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
void FakeVimPluginPrivate::editorAboutToClose(Core::IEditor *editor)
|
2009-01-09 17:57:48 +01:00
|
|
|
{
|
2009-01-28 12:44:46 +01:00
|
|
|
//qDebug() << "CLOSING: " << editor << editor->widget();
|
2009-01-23 15:12:04 +01:00
|
|
|
Q_UNUSED(editor);
|
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-01-23 15:12:04 +01:00
|
|
|
FakeVimHandler *handler = qobject_cast<FakeVimHandler *>(sender());
|
|
|
|
|
if (handler) {
|
2009-03-05 12:30:10 +01:00
|
|
|
//qDebug() << "SHOW COMMAND BUFFER" << contents;
|
|
|
|
|
Core::EditorManager::instance()->showEditorStatusBar(
|
2009-01-23 15:12:04 +01:00
|
|
|
QLatin1String(Constants::MINI_BUFFER), contents,
|
|
|
|
|
tr("Quit FakeVim"), handler, SLOT(quit()));
|
2009-03-05 12:30:10 +01:00
|
|
|
} else {
|
|
|
|
|
qDebug() << "\nNO HANDLER\n";
|
2009-01-23 15:12:04 +01:00
|
|
|
}
|
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-01-23 15:12:04 +01:00
|
|
|
Q_UNUSED(arguments);
|
|
|
|
|
Q_UNUSED(errorMessage);
|
|
|
|
|
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)
|