forked from qt-creator/qt-creator
Change-Id: Ice592c6de9951ee3b2c4cb52ed0bb3b6770e0825 Reviewed-by: Eike Ziller <eike.ziller@digia.com>
165 lines
5.2 KiB
C++
165 lines
5.2 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
|
|
** Contact: http://www.qt-project.org/legal
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** 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.
|
|
**
|
|
** GNU Lesser General Public License Usage
|
|
** 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
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "fakevimhandler.h"
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QApplication>
|
|
#include <QMainWindow>
|
|
#include <QMessageBox>
|
|
#include <QPlainTextEdit>
|
|
#include <QStatusBar>
|
|
#include <QTextEdit>
|
|
|
|
using namespace FakeVim::Internal;
|
|
|
|
class Proxy : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Proxy(QWidget *widget, QMainWindow *mw, QObject *parent = 0)
|
|
: QObject(parent), m_widget(widget), m_mainWindow(mw)
|
|
{}
|
|
|
|
public slots:
|
|
void changeSelection(const QList<QTextEdit::ExtraSelection> &s)
|
|
{
|
|
if (QPlainTextEdit *ed = qobject_cast<QPlainTextEdit *>(m_widget))
|
|
ed->setExtraSelections(s);
|
|
else if (QTextEdit *ed = qobject_cast<QTextEdit *>(m_widget))
|
|
ed->setExtraSelections(s);
|
|
}
|
|
|
|
void changeStatusData(const QString &info)
|
|
{
|
|
m_statusData = info;
|
|
updateStatusBar();
|
|
}
|
|
|
|
void changeStatusMessage(const QString &contents, int cursorPos)
|
|
{
|
|
m_statusMessage = cursorPos == -1 ? contents
|
|
: contents.left(cursorPos) + QChar(10073) + contents.mid(cursorPos);
|
|
updateStatusBar();
|
|
}
|
|
|
|
void changeExtraInformation(const QString &info)
|
|
{
|
|
QMessageBox::information(m_widget, "Information", info);
|
|
}
|
|
|
|
void updateStatusBar()
|
|
{
|
|
int slack = 80 - m_statusMessage.size() - m_statusData.size();
|
|
QString msg = m_statusMessage + QString(slack, QChar(' ')) + m_statusData;
|
|
m_mainWindow->statusBar()->showMessage(msg);
|
|
}
|
|
|
|
private:
|
|
QWidget *m_widget;
|
|
QMainWindow *m_mainWindow;
|
|
QString m_statusMessage;
|
|
QString m_statusData;
|
|
};
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
QStringList args = app.arguments();
|
|
(void) args.takeFirst();
|
|
|
|
QWidget *widget = 0;
|
|
QString title;
|
|
bool usePlainTextEdit = args.size() < 2;
|
|
if (usePlainTextEdit) {
|
|
QPlainTextEdit *w = new QPlainTextEdit;
|
|
w->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
title = "PlainTextEdit";
|
|
widget = w;
|
|
} else {
|
|
QTextEdit *w = new QTextEdit;
|
|
w->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
|
|
title = "TextEdit";
|
|
widget = w;
|
|
}
|
|
widget->setObjectName("Editor");
|
|
//widget->resize(450, 350);
|
|
widget->setFocus();
|
|
|
|
QMainWindow mw;
|
|
Proxy proxy(widget, &mw);
|
|
|
|
FakeVimHandler handler(widget, 0);
|
|
|
|
mw.setWindowTitle("Fakevim (" + title + ")");
|
|
mw.setCentralWidget(widget);
|
|
mw.resize(600, 650);
|
|
mw.move(0, 0);
|
|
mw.show();
|
|
|
|
QFont font = widget->font();
|
|
//: -misc-fixed-medium-r-semicondensed--13-120-75-75-c-60-iso8859-1
|
|
//font.setFamily("Misc");
|
|
font.setFamily("Monospace");
|
|
//font.setStretch(QFont::SemiCondensed);
|
|
|
|
widget->setFont(font);
|
|
mw.statusBar()->setFont(font);
|
|
|
|
QObject::connect(&handler, SIGNAL(commandBufferChanged(QString,int)),
|
|
&proxy, SLOT(changeStatusMessage(QString,int)));
|
|
//QObject::connect(&handler, SIGNAL(quitRequested(bool)),
|
|
// &app, SLOT(quit()));
|
|
QObject::connect(&handler,
|
|
SIGNAL(selectionChanged(QList<QTextEdit::ExtraSelection>)),
|
|
&proxy, SLOT(changeSelection(QList<QTextEdit::ExtraSelection>)));
|
|
QObject::connect(&handler, SIGNAL(extraInformationChanged(QString)),
|
|
&proxy, SLOT(changeExtraInformation(QString)));
|
|
QObject::connect(&handler, SIGNAL(statusDataChanged(QString)),
|
|
&proxy, SLOT(changeStatusData(QString)));
|
|
|
|
theFakeVimSetting(ConfigUseFakeVim)->setValue(true);
|
|
theFakeVimSetting(ConfigShiftWidth)->setValue(8);
|
|
theFakeVimSetting(ConfigTabStop)->setValue(8);
|
|
theFakeVimSetting(ConfigAutoIndent)->setValue(true);
|
|
theFakeVimSetting(ConfigIsKeyword)->setValue("@,48-57,_,192-255,a-z,A-Z");
|
|
|
|
handler.installEventFilter();
|
|
handler.setupWidget();
|
|
if (args.size() >= 1)
|
|
handler.handleCommand("r " + args.at(0));
|
|
|
|
return app.exec();
|
|
}
|
|
|
|
#include "main.moc"
|