- Timestamp:
- 2008-02-26T18:42:03+01:00 (17 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/layer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/GpxLayer.java
r561 r567 121 121 122 122 JMenuItem color = new JMenuItem(tr("Customize Color"), ImageProvider.get("colorchooser")); 123 color.putClientProperty("help", "Action/LayerCustomizeColor"); 123 124 color.addActionListener(new ActionListener() { 124 125 public void actionPerformed(ActionEvent e) { … … 142 143 143 144 JMenuItem markersFromNamedTrackpoints = new JMenuItem(tr("Markers From Named Points"), ImageProvider.get("addmarkers")); 145 markersFromNamedTrackpoints.putClientProperty("help", "Action/MarkersFromNamedPoints"); 144 146 markersFromNamedTrackpoints.addActionListener(new ActionListener() { 145 147 public void actionPerformed(ActionEvent e) { … … 159 161 160 162 JMenuItem applyAudio = new JMenuItem(tr("Make Sampled Audio Layer"), ImageProvider.get("applyaudio")); 163 applyAudio.putClientProperty("help", "Action/MakeSampledAudioLayer"); 161 164 applyAudio.addActionListener(new ActionListener() { 162 165 public void actionPerformed(ActionEvent e) { … … 185 188 186 189 JMenuItem tagimage = new JMenuItem(tr("Import images"), ImageProvider.get("tagimages")); 190 tagimage.putClientProperty("help", "Action/ImportImages"); 187 191 tagimage.addActionListener(new ActionListener() { 188 192 public void actionPerformed(ActionEvent e) { -
trunk/src/org/openstreetmap/josm/gui/layer/markerlayer/MarkerLayer.java
r561 r567 272 272 @Override public Component[] getMenuEntries() { 273 273 JMenuItem color = new JMenuItem(tr("Customize Color"), ImageProvider.get("colorchooser")); 274 color.putClientProperty("help", "Action/LayerCustomizeColor"); 274 275 color.addActionListener(new ActionListener(){ 275 276 public void actionPerformed(ActionEvent e) { … … 293 294 294 295 JMenuItem applyaudio = new JMenuItem(tr("Apply Audio"), ImageProvider.get("applyaudio")); 296 applyaudio.putClientProperty("help", "Action/ApplyAudio"); 295 297 applyaudio.addActionListener(new ActionListener(){ 296 298 public void actionPerformed(ActionEvent e) { … … 319 321 320 322 JMenuItem syncaudio = new JMenuItem(tr("Synchronize Audio"), ImageProvider.get("audio-sync")); 323 syncaudio.putClientProperty("help", "Action/SynchronizeAudio"); 321 324 syncaudio.addActionListener(new ActionListener(){ 322 325 public void actionPerformed(ActionEvent e) { … … 326 329 327 330 JMenuItem moveaudio = new JMenuItem(tr("Make Audio Marker At Play Head"), ImageProvider.get("addmarkers")); 331 moveaudio.putClientProperty("help", "Action/MakeAudioMarkerAtPlayHead"); 328 332 moveaudio.addActionListener(new ActionListener(){ 329 333 public void actionPerformed(ActionEvent e) {
Note:
See TracChangeset
for help on using the changeset viewer.