Changeset 24502 in osm for applications/editors/josm/plugins/imagery
- Timestamp:
- 2010-12-01T22:30:31+01:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/imagery
- Files:
-
- 7 added
- 5 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagery/.classpath
- Property svn:executable deleted
-
applications/editors/josm/plugins/imagery/.project
- Property svn:executable deleted
-
applications/editors/josm/plugins/imagery/build.xml
r24501 r24502 105 105 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 106 106 <attribute name="Plugin-Description" value="Experimental union of SlippyMap plugin and WMSPlugin"/> 107 <attribute name="Plugin-Icon" value="images/ wms.png"/>107 <attribute name="Plugin-Icon" value="images/imagery.png"/> 108 108 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/WMSPlugin" /> 109 109 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> -
applications/editors/josm/plugins/imagery/src/org/openstreetmap/josm/plugins/imagery/AddImageryLayerAction.java
r24501 r24502 13 13 14 14 public AddImageryLayerAction(ImageryInfo info) { 15 super(info.getMenuName(), " wmsmenu", tr("Add imagery layer {0}",info.getName()), null, false);15 super(info.getMenuName(), "imagery_menu", tr("Add imagery layer {0}",info.getName()), null, false); 16 16 putValue("toolbar", "imagery_" + info.getToolbarName()); 17 17 this.info = info; -
applications/editors/josm/plugins/imagery/src/org/openstreetmap/josm/plugins/imagery/ImageryAdjustAction.java
r24501 r24502 37 37 38 38 public ImageryAdjustAction(MapFrame mapFrame) { 39 super(tr("Adjust imagery"), "adjust wms",39 super(tr("Adjust imagery"), "adjustimg", 40 40 tr("Adjust the position of the selected imagery layer"), mapFrame, 41 41 ImageProvider.getCursor("normal", "move")); -
applications/editors/josm/plugins/imagery/src/org/openstreetmap/josm/plugins/imagery/ImageryLayer.java
r24501 r24502 14 14 15 15 public abstract class ImageryLayer extends Layer { 16 16 protected static final Icon icon = 17 new ImageIcon(Toolkit.getDefaultToolkit().createImage(ImageryPlugin.class.getResource("/images/imagery_small.png"))); 17 18 protected MapView mv; 18 19 … … 43 44 } 44 45 45 protected static final Icon icon =46 new ImageIcon(Toolkit.getDefaultToolkit().createImage(ImageryPlugin.class.getResource("/images/wms_small.png")));47 48 46 @Override 49 47 public Icon getIcon() { -
applications/editors/josm/plugins/imagery/src/org/openstreetmap/josm/plugins/imagery/ImageryPreferenceEditor.java
r24501 r24502 52 52 @Override 53 53 public void addGui(final PreferenceTabbedPane gui) { 54 JPanel p = gui.createPreferenceTab(" wms", tr("Imagery Preferences"), tr("Modify list of imagery layers displayed in the Imagery menu"));54 JPanel p = gui.createPreferenceTab("imagery", tr("Imagery Preferences"), tr("Modify list of imagery layers displayed in the Imagery menu")); 55 55 56 56 model = new ImageryLayerTableModel();
Note:
See TracChangeset
for help on using the changeset viewer.