2008-12-19 12:20:04 +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-19 12:20:04 +01:00
|
|
|
**
|
|
|
|
|
** Contact: Qt Software Information (qt-info@nokia.com)
|
|
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** Non-Open Source Usage
|
|
|
|
|
**
|
|
|
|
|
** 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
|
|
|
|
|
** agreement between you and Nokia.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
**
|
|
|
|
|
** 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
|
|
|
|
|
** rights. These rights are described in the Nokia Qt GPL Exception
|
|
|
|
|
** version 1.3, included in the file GPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
|
|
#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>
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#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-09 17:31:20 +01:00
|
|
|
#include <texteditor/tabsettings.h>
|
|
|
|
|
#include <texteditor/texteditorsettings.h>
|
2008-12-19 12:20:04 +01:00
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
|
|
|
|
#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 {
|
|
|
|
|
|
|
|
|
|
const char * const INSTALL_HANDLER = "FakeVim.InstallHandler";
|
2009-01-07 17:41:09 +01:00
|
|
|
const char * const MINI_BUFFER = "FakeVim.MiniBuffer";
|
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;
|
|
|
|
|
|
|
|
|
|
bool initialize(const QStringList &arguments, QString *error_message);
|
|
|
|
|
void shutdown();
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void installHandler();
|
|
|
|
|
void installHandler(QWidget *widget);
|
|
|
|
|
void removeHandler(QWidget *widget);
|
|
|
|
|
void showCommandBuffer(const QString &contents);
|
|
|
|
|
void showExtraInformation(const QString &msg);
|
|
|
|
|
void editorOpened(Core::IEditor *);
|
|
|
|
|
void editorAboutToClose(Core::IEditor *);
|
|
|
|
|
void changeSelection(QWidget *widget,
|
|
|
|
|
const QList<QTextEdit::ExtraSelection> &selections);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
FakeVimPlugin *q;
|
|
|
|
|
FakeVimHandler *m_handler;
|
|
|
|
|
QAction *m_installHandlerAction;
|
|
|
|
|
Core::ICore *m_core;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace FakeVim
|
|
|
|
|
|
|
|
|
|
FakeVimPluginPrivate::FakeVimPluginPrivate(FakeVimPlugin *plugin)
|
|
|
|
|
{
|
|
|
|
|
q = plugin;
|
2008-12-19 12:20:04 +01:00
|
|
|
m_handler = 0;
|
2009-01-13 16:38:05 +01:00
|
|
|
m_installHandlerAction = 0;
|
|
|
|
|
m_core = 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
|
|
|
{
|
|
|
|
|
delete m_handler;
|
|
|
|
|
m_handler = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
bool FakeVimPluginPrivate::initialize(const QStringList &arguments, QString *error_message)
|
2008-12-19 12:20:04 +01:00
|
|
|
{
|
|
|
|
|
Q_UNUSED(arguments);
|
|
|
|
|
Q_UNUSED(error_message);
|
|
|
|
|
|
|
|
|
|
m_handler = new FakeVimHandler;
|
|
|
|
|
|
2009-01-07 17:41:09 +01:00
|
|
|
m_core = ExtensionSystem::PluginManager::instance()->getObject<Core::ICore>();
|
|
|
|
|
QTC_ASSERT(m_core, return false);
|
2008-12-19 12:20:04 +01:00
|
|
|
|
2009-01-13 13:39:31 +01:00
|
|
|
Core::ActionManager *actionManager = m_core->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"));
|
|
|
|
|
|
|
|
|
|
Core::ICommand *cmd = 0;
|
|
|
|
|
cmd = actionManager->registerAction(m_installHandlerAction,
|
|
|
|
|
Constants::INSTALL_HANDLER, globalcontext);
|
|
|
|
|
cmd->setDefaultKeySequence(QKeySequence(Constants::INSTALL_KEY));
|
|
|
|
|
|
|
|
|
|
IActionContainer *advancedMenu =
|
|
|
|
|
actionManager->actionContainer(Core::Constants::M_EDIT_ADVANCED);
|
|
|
|
|
advancedMenu->addAction(cmd);
|
|
|
|
|
|
|
|
|
|
connect(m_installHandlerAction, SIGNAL(triggered()),
|
|
|
|
|
this, SLOT(installHandler()));
|
2009-01-09 17:57:48 +01:00
|
|
|
|
|
|
|
|
// EditorManager
|
|
|
|
|
QObject *editorManager = m_core->editorManager();
|
|
|
|
|
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-13 16:38:05 +01:00
|
|
|
void FakeVimPluginPrivate::installHandler()
|
2008-12-19 12:20:04 +01:00
|
|
|
{
|
2009-01-09 17:57:48 +01:00
|
|
|
if (Core::IEditor *editor = m_core->editorManager()->currentEditor())
|
|
|
|
|
installHandler(editor->widget());
|
|
|
|
|
}
|
2008-12-19 12:20:04 +01:00
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
void FakeVimPluginPrivate::installHandler(QWidget *widget)
|
2009-01-09 17:57:48 +01:00
|
|
|
{
|
2009-01-09 15:36:02 +01:00
|
|
|
connect(m_handler, SIGNAL(extraInformationChanged(QString)),
|
|
|
|
|
this, SLOT(showExtraInformation(QString)));
|
2008-12-19 12:20:04 +01:00
|
|
|
connect(m_handler, SIGNAL(commandBufferChanged(QString)),
|
|
|
|
|
this, SLOT(showCommandBuffer(QString)));
|
2009-01-05 13:56:31 +01:00
|
|
|
connect(m_handler, SIGNAL(quitRequested(QWidget *)),
|
|
|
|
|
this, SLOT(removeHandler(QWidget *)));
|
2009-01-13 13:47:00 +01:00
|
|
|
connect(m_handler,
|
|
|
|
|
SIGNAL(selectionChanged(QWidget*,QList<QTextEdit::ExtraSelection>)),
|
|
|
|
|
this, SLOT(changeSelection(QWidget*,QList<QTextEdit::ExtraSelection>)));
|
2009-01-07 17:41:09 +01:00
|
|
|
|
2009-01-09 17:57:48 +01:00
|
|
|
m_handler->addWidget(widget);
|
2009-01-09 17:31:20 +01:00
|
|
|
|
2009-01-13 13:47:00 +01:00
|
|
|
BaseTextEditor *bt = qobject_cast<BaseTextEditor *>(widget);
|
|
|
|
|
if (bt) {
|
2009-01-09 17:31:20 +01:00
|
|
|
using namespace TextEditor;
|
|
|
|
|
using namespace FakeVim::Constants;
|
2009-01-13 13:47:00 +01:00
|
|
|
TabSettings settings = bt->tabSettings();
|
2009-01-09 17:31:20 +01:00
|
|
|
m_handler->setConfigValue(ConfigTabStop,
|
|
|
|
|
QString::number(settings.m_tabSize));
|
|
|
|
|
m_handler->setConfigValue(ConfigShiftWidth,
|
|
|
|
|
QString::number(settings.m_indentSize));
|
|
|
|
|
m_handler->setConfigValue(ConfigExpandTab,
|
|
|
|
|
settings.m_spacesForTabs ? ConfigOn : ConfigOff);
|
|
|
|
|
m_handler->setConfigValue(ConfigSmartTab,
|
|
|
|
|
settings.m_smartBackspace ? ConfigOn : ConfigOff);
|
2009-01-13 12:35:43 +01:00
|
|
|
m_handler->setConfigValue(ConfigAutoIndent,
|
|
|
|
|
settings.m_autoIndent ? ConfigOn : ConfigOff);
|
2009-01-09 17:31:20 +01:00
|
|
|
}
|
2008-12-19 12:20:04 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
void FakeVimPluginPrivate::removeHandler(QWidget *widget)
|
2008-12-19 12:20:04 +01:00
|
|
|
{
|
2009-01-13 11:15:34 +01:00
|
|
|
Q_UNUSED(widget);
|
2009-01-13 15:57:18 +01:00
|
|
|
m_handler->removeWidget(widget);
|
2009-01-07 18:05:45 +01:00
|
|
|
Core::EditorManager::instance()->hideEditorInfoBar(
|
|
|
|
|
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
|
|
|
{
|
2009-01-13 11:15:34 +01:00
|
|
|
Q_UNUSED(editor);
|
2009-01-09 17:57:48 +01:00
|
|
|
//qDebug() << "OPENING: " << editor << editor->widget();
|
|
|
|
|
//installHandler(editor->widget());
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
void FakeVimPluginPrivate::editorAboutToClose(Core::IEditor *editor)
|
2009-01-09 17:57:48 +01:00
|
|
|
{
|
|
|
|
|
//qDebug() << "CLOSING: " << editor << editor->widget();
|
|
|
|
|
removeHandler(editor->widget());
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
void FakeVimPluginPrivate::showCommandBuffer(const QString &contents)
|
2008-12-19 12:20:04 +01:00
|
|
|
{
|
2009-01-07 18:05:45 +01:00
|
|
|
Core::EditorManager::instance()->showEditorInfoBar(
|
|
|
|
|
QLatin1String(Constants::MINI_BUFFER), contents,
|
|
|
|
|
tr("Quit FakeVim"), m_handler, SLOT(quit()));
|
2008-12-19 12:20:04 +01:00
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
void FakeVimPluginPrivate::showExtraInformation(const QString &text)
|
2009-01-09 15:36:02 +01:00
|
|
|
{
|
|
|
|
|
QMessageBox::information(0, tr("FakeVim Information"), text);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
void FakeVimPluginPrivate::changeSelection(QWidget *widget,
|
2009-01-13 13:47:00 +01:00
|
|
|
const QList<QTextEdit::ExtraSelection> &selection)
|
|
|
|
|
{
|
|
|
|
|
if (BaseTextEditor *bt = qobject_cast<BaseTextEditor *>(widget))
|
|
|
|
|
bt->setExtraSelections(BaseTextEditor::FakeVimSelection, selection);
|
|
|
|
|
}
|
|
|
|
|
|
2009-01-13 16:38:05 +01:00
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// FakeVimPlugin
|
|
|
|
|
//
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
FakeVimPlugin::FakeVimPlugin()
|
|
|
|
|
: d(new FakeVimPluginPrivate(this))
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
FakeVimPlugin::~FakeVimPlugin()
|
|
|
|
|
{
|
|
|
|
|
delete d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FakeVimPlugin::initialize(const QStringList &arguments, QString *error_message)
|
|
|
|
|
{
|
|
|
|
|
return d->initialize(arguments, error_message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeVimPlugin::shutdown()
|
|
|
|
|
{
|
|
|
|
|
d->shutdown();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FakeVimPlugin::extensionsInitialized()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "fakevimplugin.moc"
|
2008-12-19 12:20:04 +01:00
|
|
|
|
|
|
|
|
Q_EXPORT_PLUGIN(FakeVimPlugin)
|