Changeset 27826 in osm
- Timestamp:
- 2012-02-17T17:12:24+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java
r27632 r27826 188 188 189 189 if ( Main.main.menu != null ) { 190 commandMenu = Main.main.menu.addMenu(marktr("Commands") , KeyEvent.VK_ C, Main.main.menu.defaultMenuPos, ht("/Plugin/CommandLine"));190 commandMenu = Main.main.menu.addMenu(marktr("Commands") , KeyEvent.VK_M, Main.main.menu.defaultMenuPos, ht("/Plugin/CommandLine")); 191 191 MainMenu.add(Main.main.menu.toolsMenu, new CommandLineAction(this)); 192 192 } -
applications/editors/josm/plugins/FastDraw/build.xml
r27555 r27826 32 32 <property name="commit.message" value="FastDraw: shortcut parsing"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="4 667"/>34 <property name="plugin.main.version" value="4928"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/FastDraw/src/org/openstreetmap/josm/plugins/fastdraw/FastDrawingMode.java
r27590 r27826 93 93 FastDrawingMode(MapFrame mapFrame) { 94 94 super(tr("FastDrawing"), "turbopen.png", tr("Fast drawing mode"), 95 Shortcut.registerShortcut("mapmode:fastdraw", tr("Mode: {0}", tr("Fast drawing mode")), KeyEvent.VK_T, Shortcut.GROUP_ EDIT)95 Shortcut.registerShortcut("mapmode:fastdraw", tr("Mode: {0}", tr("Fast drawing mode")), KeyEvent.VK_T, Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1) 96 96 ,mapFrame, Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); 97 97 line=new DrawnPolyLine(); -
applications/editors/josm/plugins/importvec/build.xml
r27336 r27826 32 32 <property name="commit.message" value="Commit message"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="4 549"/>34 <property name="plugin.main.version" value="4928"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/importvec/src/org/openstreetmap/josm/plugins/importvec/ImportVectorAction.java
r26684 r27826 45 45 public ImportVectorAction() { 46 46 super(tr("Import..."), "open", tr("Import vector graphics."), 47 Shortcut.registerShortcut("system:import", tr("File: {0}", tr("Import...")), KeyEvent.VK_I, Shortcut.GROUP_ MENU), false);47 Shortcut.registerShortcut("system:import", tr("File: {0}", tr("Import...")), KeyEvent.VK_I, Shortcut.GROUP_DIRECT+Shortcut.GROUPS_ALT1), false); 48 48 // Avoid to override "open" toolbar function 49 49 putValue("toolbar", "importvec"); -
applications/editors/josm/plugins/measurement/build.xml
r26597 r27826 27 27 <project name="measurement" default="dist" basedir="."> 28 28 <property name="commit.message" value="recompile dure to core change"/> 29 <property name="plugin.main.version" value="4 395"/>29 <property name="plugin.main.version" value="4928"/> 30 30 <property name="josm" location="../../core/dist/josm-custom.jar"/> 31 31 <property name="plugin.dist.dir" value="../../dist"/> -
applications/editors/josm/plugins/measurement/src/org/openstreetmap/josm/plugins/measurement/MeasurementDialog.java
r27464 r27826 67 67 super(tr("Measured values"), "measure", tr("Open the measurement window."), 68 68 Shortcut.registerShortcut("subwindow:measurement", tr("Toggle: {0}", tr("Measured values")), 69 KeyEvent.VK_ M, Shortcut.GROUP_LAYER), 150);69 KeyEvent.VK_U, Shortcut.GROUP_DIRECT3), 150); 70 70 71 71 resetButton = new SideButton(marktr("Reset"), "select", "Measurement", -
applications/editors/josm/plugins/openvisible/build.xml
r26605 r27826 32 32 <property name="commit.message" value="Changed the constructor signature of the plugin main class; updated build.xml"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="4 394"/>34 <property name="plugin.main.version" value="4928"/> 35 35 <property name="josm" location="../../core/dist/josm-custom.jar"/> 36 36 <property name="plugin.dist.dir" value="../../dist"/> -
applications/editors/josm/plugins/openvisible/src/at/dallermassl/josm/plugin/openvisible/OpenVisibleAction.java
r23191 r27826 49 49 tr("Open only files that are visible in current view."), 50 50 Shortcut.registerShortcut("tools:openvisible", tr("Menu: {0}", tr("Open Visible...")), 51 KeyEvent.VK_I, Shortcut.GROUP_ MENU, Shortcut.SHIFT_DEFAULT), true);51 KeyEvent.VK_I, Shortcut.GROUP_DIRECT3+Shortcut.GROUPS_ALT1), true); 52 52 } 53 53 -
applications/editors/josm/plugins/terracer/build.xml
r26990 r27826 32 32 <property name="ant.build.javac.target" value="1.5"/> 33 33 <property name="commit.message" value="applied #j5760 (patch by robome) - Order of housenumbers not correct"/> 34 <property name="plugin.main.version" value="4 549"/>34 <property name="plugin.main.version" value="4928"/> 35 35 <target name="init"> 36 36 <mkdir dir="${plugin.build.dir}"/> -
applications/editors/josm/plugins/terracer/src/terracer/TerracerAction.java
r26029 r27826 71 71 Shortcut.registerShortcut("tools:Terracer", tr("Tool: {0}", 72 72 tr("Terrace a building")), KeyEvent.VK_T, 73 Shortcut.GROUP_EDIT , Shortcut.SHIFT_DEFAULT), true);73 Shortcut.GROUP_EDIT+Shortcut.GROUPS_ALT1), true); 74 74 } 75 75
Note:
See TracChangeset
for help on using the changeset viewer.