Changeset 17032 in josm
- Timestamp:
- 2020-09-16T14:51:39+02:00 (4 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/relation/SelectInRelationListAction.java
r13130 r17032 22 22 putValue(NAME, tr("Select in relation list")); 23 23 putValue(SHORT_DESCRIPTION, tr("Select relation in relation list.")); 24 new ImageProvider("dialogs", " selectionlist").getResource().attachImageIcon(this, true);24 new ImageProvider("dialogs", "relationlist").getResource().attachImageIcon(this, true); 25 25 } 26 26 -
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyAllKeyValueAction.java
r17007 r17032 16 16 import org.openstreetmap.josm.gui.MainApplication; 17 17 import org.openstreetmap.josm.tools.Shortcut; 18 import org.openstreetmap.josm.tools.ImageProvider; 18 19 19 20 /** … … 33 34 putValue(NAME, tr("Copy all Keys/Values")); 34 35 putValue(SHORT_DESCRIPTION, tr("Copy the key and value of all the tags to clipboard")); 36 new ImageProvider("copy").getResource().attachImageIcon(this, true); 35 37 } 36 38 -
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyKeyValueAction.java
r16076 r17032 16 16 import org.openstreetmap.josm.data.osm.Tag; 17 17 import org.openstreetmap.josm.data.osm.Tagged; 18 import org.openstreetmap.josm.tools.ImageProvider; 18 19 19 20 /** … … 33 34 setName(0); 34 35 putValue(SHORT_DESCRIPTION, tr("Copy the key and value of the selected tags to clipboard")); 36 new ImageProvider("copy").getResource().attachImageIcon(this, true); 35 37 } 36 38 -
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/CopyValueAction.java
r13849 r17032 12 12 13 13 import org.openstreetmap.josm.data.osm.Tagged; 14 import org.openstreetmap.josm.tools.ImageProvider; 14 15 15 16 /** … … 29 30 putValue(NAME, tr("Copy Value")); 30 31 putValue(SHORT_DESCRIPTION, tr("Copy the value of the selected tag to clipboard")); 32 new ImageProvider("copy").getResource().attachImageIcon(this, true); 31 33 } 32 34 -
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/HelpAction.java
r16553 r17032 37 37 protected HelpAction() { 38 38 putValue(SHORT_DESCRIPTION, tr("Launch browser with wiki help for selected object")); 39 new ImageProvider(" dialogs", "search").getResource().attachImageIcon(this, true);39 new ImageProvider("help", "internet").getResource().attachImageIcon(this, true); 40 40 putValue(ACCELERATOR_KEY, getKeyStroke()); 41 41 } -
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/PropertiesDialog.java
r17007 r17032 113 113 import org.openstreetmap.josm.tools.AlphanumComparator; 114 114 import org.openstreetmap.josm.tools.GBC; 115 import org.openstreetmap.josm.tools.ImageProvider; 115 116 import org.openstreetmap.josm.tools.InputMapUtils; 116 117 import org.openstreetmap.josm.tools.Logging; … … 1270 1271 putValue(NAME, tr("Paste Value")); 1271 1272 putValue(SHORT_DESCRIPTION, tr("Paste the value of the selected tag from clipboard")); 1273 new ImageProvider("paste").getResource().attachImageIcon(this, true); 1272 1274 } 1273 1275 … … 1293 1295 putValue(NAME, tr("Search Key/Value/Type")); 1294 1296 putValue(SHORT_DESCRIPTION, tr("Search with the key and value of the selected tag, restrict to type (i.e., node/way/relation)")); 1297 new ImageProvider("dialogs/search").getResource().attachImageIcon(this, true); 1295 1298 } else { 1296 1299 putValue(NAME, tr("Search Key/Value")); 1297 1300 putValue(SHORT_DESCRIPTION, tr("Search with the key and value of the selected tag")); 1301 new ImageProvider("dialogs/search").getResource().attachImageIcon(this, true); 1298 1302 } 1299 1303 }
Note:
See TracChangeset
for help on using the changeset viewer.