Ignore:
Timestamp:
2008-02-26T18:42:03+01:00 (18 years ago)
Author:
david
Message:

add contextual help

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/GpxLayer.java

    r561 r567  
    121121
    122122                JMenuItem color = new JMenuItem(tr("Customize Color"), ImageProvider.get("colorchooser"));
     123                color.putClientProperty("help", "Action/LayerCustomizeColor");
    123124                color.addActionListener(new ActionListener() {
    124125                        public void actionPerformed(ActionEvent e) {
     
    142143
    143144                JMenuItem markersFromNamedTrackpoints = new JMenuItem(tr("Markers From Named Points"), ImageProvider.get("addmarkers"));
     145                markersFromNamedTrackpoints.putClientProperty("help", "Action/MarkersFromNamedPoints");
    144146                markersFromNamedTrackpoints.addActionListener(new ActionListener() {
    145147                        public void actionPerformed(ActionEvent e) {
     
    159161
    160162                JMenuItem applyAudio = new JMenuItem(tr("Make Sampled Audio Layer"), ImageProvider.get("applyaudio"));
     163                applyAudio.putClientProperty("help", "Action/MakeSampledAudioLayer");
    161164                applyAudio.addActionListener(new ActionListener() {
    162165                        public void actionPerformed(ActionEvent e) {
     
    185188
    186189                JMenuItem tagimage = new JMenuItem(tr("Import images"), ImageProvider.get("tagimages"));
     190                tagimage.putClientProperty("help", "Action/ImportImages");
    187191                tagimage.addActionListener(new ActionListener() {
    188192                        public void actionPerformed(ActionEvent e) {
Note: See TracChangeset for help on using the changeset viewer.