173174175176177178179180181182183184
input.appendChar('o'); } } public static void triggerP(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('P'); } else { input.appendChar('p'); } }
182183184185186187188189190191192193
input.appendChar('p'); } } public static void triggerQ(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('Q'); } else { input.appendChar('q'); } }
191192193194195196197198199200201202
input.appendChar('q'); } } public static void triggerR(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('R'); } else { input.appendChar('r'); } }
200201202203204205206207208209210211
input.appendChar('r'); } } public static void triggerS(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('S'); } else { input.appendChar('s'); } }
209210211212213214215216217218219220
input.appendChar('s'); } } public static void triggerT(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('T'); } else { input.appendChar('t'); } }
218219220221222223224225226227228229
input.appendChar('t'); } } public static void triggerU(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('U'); } else { input.appendChar('u'); } }
227228229230231232233234235236237238
input.appendChar('u'); } } public static void triggerV(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('V'); } else { input.appendChar('v'); } }
236237238239240241242243244245246247
input.appendChar('v'); } } public static void triggerW(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('W'); } else { input.appendChar('w'); } }
245246247248249250251252253254255256
input.appendChar('w'); } } public static void triggerX(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('X'); } else { input.appendChar('x'); } }
254255256257258259260261262263264265
input.appendChar('x'); } } public static void triggerY(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('Y'); } else { input.appendChar('y'); } }