/* * This file is part of lanterna (http://code.google.com/p/lanterna/). * * lanterna is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * Copyright (C) 2010-2012 Martin */ package com.googlecode.lanterna.input; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.List; /** * Common key press profiles that seems to be shared by most terminals/terminal emulators. * @author Martin */ public class CommonProfile extends KeyMappingProfile { private static final List<CharacterPattern> COMMON_PATTERNS = new ArrayList<CharacterPattern>(Arrays.asList( new CharacterPattern[] { new BasicCharacterPattern(new Key(Key.Kind.ArrowUp), ESC_CODE, '[', 'A'), new BasicCharacterPattern(new Key(Key.Kind.ArrowDown), ESC_CODE, '[', 'B'), new BasicCharacterPattern(new Key(Key.Kind.ArrowRight), ESC_CODE, '[', 'C'), new BasicCharacterPattern(new Key(Key.Kind.ArrowLeft), ESC_CODE, '[', 'D'), new BasicCharacterPattern(new Key(Key.Kind.Tab), '\t'), new BasicCharacterPattern(new Key(Key.Kind.Enter), '\n'), new BasicCharacterPattern(new Key(Key.Kind.ReverseTab), ESC_CODE, '[', 'Z'), new BasicCharacterPattern(new Key(Key.Kind.Backspace), (char)0x7f), new BasicCharacterPattern(new Key(Key.Kind.Insert), ESC_CODE, '[', '2', '~'), new BasicCharacterPattern(new Key(Key.Kind.Delete), ESC_CODE, '[', '3', '~'), new BasicCharacterPattern(new Key(Key.Kind.Home), ESC_CODE, '[', 'H'), new BasicCharacterPattern(new Key(Key.Kind.End), ESC_CODE, '[', 'F'), new BasicCharacterPattern(new Key(Key.Kind.PageUp), ESC_CODE, '[', '5', '~'), new BasicCharacterPattern(new Key(Key.Kind.PageDown), ESC_CODE, '[', '6', '~'), new BasicCharacterPattern(new Key(Key.Kind.F1), ESC_CODE, 'O', 'P'), //Cygwin new BasicCharacterPattern(new Key(Key.Kind.F1), ESC_CODE, '[', '1', '1', '~'), new BasicCharacterPattern(new Key(Key.Kind.F2), ESC_CODE, 'O', 'Q'), //Cygwin new BasicCharacterPattern(new Key(Key.Kind.F2), ESC_CODE, '[', '1', '2', '~'), new BasicCharacterPattern(new Key(Key.Kind.F3), ESC_CODE, 'O', 'R'), //Cygwin new BasicCharacterPattern(new Key(Key.Kind.F3), ESC_CODE, '[', '1', '3', '~'), new BasicCharacterPattern(new Key(Key.Kind.F4), ESC_CODE, 'O', 'S'), //Cygwin new BasicCharacterPattern(new Key(Key.Kind.F4), ESC_CODE, '[', '1', '4', '~'), new BasicCharacterPattern(new Key(Key.Kind.F5), ESC_CODE, '[', '1', '5', '~'), new BasicCharacterPattern(new Key(Key.Kind.F6), ESC_CODE, '[', '1', '7', '~'), new BasicCharacterPattern(new Key(Key.Kind.F7), ESC_CODE, '[', '1', '8', '~'), new BasicCharacterPattern(new Key(Key.Kind.F8), ESC_CODE, '[', '1', '9', '~'), new BasicCharacterPattern(new Key(Key.Kind.F9), ESC_CODE, '[', '2', '0', '~'), new BasicCharacterPattern(new Key(Key.Kind.F10), ESC_CODE, '[', '2', '1', '~'), new BasicCharacterPattern(new Key(Key.Kind.F11), ESC_CODE, '[', '2', '3', '~'), new BasicCharacterPattern(new Key(Key.Kind.F12), ESC_CODE, '[', '2', '4', '~'), new AltAndCharacterPattern(), new CtrlAndCharacterPattern(), new CtrlAltAndCharacterPattern(), new ScreenInfoCharacterPattern() })); @Override Collection<CharacterPattern> getPatterns() { return new ArrayList<CharacterPattern>(COMMON_PATTERNS); } }