128 lines
5.2 KiB
C++
128 lines
5.2 KiB
C++
|
// Copyright 2018 Citra Emulator Project
|
||
|
// Licensed under GPLv2 or any later version
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#include <QDialogButtonBox>
|
||
|
#include <QLabel>
|
||
|
#include <QLineEdit>
|
||
|
#include <QMessageBox>
|
||
|
#include <QString>
|
||
|
#include <QVBoxLayout>
|
||
|
#include "citra_qt/applets/swkbd.h"
|
||
|
|
||
|
QtKeyboardValidator::QtKeyboardValidator(QtKeyboard* keyboard_) : keyboard(keyboard_) {}
|
||
|
|
||
|
QtKeyboardValidator::State QtKeyboardValidator::validate(QString& input, int& pos) const {
|
||
|
if (keyboard->ValidateFilters(input.toStdString()) == Frontend::ValidationError::None) {
|
||
|
return State::Acceptable;
|
||
|
} else {
|
||
|
return State::Invalid;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
QtKeyboardDialog::QtKeyboardDialog(QWidget* parent, QtKeyboard* keyboard_)
|
||
|
: QDialog(parent), keyboard(keyboard_) {
|
||
|
using namespace Frontend;
|
||
|
KeyboardConfig config = keyboard->config;
|
||
|
layout = new QVBoxLayout;
|
||
|
label = new QLabel(QString::fromStdString(config.hint_text));
|
||
|
line_edit = new QLineEdit;
|
||
|
line_edit->setValidator(new QtKeyboardValidator(keyboard));
|
||
|
buttons = new QDialogButtonBox;
|
||
|
// Initialize buttons
|
||
|
switch (config.button_config) {
|
||
|
case ButtonConfig::Triple:
|
||
|
buttons->addButton(config.has_custom_button_text
|
||
|
? QString::fromStdString(config.button_text[2])
|
||
|
: tr(BUTTON_OKAY),
|
||
|
QDialogButtonBox::ButtonRole::AcceptRole);
|
||
|
buttons->addButton(config.has_custom_button_text
|
||
|
? QString::fromStdString(config.button_text[1])
|
||
|
: tr(BUTTON_FORGOT),
|
||
|
QDialogButtonBox::ButtonRole::HelpRole);
|
||
|
buttons->addButton(config.has_custom_button_text
|
||
|
? QString::fromStdString(config.button_text[0])
|
||
|
: tr(BUTTON_CANCEL),
|
||
|
QDialogButtonBox::ButtonRole::RejectRole);
|
||
|
break;
|
||
|
case ButtonConfig::Dual:
|
||
|
buttons->addButton(config.has_custom_button_text
|
||
|
? QString::fromStdString(config.button_text[1])
|
||
|
: tr(BUTTON_OKAY),
|
||
|
QDialogButtonBox::ButtonRole::AcceptRole);
|
||
|
buttons->addButton(config.has_custom_button_text
|
||
|
? QString::fromStdString(config.button_text[0])
|
||
|
: tr(BUTTON_CANCEL),
|
||
|
QDialogButtonBox::ButtonRole::RejectRole);
|
||
|
break;
|
||
|
case ButtonConfig::Single:
|
||
|
buttons->addButton(config.has_custom_button_text
|
||
|
? QString::fromStdString(config.button_text[0])
|
||
|
: tr(BUTTON_OKAY),
|
||
|
QDialogButtonBox::ButtonRole::AcceptRole);
|
||
|
break;
|
||
|
case ButtonConfig::None:
|
||
|
break;
|
||
|
}
|
||
|
connect(buttons, &QDialogButtonBox::accepted, this, [=] { Submit(); });
|
||
|
connect(buttons, &QDialogButtonBox::rejected, this, [=] {
|
||
|
button = QtKeyboard::cancel_id;
|
||
|
accept();
|
||
|
});
|
||
|
connect(buttons, &QDialogButtonBox::helpRequested, this, [=] {
|
||
|
button = QtKeyboard::forgot_id;
|
||
|
accept();
|
||
|
});
|
||
|
layout->addWidget(label);
|
||
|
layout->addWidget(line_edit);
|
||
|
layout->addWidget(buttons);
|
||
|
setLayout(layout);
|
||
|
}
|
||
|
|
||
|
void QtKeyboardDialog::Submit() {
|
||
|
auto error = keyboard->ValidateInput(line_edit->text().toStdString());
|
||
|
if (error != Frontend::ValidationError::None) {
|
||
|
HandleValidationError(error);
|
||
|
} else {
|
||
|
button = keyboard->ok_id;
|
||
|
text = line_edit->text();
|
||
|
accept();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void QtKeyboardDialog::HandleValidationError(Frontend::ValidationError error) {
|
||
|
using namespace Frontend;
|
||
|
const std::unordered_map<ValidationError, QString> VALIDATION_ERROR_MESSAGES = {
|
||
|
{ValidationError::FixedLengthRequired,
|
||
|
tr("Text length is not correct (should be %1 characters)")
|
||
|
.arg(keyboard->config.max_text_length)},
|
||
|
{ValidationError::MaxLengthExceeded,
|
||
|
tr("Text is too long (should be no more than %1 characters)")
|
||
|
.arg(keyboard->config.max_text_length)},
|
||
|
{ValidationError::BlankInputNotAllowed, tr("Blank input is not allowed")},
|
||
|
{ValidationError::EmptyInputNotAllowed, tr("Empty input is not allowed")},
|
||
|
};
|
||
|
QMessageBox::critical(this, tr("Validation error"), VALIDATION_ERROR_MESSAGES.at(error));
|
||
|
}
|
||
|
|
||
|
QtKeyboard::QtKeyboard(QWidget& parent_) : parent(parent_) {}
|
||
|
|
||
|
void QtKeyboard::Setup(const Frontend::KeyboardConfig* config) {
|
||
|
SoftwareKeyboard::Setup(config);
|
||
|
if (this->config.button_config != Frontend::ButtonConfig::None) {
|
||
|
ok_id = static_cast<u8>(this->config.button_config);
|
||
|
}
|
||
|
QMetaObject::invokeMethod(this, "OpenInputDialog", Qt::BlockingQueuedConnection);
|
||
|
}
|
||
|
|
||
|
void QtKeyboard::OpenInputDialog() {
|
||
|
QtKeyboardDialog dialog(&parent, this);
|
||
|
dialog.setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint |
|
||
|
Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint);
|
||
|
dialog.setWindowModality(Qt::WindowModal);
|
||
|
dialog.exec();
|
||
|
LOG_INFO(Frontend, "SWKBD input dialog finished, text={}, button={}", dialog.text.toStdString(),
|
||
|
dialog.button);
|
||
|
Finalize(dialog.text.toStdString(), dialog.button);
|
||
|
}
|