When a form field loses focus a special keystroke event with willCommit=true is sent. This is based on work by Joao Netto <joaonetto901@gmail.com>remotes/origin/work/fhek/foreground_background_text
parent
1aa175cf3f
commit
d1ecad897c
9 changed files with 176 additions and 3 deletions
Binary file not shown.
@ -0,0 +1,106 @@ |
|||||||
|
/*
|
||||||
|
SPDX-FileCopyrightText: 2019 João Netto <joaonetto901@gmail.com> |
||||||
|
|
||||||
|
SPDX-License-Identifier: GPL-2.0-or-later |
||||||
|
*/ |
||||||
|
|
||||||
|
#include <QtTest> |
||||||
|
|
||||||
|
#include "../settings_core.h" |
||||||
|
#include <QLocale> |
||||||
|
#include <QMap> |
||||||
|
#include <QMimeDatabase> |
||||||
|
#include <QMimeType> |
||||||
|
#include <core/document.h> |
||||||
|
#include <core/form.h> |
||||||
|
#include <core/page.h> |
||||||
|
#include <qtestcase.h> |
||||||
|
|
||||||
|
#include "../generators/poppler/config-okular-poppler.h" |
||||||
|
|
||||||
|
class KeystrokeTest : public QObject |
||||||
|
{ |
||||||
|
Q_OBJECT |
||||||
|
|
||||||
|
private slots: |
||||||
|
void initTestCase(); |
||||||
|
void cleanupTestCase(); |
||||||
|
|
||||||
|
void testCommit(); |
||||||
|
void testKeystroke(); |
||||||
|
|
||||||
|
private: |
||||||
|
Okular::Document *m_document; |
||||||
|
QMap<QString, Okular::FormField *> m_fields; |
||||||
|
}; |
||||||
|
|
||||||
|
void KeystrokeTest::initTestCase() |
||||||
|
{ |
||||||
|
Okular::SettingsCore::instance(QStringLiteral("keystroketest")); |
||||||
|
m_document = new Okular::Document(nullptr); |
||||||
|
|
||||||
|
// Force consistent locale
|
||||||
|
QLocale locale(QStringLiteral("en_US")); |
||||||
|
QLocale::setDefault(locale); |
||||||
|
|
||||||
|
const QString testFile = QStringLiteral(KDESRCDIR "data/keystroketest.pdf"); |
||||||
|
QMimeDatabase db; |
||||||
|
const QMimeType mime = db.mimeTypeForFile(testFile); |
||||||
|
QCOMPARE(m_document->openDocument(testFile, QUrl(), mime), Okular::Document::OpenSuccess); |
||||||
|
|
||||||
|
const Okular::Page *page = m_document->page(0); |
||||||
|
const QLinkedList<Okular::FormField *> pageFormFields = page->formFields(); |
||||||
|
for (Okular::FormField *ff : pageFormFields) { |
||||||
|
m_fields.insert(ff->name(), ff); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
void KeystrokeTest::testCommit() |
||||||
|
{ |
||||||
|
Okular::FormFieldText *fft = reinterpret_cast<Okular::FormFieldText *>(m_fields[QStringLiteral("field2")]); |
||||||
|
|
||||||
|
// text that will be accepted
|
||||||
|
fft->setText(QStringLiteral("Lorem ipsum")); |
||||||
|
m_document->processKeystrokeCommitAction(fft->additionalAction(Okular::FormField::FieldModified), fft); |
||||||
|
QCOMPARE(fft->text(), QStringLiteral("Lorem ipsum")); |
||||||
|
|
||||||
|
// text that will be rejected
|
||||||
|
fft->setText(QStringLiteral("foo")); |
||||||
|
m_document->processKeystrokeCommitAction(fft->additionalAction(Okular::FormField::FieldModified), fft); |
||||||
|
QEXPECT_FAIL("", "reset to commited value not implemented", Continue); |
||||||
|
QCOMPARE(fft->text(), QStringLiteral("Lorem ipsum")); |
||||||
|
} |
||||||
|
|
||||||
|
void KeystrokeTest::testKeystroke() |
||||||
|
{ |
||||||
|
Okular::FormFieldText *fft = reinterpret_cast<Okular::FormFieldText *>(m_fields[QStringLiteral("field3")]); |
||||||
|
|
||||||
|
// accept
|
||||||
|
m_document->processKeystrokeAction(fft->additionalAction(Okular::FormField::FieldModified), fft, QStringLiteral("hello")); |
||||||
|
QCOMPARE(fft->text(), QStringLiteral("hello")); |
||||||
|
|
||||||
|
// accept
|
||||||
|
m_document->processKeystrokeAction(fft->additionalAction(Okular::FormField::FieldModified), fft, QStringLiteral("e")); |
||||||
|
QCOMPARE(fft->text(), QStringLiteral("e")); |
||||||
|
|
||||||
|
// accept
|
||||||
|
m_document->processKeystrokeAction(fft->additionalAction(Okular::FormField::FieldModified), fft, QStringLiteral("ee")); |
||||||
|
QCOMPARE(fft->text(), QStringLiteral("ee")); |
||||||
|
|
||||||
|
// accept
|
||||||
|
m_document->processKeystrokeAction(fft->additionalAction(Okular::FormField::FieldModified), fft, QStringLiteral("eee")); |
||||||
|
QCOMPARE(fft->text(), QStringLiteral("eee")); |
||||||
|
|
||||||
|
// reject
|
||||||
|
m_document->processKeystrokeAction(fft->additionalAction(Okular::FormField::FieldModified), fft, QStringLiteral("eeef")); |
||||||
|
QCOMPARE(fft->text(), QStringLiteral("eee")); |
||||||
|
} |
||||||
|
|
||||||
|
void KeystrokeTest::cleanupTestCase() |
||||||
|
{ |
||||||
|
m_document->closeDocument(); |
||||||
|
delete m_document; |
||||||
|
} |
||||||
|
|
||||||
|
QTEST_MAIN(KeystrokeTest) |
||||||
|
#include "keystroketest.moc" |
||||||
Loading…
Reference in new issue