valentina/src/libs/vpropertyexplorer/plugins/vshortcutpropertyeditor.cpp

110 lines
3 KiB
C++
Raw Normal View History

/************************************************************************
**
** @file vshortcutpropertyeditor.cpp
** @author hedgeware <internal(at)hedgeware.net>
** @date
**
** @brief
** @copyright
** All rights reserved. This program and the accompanying materials
** are made available under the terms of the GNU Lesser General Public License
** (LGPL) version 2.1 which accompanies this distribution, and is available at
** http://www.gnu.org/licenses/lgpl-2.1.html
**
** This library is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
** Lesser General Public License for more details.
**
*************************************************************************/
#include "vshortcutpropertyeditor.h"
#include <QHBoxLayout>
#include <QKeyEvent>
using namespace VPE;
VShortcutEditWidget::VShortcutEditWidget(QWidget *parent)
: QWidget(parent)
{
// Create the line edit widget
LineEdit = new QLineEdit(this);
LineEdit->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
LineEdit->clear();
LineEdit->installEventFilter(this);
setFocusProxy(LineEdit);
connect(LineEdit, SIGNAL(textEdited(QString)), this, SLOT(onTextEdited(QString)));
// The layout (a horizontal layout)
QHBoxLayout* layout = new QHBoxLayout(this);
layout->setSpacing(0);
layout->setMargin(0);
layout->addWidget(LineEdit);
}
VShortcutEditWidget::~VShortcutEditWidget()
{
// nothing needs to be done here
}
bool VShortcutEditWidget::eventFilter(QObject *obj, QEvent *event)
{
2014-09-10 19:57:08 +02:00
if (obj == LineEdit)
{
if (event->type() == QEvent::KeyPress)
{
QKeyEvent *keyEvent = static_cast<QKeyEvent*>(event);
int keys = keyEvent->key();
2014-09-10 19:57:08 +02:00
if (keys != Qt::Key_Shift &&
keys != Qt::Key_Control &&
keys != Qt::Key_Meta &&
keys != Qt::Key_AltGr &&
keys != Qt::Key_Alt)
{
keys += keyEvent->modifiers();
setShortcut(QKeySequence(keys), true);
return true;
}
}
}
return QWidget::eventFilter(obj, event);
}
QString VShortcutEditWidget::getShortcutAsString()
{
return CurrentKeySequence.toString();
}
QKeySequence VShortcutEditWidget::getShortcut()
{
return CurrentKeySequence;
}
void VShortcutEditWidget::setShortcut(const QString &shortcut, bool emit_signal)
{
setShortcut(QKeySequence::fromString(shortcut), emit_signal);
}
void VShortcutEditWidget::setShortcut(const QKeySequence &shortcut, bool emit_signal)
{
2014-09-10 19:57:08 +02:00
if (shortcut != CurrentKeySequence)
{
CurrentKeySequence = shortcut;
LineEdit->setText(CurrentKeySequence.toString());
2014-09-10 19:57:08 +02:00
if (emit_signal)
{
emit dataChangedByUser(CurrentKeySequence, this);
2014-09-10 19:57:08 +02:00
}
}
}
void VShortcutEditWidget::onTextEdited(const QString &text)
{
setShortcut(text, true);
}