@@ -17,7 +17,6 @@ private slots:
17
17
void AltGrKeyEventWellFormed () noexcept ;
18
18
void ShiftSpaceWellFormed () noexcept ;
19
19
void ShiftBackSpaceWellFormed () noexcept ;
20
- void SpanishKeyboardLayout () noexcept ;
21
20
22
21
// Mouse Input
23
22
void MouseLeftClick () noexcept ;
@@ -266,58 +265,5 @@ void TestInputCommon::MouseMiddleClick() noexcept
266
265
QCOMPARE (middleClickRelease, QString{ " <MiddleRelease><1,2>" });
267
266
}
268
267
269
- void TestInputCommon::SpanishKeyboardLayout () noexcept
270
- {
271
- // Issue 720: Spanish layout ignores Left Square Bracket [
272
- // NOTE: The "`" referenced below is "[" on a US layout keyboard for Windows/Linux and literal for MacOS.
273
-
274
- // Windows ` + Space. Prints: `
275
- QKeyEvent evAccentSpace{ QKeyEvent::KeyPress, Qt::Key_Space, Qt::NoModifier, QStringLiteral (" `" ) };
276
- QCOMPARE (NeovimQt::Input::convertKey (evAccentSpace), QStringLiteral (" `" ));
277
-
278
- // Windows ``: two events are sent on the second key event. Prints: ``
279
- // NOTE: Linux/MacOS do not send QKeyEvents for this scenario.
280
- QKeyEvent evAccentFirst{ QKeyEvent::KeyPress, Qt::Key_QuoteLeft, Qt::NoModifier, QStringLiteral (" `" ) };
281
- QKeyEvent evAccentSecond{ QKeyEvent::KeyPress, 0 , Qt::NoModifier, QStringLiteral (" `" ) };
282
-
283
- // Windows AltGr (Right Alt) + `. Prints: [
284
- QKeyEvent evAltGrSquareBracketWindows{ QKeyEvent::KeyPress, Qt::Key_AsciiCircum, Qt::AltModifier, QStringLiteral (" [" ) };
285
- QCOMPARE (NeovimQt::Input::convertKey (evAltGrSquareBracketWindows), QStringLiteral (" [" ));
286
-
287
- // Linux AltGr (Right Alt) + `. Prints: [
288
- QKeyEvent evAltGrSquareBracketLinux{ QKeyEvent::KeyPress, Qt::Key_BracketLeft, Qt::GroupSwitchModifier, QStringLiteral (" [" ) };
289
- QCOMPARE (NeovimQt::Input::convertKey (evAltGrSquareBracketLinux), QStringLiteral (" [" ));
290
-
291
- // // MacOS Alt + `: Prints [
292
- // QKeyEvent evAltLeftSquareBracketMacOS{ QKeyEvent::KeyPress, Qt::Key_Less, Qt::AltModifier, QStringLiteral("[") };
293
- // QCOMPARE(NeovimQt::Input::convertKey(evAltLeftSquareBracketMacOS), QStringLiteral("["));
294
- //
295
- // // MacOS Alt + \: Prints [
296
- // QKeyEvent evAltRightSquareBracketMacOS{ QKeyEvent::KeyPress, Qt::Key_Apostrophe, Qt::AltModifier, QStringLiteral("]") };
297
- // QCOMPARE(NeovimQt::Input::convertKey(evAltRightSquareBracketMacOS), QStringLiteral("["));
298
-
299
- // Windows Shift + ` then Space. Prints ^
300
- // NOTE: Linux does not send QKeyEvents for this scenario.
301
- QKeyEvent evShiftAccentSpace{ QKeyEvent::KeyPress, Qt::Key_Space, Qt::NoModifier, QStringLiteral (" ^" ) };
302
- QCOMPARE (NeovimQt::Input::convertKey (evShiftAccentSpace), QStringLiteral (" ^" ));
303
-
304
- // Windows Shift + ``. Prints ^^ (Windows) and ^ (Linux)
305
- // NOTE: Linux/MacOS do not send QKeyEvents for this scenario.
306
- QKeyEvent evShiftAccentAccent1{ QKeyEvent::KeyPress, Qt::Key_AsciiCircum, Qt::ShiftModifier, QStringLiteral (" ^" ) };
307
- QKeyEvent evShiftAccentAccent2{ QKeyEvent::KeyPress, 0 , Qt::ShiftModifier, QStringLiteral (" ^" ) };
308
- QCOMPARE (NeovimQt::Input::convertKey (evShiftAccentAccent1), QStringLiteral (" ^" ));
309
- QCOMPARE (NeovimQt::Input::convertKey (evShiftAccentAccent2), QStringLiteral (" ^" ));
310
-
311
- // Windows ` then e. Prints: è
312
- // NOTE: Linux/MacOS do not send QKeyEvents for this scenario.
313
- QKeyEvent evAccentE{ QKeyEvent::KeyPress, Qt::Key_E, Qt::NoModifier, QStringLiteral (" ê" ) };
314
- QCOMPARE (NeovimQt::Input::convertKey (evAccentE), QStringLiteral (" ê" ));
315
-
316
- // Windows Shift + ^ then e. Prints: ê
317
- // NOTE: Linux/MacOS do not send QKeyEvents for this scenario.
318
- QKeyEvent evShiftAccentE{ QKeyEvent::KeyPress, Qt::Key_E, Qt::NoModifier, QStringLiteral (" ê" ) };
319
- QCOMPARE (NeovimQt::Input::convertKey (evShiftAccentE), QStringLiteral (" ê" ));
320
- }
321
-
322
268
#include " tst_input_common.moc"
323
269
QTEST_MAIN (TestInputCommon)
0 commit comments