838485868788899091929394
input.appendChar('e'); } } public static void triggerF(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('F'); } else { input.appendChar('f'); } }
9293949596979899100101102103
input.appendChar('f'); } } public static void triggerG(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('G'); } else { input.appendChar('g'); } }
101102103104105106107108109110111112
input.appendChar('g'); } } public static void triggerH(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('H'); } else { input.appendChar('h'); } }
110111112113114115116117118119120121
input.appendChar('h'); } } public static void triggerI(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('I'); } else { input.appendChar('i'); } }
119120121122123124125126127128129130
input.appendChar('i'); } } public static void triggerJ(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('J'); } else { input.appendChar('j'); } }
128129130131132133134135136137138139
input.appendChar('j'); } } public static void triggerK(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('K'); } else { input.appendChar('k'); } }
137138139140141142143144145146147148
input.appendChar('k'); } } public static void triggerL(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('L'); } else { input.appendChar('l'); } }
146147148149150151152153154155156157
input.appendChar('l'); } } public static void triggerM(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('M'); } else { input.appendChar('m'); } }
155156157158159160161162163164165166
input.appendChar('m'); } } public static void triggerN(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('N'); } else { input.appendChar('n'); } }
164165166167168169170171172173174175
input.appendChar('n'); } } public static void triggerO(PosScreen pos) { Input input = pos.getInput(); if (capsLockSet || input.isFunctionSet("SHIFT")) { input.appendChar('O'); } else { input.appendChar('o'); } }