]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.charts/src/org/simantics/charts/editor/ChartKeyBindings.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.charts / src / org / simantics / charts / editor / ChartKeyBindings.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.charts.editor;
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 ChartKeyBindings {
30         
31     public static final Command LINK_TIME = new Command("org.simantics.charts.linktime");
32
33         public static final CommandKeyBinding[] DEFAULT_BINDINGS = {
34                 new CommandKeyBinding(LINK_TIME, null, KeyEvent.VK_5)
35         };      
36         
37 }