supercell-wx/scwx-qt/source/scwx/qt/ui/hotkey_edit.cpp
2024-04-12 00:54:52 -05:00

137 lines
2.8 KiB
C++

#include <scwx/qt/ui/hotkey_edit.hpp>
#include <scwx/util/logger.hpp>
#include <qevent.h>
namespace scwx
{
namespace qt
{
namespace ui
{
static const std::string logPrefix_ = "scwx::qt::ui::hotkey_edit";
static const auto logger_ = scwx::util::Logger::Create(logPrefix_);
class HotkeyEdit::Impl
{
public:
explicit Impl() {};
~Impl() = default;
QKeySequence sequence_ {};
};
HotkeyEdit::HotkeyEdit(QWidget* parent) :
QLineEdit(parent), p {std::make_unique<Impl>()}
{
setReadOnly(true);
setClearButtonEnabled(true);
QAction* clearAction = findChild<QAction*>();
if (clearAction != nullptr)
{
clearAction->setEnabled(true);
connect(clearAction,
&QAction::triggered,
this,
[this](bool /* checked */)
{
logger_->trace("clearAction");
if (!p->sequence_.isEmpty())
{
// Clear saved sequence
p->sequence_ = QKeySequence {};
setText(p->sequence_.toString());
Q_EMIT KeySequenceChanged({});
}
});
}
}
HotkeyEdit::~HotkeyEdit() {}
QKeySequence HotkeyEdit::key_sequence() const
{
return p->sequence_;
}
void HotkeyEdit::set_key_sequence(const QKeySequence& sequence)
{
if (sequence != p->sequence_)
{
p->sequence_ = sequence;
setText(sequence.toString());
Q_EMIT KeySequenceChanged(sequence);
}
}
void HotkeyEdit::focusInEvent(QFocusEvent* e)
{
logger_->trace("focusInEvent");
// Replace text with placeholder prompting for input
setPlaceholderText("Press any key");
setText({});
QLineEdit::focusInEvent(e);
}
void HotkeyEdit::focusOutEvent(QFocusEvent* e)
{
logger_->trace("focusOutEvent");
// Replace text with saved sequence
setPlaceholderText({});
setText(p->sequence_.toString());
QLineEdit::focusOutEvent(e);
}
void HotkeyEdit::keyPressEvent(QKeyEvent* e)
{
logger_->trace("keyPressEvent");
QKeySequence sequence {};
switch (e->key())
{
case Qt::Key::Key_Shift:
case Qt::Key::Key_Control:
case Qt::Key::Key_Alt:
case Qt::Key::Key_Meta:
case Qt::Key::Key_Mode_switch:
// Record modifiers only in sequence
sequence = e->modifiers().toInt();
break;
default:
// Record modifiers and keys in sequence, and save sequence
sequence = e->modifiers().toInt() | e->key();
if (sequence != p->sequence_)
{
p->sequence_ = sequence;
Q_EMIT KeySequenceChanged(sequence);
}
clearFocus();
break;
}
setText(sequence.toString());
}
void HotkeyEdit::keyReleaseEvent(QKeyEvent*)
{
logger_->trace("keyReleaseEvent");
// Modifiers were released prior to pressing a non-modifier key
setText({});
}
} // namespace ui
} // namespace qt
} // namespace scwx