]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.trend/src/org/simantics/trend/configuration/TrendKeyBindings.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.trend / src / org / simantics / trend / configuration / TrendKeyBindings.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.trend.configuration;\r
13 \r
14 import java.awt.event.KeyEvent;\r
15 \r
16 import org.simantics.scenegraph.g2d.events.command.Command;\r
17 import org.simantics.scenegraph.g2d.events.command.CommandKeyBinding;\r
18 import org.simantics.scenegraph.g2d.events.command.Commands;\r
19 \r
20 /**\r
21  * Describes a key binding of a command\r
22  * \r
23  * @See {@link Command} Command class\r
24  * @See {@link Commands} Default commands\r
25  * @See KeyToCommand Participant that forwards key presses to commands\r
26  * \r
27  * @author Toni Kalajainen\r
28  */\r
29 public class TrendKeyBindings {\r
30 \r
31         public static final CommandKeyBinding[] DEFAULT_BINDINGS = {\r
32 //              new ChartKeyBindings(TrendParticipant.TIME_WINDOW_MATCH_OTHERS, null, KeyEvent.VK_5),\r
33                 new CommandKeyBinding(Commands.PAN_LEFT, null, KeyEvent.VK_LEFT),\r
34                 new CommandKeyBinding(Commands.PAN_RIGHT, null, KeyEvent.VK_RIGHT),\r
35                 new CommandKeyBinding(Commands.PAN_UP, null, KeyEvent.VK_UP),\r
36                 new CommandKeyBinding(Commands.PAN_DOWN, null, KeyEvent.VK_DOWN),\r
37                 new CommandKeyBinding(Commands.ZOOM_TO_FIT, null, KeyEvent.VK_1),\r
38         new CommandKeyBinding(Commands.ZOOM_TO_FIT_HORIZ, null, KeyEvent.VK_2),\r
39         new CommandKeyBinding(Commands.ZOOM_TO_FIT_VERT, null, KeyEvent.VK_3),\r
40         new CommandKeyBinding(Commands.AUTOSCALE, null, KeyEvent.VK_4),\r
41         new CommandKeyBinding(Commands.AUTOSCALE, null, KeyEvent.VK_ESCAPE),\r
42                 new CommandKeyBinding(Commands.ZOOM_IN, null, KeyEvent.VK_PLUS),\r
43                 new CommandKeyBinding(Commands.ZOOM_IN, null, KeyEvent.VK_ADD),\r
44                 new CommandKeyBinding(Commands.ZOOM_OUT, null, KeyEvent.VK_MINUS),\r
45                 new CommandKeyBinding(Commands.ZOOM_OUT, null, KeyEvent.VK_SUBTRACT),\r
46 \r
47                 new CommandKeyBinding(Commands.CUT, null, KeyEvent.VK_X, KeyEvent.VK_CONTROL),\r
48                 new CommandKeyBinding(Commands.COPY, null, KeyEvent.VK_C, KeyEvent.VK_CONTROL),\r
49                 new CommandKeyBinding(Commands.PASTE, null, KeyEvent.VK_V, KeyEvent.VK_CONTROL),\r
50                 new CommandKeyBinding(Commands.PRINT, null, KeyEvent.VK_P, KeyEvent.VK_CONTROL),\r
51                 new CommandKeyBinding(Commands.PDFPRINT, null, KeyEvent.VK_P, KeyEvent.VK_ALT),\r
52                 new CommandKeyBinding(Commands.GRID_TOGGLE, null, KeyEvent.VK_G),\r
53                 new CommandKeyBinding(Commands.RULER_TOGGLE, null, KeyEvent.VK_R),\r
54                 new CommandKeyBinding(Commands.FOCUS_TOOLTIP, null, KeyEvent.VK_F9)\r
55         };\r
56         \r
57 }\r