2022-05-21 10:44:39 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2022-04-01 21:09:24 +08:00
|
|
|
#include "shortcutinputedit.h"
|
|
|
|
|
|
|
|
#include <QKeyEvent>
|
|
|
|
#include <QKeySequence>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QAction>
|
|
|
|
|
|
|
|
ShortcutInputEdit::ShortcutInputEdit(QWidget* parent):QLineEdit(parent)
|
|
|
|
{
|
|
|
|
QList<QAction *> acts = actions();
|
|
|
|
foreach (const QAction* action, acts) {
|
|
|
|
qDebug()<<action->shortcut()[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShortcutInputEdit::keyPressEvent(QKeyEvent *event)
|
|
|
|
{
|
|
|
|
if (event->key()==Qt::Key_Delete && event->modifiers()==Qt::NoModifier) {
|
|
|
|
setText("");
|
|
|
|
} else if (event->key()==Qt::Key_Backspace && event->modifiers()==Qt::NoModifier) {
|
|
|
|
setText("");
|
|
|
|
} else if (event->key()==Qt::Key_Control ||
|
|
|
|
event->key()==Qt::Key_Alt ||
|
|
|
|
event->key()==Qt::Key_Shift ||
|
|
|
|
event->key()==Qt::Key_Meta
|
|
|
|
) {
|
|
|
|
QKeySequence seq(event->modifiers());
|
|
|
|
setText("");
|
|
|
|
} else {
|
|
|
|
int key = event->key();
|
|
|
|
if (key==Qt::Key_Backtab)
|
|
|
|
key = Qt::Key_Tab;
|
|
|
|
QKeySequence seq(event->modifiers()|key);
|
|
|
|
setText(seq.toString());
|
|
|
|
if (key!=Qt::Key_Tab
|
|
|
|
&& key!=Qt::Key_Enter
|
|
|
|
&& key!=Qt::Key_Return)
|
|
|
|
emit inputFinished(this);
|
|
|
|
}
|
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ShortcutInputEdit::event(QEvent *event)
|
|
|
|
{
|
|
|
|
if (event->type()==QEvent::ShortcutOverride) {
|
|
|
|
keyPressEvent((QKeyEvent*)event);
|
|
|
|
event->accept();
|
|
|
|
return true;
|
|
|
|
} else if (event->type()==QEvent::KeyPress) {
|
|
|
|
keyPressEvent((QKeyEvent*)event);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return QLineEdit::event(event);
|
|
|
|
}
|