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