Changeset 469 in josm for trunk/src/org
- Timestamp:
- 2007-11-23T09:21:51+01:00 (17 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/AlignInCircleAction.java
r301 r469 28 28 29 29 public AlignInCircleAction() { 30 super(tr("Align Nodes in Circle"), "aligncircle", tr("Move the selected nodes into a circle."), KeyEvent.VK_O, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);30 super(tr("Align Nodes in Circle"), "aligncircle", tr("Move the selected nodes into a circle."), KeyEvent.VK_O, 0, true); 31 31 } 32 32 -
trunk/src/org/openstreetmap/josm/actions/AlignInLineAction.java
r301 r469 28 28 29 29 public AlignInLineAction() { 30 super(tr("Align Nodes in Line"), "alignline", tr("Move the selected nodes onto a line."), KeyEvent.VK_L, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);30 super(tr("Align Nodes in Line"), "alignline", tr("Move the selected nodes onto a line."), KeyEvent.VK_L, 0, true); 31 31 } 32 32 -
trunk/src/org/openstreetmap/josm/actions/CombineWayAction.java
r429 r469 49 49 50 50 public CombineWayAction() { 51 super(tr("Combine Way"), "combineway", tr("Combine several ways into one."), KeyEvent.VK_C, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);51 super(tr("Combine Way"), "combineway", tr("Combine several ways into one."), KeyEvent.VK_C, 0, true); 52 52 DataSet.selListeners.add(this); 53 53 } -
trunk/src/org/openstreetmap/josm/actions/JoinNodeWayAction.java
r466 r469 35 35 public JoinNodeWayAction() { 36 36 super(tr("Join node to way"), "joinnodeway", 37 tr("Join a node into the nearest way segments"), KeyEvent.VK_J, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);37 tr("Join a node into the nearest way segments"), KeyEvent.VK_J, 0, true); 38 38 } 39 39 -
trunk/src/org/openstreetmap/josm/actions/MergeNodesAction.java
r429 r469 53 53 54 54 public MergeNodesAction() { 55 super(tr("Merge Nodes"), "mergenodes", tr("Merge nodes into one."), KeyEvent.VK_M, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);55 super(tr("Merge Nodes"), "mergenodes", tr("Merge nodes into one."), KeyEvent.VK_M, 0, true); 56 56 DataSet.selListeners.add(this); 57 57 } -
trunk/src/org/openstreetmap/josm/actions/ReverseWayAction.java
r343 r469 27 27 super(tr("Reverse ways"), "wayflip", 28 28 tr("Reverse the direction of all selected ways."), 29 KeyEvent.VK_R, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);29 KeyEvent.VK_R, 0, true); 30 30 } 31 31 -
trunk/src/org/openstreetmap/josm/actions/SplitWayAction.java
r393 r469 51 51 */ 52 52 public SplitWayAction() { 53 super(tr("Split Way"), "splitway", tr("Split a way at the selected node."), KeyEvent.VK_P, KeyEvent.CTRL_MASK | KeyEvent.SHIFT_MASK, true);53 super(tr("Split Way"), "splitway", tr("Split a way at the selected node."), KeyEvent.VK_P, 0, true); 54 54 DataSet.selListeners.add(this); 55 55 } -
trunk/src/org/openstreetmap/josm/actions/UnselectAllAction.java
r468 r469 14 14 15 15 public UnselectAllAction() { 16 super(tr("Unselect All"),"unselectall", tr("Unselect all objects."), KeyEvent.VK_ A, KeyEvent.CTRL_DOWN_MASK | KeyEvent.SHIFT_DOWN_MASK, true);16 super(tr("Unselect All"),"unselectall", tr("Unselect all objects."), KeyEvent.VK_U, 0, true); 17 17 18 // Add extra shortcut U18 // Add extra shortcut C-S-a 19 19 Main.contentPane.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW).put( 20 KeyStroke.getKeyStroke(KeyEvent.VK_ U, 0), tr("Unselect All"));20 KeyStroke.getKeyStroke(KeyEvent.VK_A, KeyEvent.CTRL_DOWN_MASK | KeyEvent.SHIFT_DOWN_MASK), tr("Unselect All")); 21 21 } 22 22
Note:
See TracChangeset
for help on using the changeset viewer.