factor out the commonalities between the keyboard shortcut & ex command mapping dialog

Merge-request: 125
Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com>
This commit is contained in:
Martin Aumüller
2010-03-10 11:21:56 +01:00
committed by Daniel Molkentin
parent c5b5373978
commit af3b1ce778
9 changed files with 382 additions and 368 deletions

View File

@@ -0,0 +1,211 @@
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** 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.
**
** 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.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
#include "commandmappings.h"
#include "ui_commandmappings.h"
#include "actionmanager_p.h"
#include "actionmanager/command.h"
#include "command_p.h"
#include "commandsfile.h"
#include "coreconstants.h"
#include "filemanager.h"
#include "icore.h"
#include "uniqueidmanager.h"
#include <utils/treewidgetcolumnstretcher.h>
#include <QtGui/QKeyEvent>
#include <QtGui/QShortcut>
#include <QtGui/QHeaderView>
#include <QtGui/QFileDialog>
#include <QtCore/QCoreApplication>
#include <QtDebug>
Q_DECLARE_METATYPE(Core::Internal::ShortcutItem*);
using namespace Core;
using namespace Core::Internal;
CommandMappings::CommandMappings(QObject *parent)
: IOptionsPage(parent)
{
}
CommandMappings::~CommandMappings()
{
}
// IOptionsPage
QString CommandMappings::id() const
{
return QLatin1String("D.Keyboard");
}
QString CommandMappings::displayName() const
{
return tr("Keyboard");
}
QString CommandMappings::category() const
{
return QLatin1String(Core::Constants::SETTINGS_CATEGORY_CORE);
}
QString CommandMappings::displayCategory() const
{
return QCoreApplication::translate("Core", Core::Constants::SETTINGS_TR_CATEGORY_CORE);
}
QWidget *CommandMappings::createPage(QWidget *parent)
{
m_page = new Ui_CommandMappings();
QWidget *w = new QWidget(parent);
m_page->setupUi(w);
m_page->resetButton->setIcon(QIcon(Constants::ICON_RESET));
m_page->targetEdit->installEventFilter(this);
connect(m_page->resetButton, SIGNAL(clicked()),
this, SLOT(resetTargetIdentifier()));
connect(m_page->removeButton, SIGNAL(clicked()),
this, SLOT(removeTargetIdentifier()));
connect(m_page->exportButton, SIGNAL(clicked()),
this, SLOT(exportAction()));
connect(m_page->importButton, SIGNAL(clicked()),
this, SLOT(importAction()));
connect(m_page->defaultButton, SIGNAL(clicked()),
this, SLOT(defaultAction()));
initialize();
m_page->commandList->sortByColumn(0, Qt::AscendingOrder);
connect(m_page->filterEdit, SIGNAL(textChanged(QString)), this, SLOT(filterChanged(QString)));
connect(m_page->commandList, SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
this, SLOT(commandChanged(QTreeWidgetItem *)));
connect(m_page->targetEdit, SIGNAL(textChanged(QString)), this, SLOT(targetIdentifierChanged()));
new Utils::TreeWidgetColumnStretcher(m_page->commandList, 1);
commandChanged(0);
return w;
}
void CommandMappings::setImportExportEnabled(bool enabled)
{
m_page->importButton->setVisible(enabled);
m_page->exportButton->setVisible(enabled);
}
QTreeWidget *CommandMappings::commandList() const
{
return m_page->commandList;
}
QLineEdit *CommandMappings::targetEdit() const
{
return m_page->targetEdit;
}
void CommandMappings::setPageTitle(QString s)
{
m_page->groupBox->setTitle(s);
}
void CommandMappings::setTargetLabelText(QString s)
{
m_page->targetEditLabel->setText(s);
}
void CommandMappings::setTargetEditTitle(QString s)
{
m_page->targetEditGroup->setTitle(s);
}
void CommandMappings::setTargetHeader(QString s)
{
m_page->commandList->setHeaderLabels(QStringList() << tr("Command") << tr("Label") << s);
}
void CommandMappings::finish()
{
delete m_page;
}
void CommandMappings::commandChanged(QTreeWidgetItem *current)
{
if (!current || !current->data(0, Qt::UserRole).isValid()) {
m_page->targetEdit->setText("");
m_page->targetEditGroup->setEnabled(false);
return;
}
m_page->targetEditGroup->setEnabled(true);
}
void CommandMappings::filterChanged(const QString &f)
{
for (int i=0; i<m_page->commandList->topLevelItemCount(); ++i) {
QTreeWidgetItem *item = m_page->commandList->topLevelItem(i);
item->setHidden(filter(f, item));
}
}
bool CommandMappings::filter(const QString &f, const QTreeWidgetItem *item)
{
if (QTreeWidgetItem *parent = item->parent()) {
if (parent->text(0).contains(f, Qt::CaseInsensitive))
return false;
}
if (item->childCount() == 0) {
if (f.isEmpty())
return false;
for (int i = 0; i < item->columnCount(); ++i) {
if (item->text(i).contains(f, Qt::CaseInsensitive))
return false;
}
return true;
}
bool found = false;
for (int i = 0; i < item->childCount(); ++i) {
QTreeWidgetItem *citem = item->child(i);
if (filter(f, citem)) {
citem->setHidden(true);
} else {
citem->setHidden(false);
found = true;
}
}
return !found;
}

View File

@@ -0,0 +1,103 @@
/**************************************************************************
**
** This file is part of Qt Creator
**
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** Commercial Usage
**
** 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.
**
** 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.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
#ifndef COMMANDMAPPINGS_H
#define COMMANDMAPPINGS_H
#include <coreplugin/dialogs/ioptionspage.h>
#include <QtCore/QObject>
#include <QtGui/QKeySequence>
#include <QtGui/QTreeWidgetItem>
#include <QtGui/QKeyEvent>
class QLineEdit;
class QTreeWidget;
QT_BEGIN_NAMESPACE
class Ui_CommandMappings;
QT_END_NAMESPACE
namespace Core {
class Command;
namespace Internal {
class ActionManagerPrivate;
class MainWindow;
}
class CORE_EXPORT CommandMappings : public Core::IOptionsPage
{
Q_OBJECT
public:
CommandMappings(QObject *parent = 0);
~CommandMappings();
// IOptionsPage
virtual QString id() const = 0;
virtual QString displayName() const = 0;
virtual QString category() const = 0;
virtual QString displayCategory() const = 0;
protected slots:
void commandChanged(QTreeWidgetItem *current);
void filterChanged(const QString &f);
virtual void importAction() {}
virtual void exportAction() {}
virtual void defaultAction() = 0;
protected:
// IOptionsPage
QWidget *createPage(QWidget *parent);
virtual void apply() {}
virtual void finish();
virtual void initialize() = 0;
bool filter(const QString &f, const QTreeWidgetItem *item);
// access to m_page
void setImportExportEnabled(bool enabled);
QTreeWidget *commandList() const;
QLineEdit *targetEdit() const;
void setPageTitle(QString s);
void setTargetLabelText(QString s);
void setTargetEditTitle(QString s);
void setTargetHeader(QString s);
private:
Ui_CommandMappings *m_page;
};
} // namespace Core
#endif // COMMANDMAPPINGS_H

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0"> <ui version="4.0">
<class>ShortcutSettings</class> <class>CommandMappings</class>
<widget class="QWidget" name="ShortcutSettings"> <widget class="QWidget" name="CommandMappings">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
@@ -14,7 +14,7 @@
<item> <item>
<widget class="QGroupBox" name="groupBox"> <widget class="QGroupBox" name="groupBox">
<property name="title"> <property name="title">
<string>Keyboard Shortcuts</string> <string>Command Mappings</string>
</property> </property>
<layout class="QVBoxLayout"> <layout class="QVBoxLayout">
<item> <item>
@@ -57,7 +57,7 @@
</column> </column>
<column> <column>
<property name="text"> <property name="text">
<string>Shortcut</string> <string>Target</string>
</property> </property>
</column> </column>
</widget> </widget>
@@ -104,22 +104,22 @@
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QGroupBox" name="seqGrp"> <widget class="QGroupBox" name="targetEditGroup">
<property name="title"> <property name="title">
<string>Key Sequence</string> <string>Target Identifier</string>
</property> </property>
<layout class="QVBoxLayout"> <layout class="QVBoxLayout">
<item> <item>
<layout class="QHBoxLayout"> <layout class="QHBoxLayout">
<item> <item>
<widget class="QLabel" name="label_2"> <widget class="QLabel" name="targetEditLabel">
<property name="text"> <property name="text">
<string>Shortcut:</string> <string>Target:</string>
</property> </property>
</widget> </widget>
</item> </item>
<item> <item>
<widget class="QLineEdit" name="shortcutEdit"/> <widget class="QLineEdit" name="targetEdit"/>
</item> </item>
<item> <item>
<widget class="QToolButton" name="resetButton"> <widget class="QToolButton" name="resetButton">

View File

@@ -47,6 +47,7 @@ SOURCES += mainwindow.cpp \
dialogs/saveitemsdialog.cpp \ dialogs/saveitemsdialog.cpp \
dialogs/newdialog.cpp \ dialogs/newdialog.cpp \
dialogs/settingsdialog.cpp \ dialogs/settingsdialog.cpp \
actionmanager/commandmappings.cpp \
dialogs/shortcutsettings.cpp \ dialogs/shortcutsettings.cpp \
dialogs/openwithdialog.cpp \ dialogs/openwithdialog.cpp \
progressmanager/progressmanager.cpp \ progressmanager/progressmanager.cpp \
@@ -116,6 +117,7 @@ HEADERS += mainwindow.h \
dialogs/saveitemsdialog.h \ dialogs/saveitemsdialog.h \
dialogs/newdialog.h \ dialogs/newdialog.h \
dialogs/settingsdialog.h \ dialogs/settingsdialog.h \
actionmanager/commandmappings.h \
dialogs/shortcutsettings.h \ dialogs/shortcutsettings.h \
dialogs/openwithdialog.h \ dialogs/openwithdialog.h \
dialogs/iwizard.h \ dialogs/iwizard.h \
@@ -166,7 +168,7 @@ HEADERS += mainwindow.h \
editortoolbar.h editortoolbar.h
FORMS += dialogs/newdialog.ui \ FORMS += dialogs/newdialog.ui \
dialogs/shortcutsettings.ui \ actionmanager/commandmappings.ui \
dialogs/saveitemsdialog.ui \ dialogs/saveitemsdialog.ui \
dialogs/openwithdialog.ui \ dialogs/openwithdialog.ui \
editormanager/openeditorsview.ui \ editormanager/openeditorsview.ui \

View File

@@ -28,7 +28,6 @@
**************************************************************************/ **************************************************************************/
#include "shortcutsettings.h" #include "shortcutsettings.h"
#include "ui_shortcutsettings.h"
#include "actionmanager_p.h" #include "actionmanager_p.h"
#include "actionmanager/command.h" #include "actionmanager/command.h"
#include "command_p.h" #include "command_p.h"
@@ -44,6 +43,7 @@
#include <QtGui/QShortcut> #include <QtGui/QShortcut>
#include <QtGui/QHeaderView> #include <QtGui/QHeaderView>
#include <QtGui/QFileDialog> #include <QtGui/QFileDialog>
#include <QtGui/QLineEdit>
#include <QtCore/QCoreApplication> #include <QtCore/QCoreApplication>
#include <QtDebug> #include <QtDebug>
@@ -53,7 +53,7 @@ using namespace Core;
using namespace Core::Internal; using namespace Core::Internal;
ShortcutSettings::ShortcutSettings(QObject *parent) ShortcutSettings::ShortcutSettings(QObject *parent)
: IOptionsPage(parent) : CommandMappings(parent)
{ {
} }
@@ -88,36 +88,11 @@ QWidget *ShortcutSettings::createPage(QWidget *parent)
{ {
m_keyNum = m_key[0] = m_key[1] = m_key[2] = m_key[3] = 0; m_keyNum = m_key[0] = m_key[1] = m_key[2] = m_key[3] = 0;
m_page = new Ui_ShortcutSettings(); QWidget *w = CommandMappings::createPage(parent);
QWidget *w = new QWidget(parent); setPageTitle(tr("Keyboard Shortcuts"));
m_page->setupUi(w); setTargetLabelText(tr("Shortcut:"));
setTargetEditTitle(tr("Keyboard Shortcuts"));
m_page->resetButton->setIcon(QIcon(Constants::ICON_RESET)); setTargetHeader(tr("Shortcut"));
m_page->shortcutEdit->installEventFilter(this);
connect(m_page->resetButton, SIGNAL(clicked()),
this, SLOT(resetKeySequence()));
connect(m_page->removeButton, SIGNAL(clicked()),
this, SLOT(removeKeySequence()));
connect(m_page->exportButton, SIGNAL(clicked()),
this, SLOT(exportAction()));
connect(m_page->importButton, SIGNAL(clicked()),
this, SLOT(importAction()));
connect(m_page->defaultButton, SIGNAL(clicked()),
this, SLOT(defaultAction()));
initialize();
m_page->commandList->sortByColumn(0, Qt::AscendingOrder);
connect(m_page->filterEdit, SIGNAL(textChanged(QString)), this, SLOT(filterChanged(QString)));
connect(m_page->commandList, SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
this, SLOT(commandChanged(QTreeWidgetItem *)));
connect(m_page->shortcutEdit, SIGNAL(textChanged(QString)), this, SLOT(keyChanged()));
new Utils::TreeWidgetColumnStretcher(m_page->commandList, 1);
commandChanged(0);
return w; return w;
} }
@@ -133,7 +108,7 @@ void ShortcutSettings::finish()
qDeleteAll(m_scitems); qDeleteAll(m_scitems);
m_scitems.clear(); m_scitems.clear();
delete m_page; CommandMappings::finish();
} }
bool ShortcutSettings::eventFilter(QObject *o, QEvent *e) bool ShortcutSettings::eventFilter(QObject *o, QEvent *e)
@@ -156,27 +131,16 @@ bool ShortcutSettings::eventFilter(QObject *o, QEvent *e)
void ShortcutSettings::commandChanged(QTreeWidgetItem *current) void ShortcutSettings::commandChanged(QTreeWidgetItem *current)
{ {
if (!current || !current->data(0, Qt::UserRole).isValid()) { CommandMappings::commandChanged(current);
m_page->shortcutEdit->setText(""); if (!current || !current->data(0, Qt::UserRole).isValid())
m_page->seqGrp->setEnabled(false);
return; return;
}
m_page->seqGrp->setEnabled(true);
ShortcutItem *scitem = qVariantValue<ShortcutItem *>(current->data(0, Qt::UserRole)); ShortcutItem *scitem = qVariantValue<ShortcutItem *>(current->data(0, Qt::UserRole));
setKeySequence(scitem->m_key); setKeySequence(scitem->m_key);
} }
void ShortcutSettings::filterChanged(const QString &f) void ShortcutSettings::targetIdentifierChanged()
{ {
for (int i=0; i<m_page->commandList->topLevelItemCount(); ++i) { QTreeWidgetItem *current = commandList()->currentItem();
QTreeWidgetItem *item = m_page->commandList->topLevelItem(i);
item->setHidden(filter(f, item));
}
}
void ShortcutSettings::keyChanged()
{
QTreeWidgetItem *current = m_page->commandList->currentItem();
if (current && current->data(0, Qt::UserRole).isValid()) { if (current && current->data(0, Qt::UserRole).isValid()) {
ShortcutItem *scitem = qVariantValue<ShortcutItem *>(current->data(0, Qt::UserRole)); ShortcutItem *scitem = qVariantValue<ShortcutItem *>(current->data(0, Qt::UserRole));
scitem->m_key = QKeySequence(m_key[0], m_key[1], m_key[2], m_key[3]); scitem->m_key = QKeySequence(m_key[0], m_key[1], m_key[2], m_key[3]);
@@ -206,53 +170,22 @@ void ShortcutSettings::setKeySequence(const QKeySequence &key)
for (int i = 0; i < m_keyNum; ++i) { for (int i = 0; i < m_keyNum; ++i) {
m_key[i] = key[i]; m_key[i] = key[i];
} }
m_page->shortcutEdit->setText(key); targetEdit()->setText(key);
} }
bool ShortcutSettings::filter(const QString &f, const QTreeWidgetItem *item) void ShortcutSettings::resetTargetIdentifier()
{ {
QTreeWidgetItem *current = commandList()->currentItem();
if (QTreeWidgetItem *parent = item->parent()) {
if (parent->text(0).contains(f, Qt::CaseInsensitive))
return false;
}
if (item->childCount() == 0) {
if (f.isEmpty())
return false;
for (int i = 0; i < item->columnCount(); ++i) {
if (item->text(i).contains(f, Qt::CaseInsensitive))
return false;
}
return true;
}
bool found = false;
for (int i = 0; i < item->childCount(); ++i) {
QTreeWidgetItem *citem = item->child(i);
if (filter(f, citem)) {
citem->setHidden(true);
} else {
citem->setHidden(false);
found = true;
}
}
return !found;
}
void ShortcutSettings::resetKeySequence()
{
QTreeWidgetItem *current = m_page->commandList->currentItem();
if (current && current->data(0, Qt::UserRole).isValid()) { if (current && current->data(0, Qt::UserRole).isValid()) {
ShortcutItem *scitem = qVariantValue<ShortcutItem *>(current->data(0, Qt::UserRole)); ShortcutItem *scitem = qVariantValue<ShortcutItem *>(current->data(0, Qt::UserRole));
setKeySequence(scitem->m_cmd->defaultKeySequence()); setKeySequence(scitem->m_cmd->defaultKeySequence());
} }
} }
void ShortcutSettings::removeKeySequence() void ShortcutSettings::removeTargetIdentifier()
{ {
m_keyNum = m_key[0] = m_key[1] = m_key[2] = m_key[3] = 0; m_keyNum = m_key[0] = m_key[1] = m_key[2] = m_key[3] = 0;
m_page->shortcutEdit->clear(); targetEdit()->clear();
} }
void ShortcutSettings::importAction() void ShortcutSettings::importAction()
@@ -271,7 +204,7 @@ void ShortcutSettings::importAction()
if (mapping.contains(sid)) { if (mapping.contains(sid)) {
item->m_key = mapping.value(sid); item->m_key = mapping.value(sid);
item->m_item->setText(2, item->m_key); item->m_item->setText(2, item->m_key);
if (item->m_item == m_page->commandList->currentItem()) if (item->m_item == commandList()->currentItem())
commandChanged(item->m_item); commandChanged(item->m_item);
} }
} }
@@ -283,7 +216,7 @@ void ShortcutSettings::defaultAction()
foreach (ShortcutItem *item, m_scitems) { foreach (ShortcutItem *item, m_scitems) {
item->m_key = item->m_cmd->defaultKeySequence(); item->m_key = item->m_cmd->defaultKeySequence();
item->m_item->setText(2, item->m_key); item->m_item->setText(2, item->m_key);
if (item->m_item == m_page->commandList->currentItem()) if (item->m_item == commandList()->currentItem())
commandChanged(item->m_item); commandChanged(item->m_item);
} }
} }
@@ -303,12 +236,12 @@ void ShortcutSettings::exportAction()
void ShortcutSettings::initialize() void ShortcutSettings::initialize()
{ {
m_am = ActionManagerPrivate::instance(); Core::Internal::ActionManagerPrivate *am = ActionManagerPrivate::instance();
UniqueIDManager *uidm = UniqueIDManager::instance(); UniqueIDManager *uidm = UniqueIDManager::instance();
QMap<QString, QTreeWidgetItem *> sections; QMap<QString, QTreeWidgetItem *> sections;
foreach (Command *c, m_am->commands()) { foreach (Command *c, am->commands()) {
if (c->hasAttribute(Command::CA_NonConfigureable)) if (c->hasAttribute(Command::CA_NonConfigureable))
continue; continue;
if (c->action() && c->action()->isSeparator()) if (c->action() && c->action()->isSeparator())
@@ -326,12 +259,12 @@ void ShortcutSettings::initialize()
const QString section = identifier.left(pos); const QString section = identifier.left(pos);
const QString subId = identifier.mid(pos+1); const QString subId = identifier.mid(pos+1);
if (!sections.contains(section)) { if (!sections.contains(section)) {
QTreeWidgetItem *categoryItem = new QTreeWidgetItem(m_page->commandList, QStringList() << section); QTreeWidgetItem *categoryItem = new QTreeWidgetItem(commandList(), QStringList() << section);
QFont f = categoryItem->font(0); QFont f = categoryItem->font(0);
f.setBold(true); f.setBold(true);
categoryItem->setFont(0, f); categoryItem->setFont(0, f);
sections.insert(section, categoryItem); sections.insert(section, categoryItem);
m_page->commandList->expandItem(categoryItem); commandList()->expandItem(categoryItem);
} }
sections[section]->addChild(item); sections[section]->addChild(item);
@@ -391,7 +324,7 @@ void ShortcutSettings::handleKeyEvent(QKeyEvent *e)
} }
m_keyNum++; m_keyNum++;
QKeySequence ks(m_key[0], m_key[1], m_key[2], m_key[3]); QKeySequence ks(m_key[0], m_key[1], m_key[2], m_key[3]);
m_page->shortcutEdit->setText(ks); targetEdit()->setText(ks);
e->accept(); e->accept();
} }

View File

@@ -30,17 +30,13 @@
#ifndef SHORTCUTSETTINGS_H #ifndef SHORTCUTSETTINGS_H
#define SHORTCUTSETTINGS_H #define SHORTCUTSETTINGS_H
#include <coreplugin/dialogs/ioptionspage.h> #include <coreplugin/actionmanager/commandmappings.h>
#include <QtCore/QObject> #include <QtCore/QObject>
#include <QtGui/QKeySequence> #include <QtGui/QKeySequence>
#include <QtGui/QTreeWidgetItem> #include <QtGui/QTreeWidgetItem>
#include <QtGui/QKeyEvent> #include <QtGui/QKeyEvent>
QT_BEGIN_NAMESPACE
class Ui_ShortcutSettings;
QT_END_NAMESPACE
namespace Core { namespace Core {
class Command; class Command;
@@ -58,7 +54,7 @@ struct ShortcutItem
}; };
class ShortcutSettings : public Core::IOptionsPage class ShortcutSettings : public Core::CommandMappings
{ {
Q_OBJECT Q_OBJECT
@@ -81,26 +77,22 @@ protected:
private slots: private slots:
void commandChanged(QTreeWidgetItem *current); void commandChanged(QTreeWidgetItem *current);
void filterChanged(const QString &f); void targetIdentifierChanged();
void keyChanged(); void resetTargetIdentifier();
void resetKeySequence(); void removeTargetIdentifier();
void removeKeySequence();
void importAction(); void importAction();
void exportAction(); void exportAction();
void defaultAction(); void defaultAction();
private: private:
void setKeySequence(const QKeySequence &key); void setKeySequence(const QKeySequence &key);
bool filter(const QString &f, const QTreeWidgetItem *item);
void initialize(); void initialize();
void handleKeyEvent(QKeyEvent *e); void handleKeyEvent(QKeyEvent *e);
int translateModifiers(Qt::KeyboardModifiers state, const QString &text); int translateModifiers(Qt::KeyboardModifiers state, const QString &text);
QList<ShortcutItem *> m_scitems; QList<ShortcutItem *> m_scitems;
ActionManagerPrivate *m_am;
int m_key[4], m_keyNum; int m_key[4], m_keyNum;
Ui_ShortcutSettings *m_page;
}; };
} // namespace Internal } // namespace Internal

View File

@@ -19,6 +19,5 @@ SOURCES += fakevimactions.cpp \
HEADERS += fakevimactions.h \ HEADERS += fakevimactions.h \
fakevimhandler.h \ fakevimhandler.h \
fakevimplugin.h fakevimplugin.h
FORMS += fakevimoptions.ui \ FORMS += fakevimoptions.ui
fakevimexcommands.ui
OTHER_FILES += FakeVim.pluginspec OTHER_FILES += FakeVim.pluginspec

View File

@@ -1,156 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>FakeVimExCommandsPage</class>
<widget class="QWidget" name="FakeVimExCommandsPage">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>568</width>
<height>451</height>
</rect>
</property>
<layout class="QVBoxLayout">
<item>
<widget class="QGroupBox" name="groupBox">
<property name="title">
<string>Ex Command Mapping</string>
</property>
<layout class="QVBoxLayout">
<item>
<layout class="QHBoxLayout">
<item>
<widget class="QLabel" name="filterLabel">
<property name="text">
<string>Filter:</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="filterEdit"/>
</item>
</layout>
</item>
<item>
<widget class="QTreeWidget" name="commandList">
<property name="rootIsDecorated">
<bool>false</bool>
</property>
<property name="uniformRowHeights">
<bool>true</bool>
</property>
<property name="sortingEnabled">
<bool>true</bool>
</property>
<property name="columnCount">
<number>3</number>
</property>
<column>
<property name="text">
<string>Command</string>
</property>
</column>
<column>
<property name="text">
<string>Label</string>
</property>
</column>
<column>
<property name="text">
<string>Ex Trigger Expression</string>
</property>
</column>
</widget>
</item>
<item>
<layout class="QHBoxLayout">
<item>
<widget class="QPushButton" name="defaultButton">
<property name="text">
<string>Defaults</string>
</property>
</widget>
</item>
<item>
<spacer>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
</layout>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QGroupBox" name="seqGrp">
<property name="title">
<string>Ex Command</string>
</property>
<layout class="QVBoxLayout">
<item>
<layout class="QHBoxLayout">
<item>
<widget class="QLabel" name="regexLabel">
<property name="text">
<string>Regular Expression:</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="regexEdit"/>
</item>
<item>
<widget class="QToolButton" name="resetButton">
<property name="toolTip">
<string>Reset</string>
</property>
<property name="text">
<string/>
</property>
<property name="icon">
<iconset resource="../coreplugin/core.qrc">
<normaloff>:/core/images/reset.png</normaloff>:/core/images/reset.png</iconset>
</property>
</widget>
</item>
<item>
<widget class="QToolButton" name="removeButton">
<property name="toolTip">
<string>Remove</string>
</property>
<property name="text">
<string/>
</property>
<property name="icon">
<iconset resource="../coreplugin/core.qrc">
<normaloff>:/core/images/clear.png</normaloff>:/core/images/clear.png</iconset>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QLabel" name="infoLabel">
<property name="textFormat">
<enum>Qt::RichText</enum>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<resources>
<include location="../coreplugin/core.qrc"/>
</resources>
<connections/>
</ui>

View File

@@ -31,7 +31,6 @@
#include "fakevimhandler.h" #include "fakevimhandler.h"
#include "ui_fakevimoptions.h" #include "ui_fakevimoptions.h"
#include "ui_fakevimexcommands.h"
#include <coreplugin/actionmanager/actionmanager.h> #include <coreplugin/actionmanager/actionmanager.h>
@@ -42,6 +41,7 @@
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
#include <coreplugin/ifile.h> #include <coreplugin/ifile.h>
#include <coreplugin/dialogs/ioptionspage.h> #include <coreplugin/dialogs/ioptionspage.h>
#include <coreplugin/actionmanager/commandmappings.h>
#include <coreplugin/messagemanager.h> #include <coreplugin/messagemanager.h>
#include <coreplugin/modemanager.h> #include <coreplugin/modemanager.h>
#include <coreplugin/uniqueidmanager.h> #include <coreplugin/uniqueidmanager.h>
@@ -273,7 +273,7 @@ static QMap<QString, QRegExp> s_exCommandMap;
static QMap<QString, QRegExp> s_defaultExCommandMap; static QMap<QString, QRegExp> s_defaultExCommandMap;
class FakeVimExCommandsPage : public Core::IOptionsPage class FakeVimExCommandsPage : public Core::CommandMappings
{ {
Q_OBJECT Q_OBJECT
@@ -288,53 +288,28 @@ public:
QWidget *createPage(QWidget *parent); QWidget *createPage(QWidget *parent);
void initialize(); void initialize();
void apply() {}
void finish() {}
virtual bool matches(const QString &) const;
bool filter(const QString &f, const QTreeWidgetItem *item);
public slots: public slots:
void filterChanged(const QString &f);
void commandChanged(QTreeWidgetItem *current); void commandChanged(QTreeWidgetItem *current);
void regexChanged(); void targetIdentifierChanged();
void resetRegex(); void resetTargetIdentifier();
void removeRegex(); void removeTargetIdentifier();
void defaultAction(); void defaultAction();
private: private:
Ui::FakeVimExCommandsPage m_ui;
QString m_searchKeywords;
void setRegex(const QString &regex); void setRegex(const QString &regex);
QList<CommandItem *> m_citems; QList<CommandItem *> m_citems;
}; };
QWidget *FakeVimExCommandsPage::createPage(QWidget *parent) QWidget *FakeVimExCommandsPage::createPage(QWidget *parent)
{ {
QWidget *w = new QWidget(parent); QWidget *w = CommandMappings::createPage(parent);
m_ui.setupUi(w); setPageTitle(tr("Ex Command Mapping"));
setTargetHeader(tr("Ex Trigger Expression"));
setTargetLabelText(tr("Regular Expression:"));
setTargetEditTitle(tr("Ex Command"));
connect(m_ui.resetButton, SIGNAL(clicked()), setImportExportEnabled(false);
this, SLOT(resetRegex()));
connect(m_ui.removeButton, SIGNAL(clicked()),
this, SLOT(removeRegex()));
connect(m_ui.defaultButton, SIGNAL(clicked()),
this, SLOT(defaultAction()));
initialize();
m_ui.commandList->sortByColumn(0, Qt::AscendingOrder);
connect(m_ui.filterEdit, SIGNAL(textChanged(QString)), this, SLOT(filterChanged(QString)));
connect(m_ui.commandList, SIGNAL(currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *)),
this, SLOT(commandChanged(QTreeWidgetItem *)));
connect(m_ui.regexEdit, SIGNAL(textChanged(QString)), this, SLOT(regexChanged()));
if (m_searchKeywords.isEmpty()) {
QTextStream(&m_searchKeywords)
<< ' ' << m_ui.groupBox->title();
m_searchKeywords.remove(QLatin1Char('&'));
}
new Utils::TreeWidgetColumnStretcher(m_ui.commandList, 1);
return w; return w;
} }
@@ -364,12 +339,12 @@ void FakeVimExCommandsPage::initialize()
const QString subId = name.mid(pos+1); const QString subId = name.mid(pos+1);
if (!sections.contains(section)) { if (!sections.contains(section)) {
QTreeWidgetItem *categoryItem = new QTreeWidgetItem(m_ui.commandList, QStringList() << section); QTreeWidgetItem *categoryItem = new QTreeWidgetItem(commandList(), QStringList() << section);
QFont f = categoryItem->font(0); QFont f = categoryItem->font(0);
f.setBold(true); f.setBold(true);
categoryItem->setFont(0, f); categoryItem->setFont(0, f);
sections.insert(section, categoryItem); sections.insert(section, categoryItem);
m_ui.commandList->expandItem(categoryItem); commandList()->expandItem(categoryItem);
} }
sections[section]->addChild(item); sections[section]->addChild(item);
@@ -407,28 +382,18 @@ void FakeVimExCommandsPage::initialize()
void FakeVimExCommandsPage::commandChanged(QTreeWidgetItem *current) void FakeVimExCommandsPage::commandChanged(QTreeWidgetItem *current)
{ {
if (!current || !current->data(0, Qt::UserRole).isValid()) { CommandMappings::commandChanged(current);
m_ui.regexEdit->setText(QString());
m_ui.seqGrp->setEnabled(false); if (!current || !current->data(0, Qt::UserRole).isValid())
return; return;
}
m_ui.seqGrp->setEnabled(true);
CommandItem *citem = qVariantValue<CommandItem *>(current->data(0, Qt::UserRole)); CommandItem *citem = qVariantValue<CommandItem *>(current->data(0, Qt::UserRole));
m_ui.regexEdit->setText(citem->m_regex); targetEdit()->setText(citem->m_regex);
} }
void FakeVimExCommandsPage::filterChanged(const QString &f) void FakeVimExCommandsPage::targetIdentifierChanged()
{ {
for (int i=0; i<m_ui.commandList->topLevelItemCount(); ++i) { QTreeWidgetItem *current = commandList()->currentItem();
QTreeWidgetItem *item = m_ui.commandList->topLevelItem(i);
item->setHidden(filter(f, item));
}
}
void FakeVimExCommandsPage::regexChanged()
{
QTreeWidgetItem *current = m_ui.commandList->currentItem();
if (!current) if (!current)
return; return;
@@ -437,7 +402,7 @@ void FakeVimExCommandsPage::regexChanged()
const QString name = uidm->stringForUniqueIdentifier(citem->m_cmd->id()); const QString name = uidm->stringForUniqueIdentifier(citem->m_cmd->id());
if (current->data(0, Qt::UserRole).isValid()) { if (current->data(0, Qt::UserRole).isValid()) {
citem->m_regex = m_ui.regexEdit->text(); citem->m_regex = targetEdit()->text();
current->setText(2, citem->m_regex); current->setText(2, citem->m_regex);
s_exCommandMap[name] = QRegExp(citem->m_regex); s_exCommandMap[name] = QRegExp(citem->m_regex);
} }
@@ -462,43 +427,13 @@ void FakeVimExCommandsPage::regexChanged()
void FakeVimExCommandsPage::setRegex(const QString &regex) void FakeVimExCommandsPage::setRegex(const QString &regex)
{ {
m_ui.regexEdit->setText(regex); targetEdit()->setText(regex);
} }
bool FakeVimExCommandsPage::filter(const QString &f, const QTreeWidgetItem *item) void FakeVimExCommandsPage::resetTargetIdentifier()
{
if (QTreeWidgetItem *parent = item->parent()) {
if (parent->text(0).contains(f, Qt::CaseInsensitive))
return false;
}
if (item->childCount() == 0) {
if (f.isEmpty())
return false;
for (int i = 0; i < item->columnCount(); ++i) {
if (item->text(i).contains(f, Qt::CaseInsensitive))
return false;
}
return true;
}
bool found = false;
for (int i = 0; i < item->childCount(); ++i) {
QTreeWidgetItem *citem = item->child(i);
if (filter(f, citem)) {
citem->setHidden(true);
} else {
citem->setHidden(false);
found = true;
}
}
return !found;
}
void FakeVimExCommandsPage::resetRegex()
{ {
UniqueIDManager *uidm = UniqueIDManager::instance(); UniqueIDManager *uidm = UniqueIDManager::instance();
QTreeWidgetItem *current = m_ui.commandList->currentItem(); QTreeWidgetItem *current = commandList()->currentItem();
if (current && current->data(0, Qt::UserRole).isValid()) { if (current && current->data(0, Qt::UserRole).isValid()) {
CommandItem *citem = qVariantValue<CommandItem *>(current->data(0, Qt::UserRole)); CommandItem *citem = qVariantValue<CommandItem *>(current->data(0, Qt::UserRole));
const QString &name = uidm->stringForUniqueIdentifier(citem->m_cmd->id()); const QString &name = uidm->stringForUniqueIdentifier(citem->m_cmd->id());
@@ -509,9 +444,9 @@ void FakeVimExCommandsPage::resetRegex()
} }
} }
void FakeVimExCommandsPage::removeRegex() void FakeVimExCommandsPage::removeTargetIdentifier()
{ {
m_ui.regexEdit->clear(); targetEdit()->clear();
} }
void FakeVimExCommandsPage::defaultAction() void FakeVimExCommandsPage::defaultAction()
@@ -525,16 +460,11 @@ void FakeVimExCommandsPage::defaultAction()
item->m_regex.clear(); item->m_regex.clear();
} }
item->m_item->setText(2, item->m_regex); item->m_item->setText(2, item->m_regex);
if (item->m_item == m_ui.commandList->currentItem()) if (item->m_item == commandList()->currentItem())
commandChanged(item->m_item); commandChanged(item->m_item);
} }
} }
bool FakeVimExCommandsPage::matches(const QString &s) const
{
return m_searchKeywords.contains(s, Qt::CaseInsensitive);
}
} // namespace Internal } // namespace Internal
} // namespace FakeVim } // namespace FakeVim