/** * OpenKM, Open Document Management System (http://www.openkm.com) * Copyright (c) 2006-2011 Paco Avila & Josep Llort * * No bytes were intentionally harmed during the development of this application. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 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 General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ package com.openkm.frontend.client.util; /** * @author jllort * */ public class Keyboard { public static final int KEY_INSERT = 45; public static final int KEY_SUPR = 46; public static final int KEY_B = 66; public static final int KEY_C = 67; public static final int KEY_D = 68; public static final int KEY_L = 76; public static final int KEY_N = 78; public static final int KEY_Q = 81; public static final int KEY_T = 84; public static final int KEY_V = 86; public static final int KEY_X = 88; public static final int KEY_Z = 90; public static final int KEY_F1 = 112; public static final int KEY_F2 = 113; public static final int KEY_F5 = 116; }