source: osm/applications/editors/josm/plugins/surveyor/src/surveyor.xml@ 2974

Last change on this file since 2974 was 2943, checked in by christofd, 18 years ago

changed AnnotationPreset behavior (need a SetNodeAction first)

File size: 3.5 KB
Line 
1<?xml version="1.0"?>
2<surveyor rows="3" columns="3" width="0" height="0">
3 <!-- icons can either be absolute paths or relative paths to the .josm directory -->
4 <!-- action class: either fully qualified classnames or if not found,
5 package at.dallermassl.josm.plugin.surveyor.action is assumed -->
6 <button label="Tunnel Start" hotkey="T" icon="tunnel">
7 <action class="ConsolePrinterAction" params="tunnel start,tunnel"/>
8 <action class="SetWaypointAction" params="tunnel start"/>
9 <!--action class="PlayAudioAction" params="/usr/share/sounds/KDE_Window_Iconify.wav"/-->
10 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/t.ogg"/>
11 </button>
12 <button label="Bridge" hotkey="B" type="toggle">
13 <action class="SetWaypointAction" params="bridge"/>
14 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/b.ogg"/>
15 </button>
16 <button label="Village/City" hotkey="V" icon="place">
17 <action class="SetNodeAction" params=""/>
18 <action class="AnnotationPresetAction" params="Places"/>
19 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/v.ogg"/>
20 </button>
21 <button label="Parking" hotkey="P" icon="parking">
22 <action class="SetNodeAction" params="amenity=parking"/>
23 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/p.ogg"/>
24 </button>
25 <button label="One Way" hotkey="O" icon="noentry">
26 <action class="SetWaypointAction" params="oneway=yes"/>
27 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/o.ogg"/>
28 </button>
29 <button label="Church" hotkey="C" icon="church">
30 <action class="SetNodeAction" params="amenity=place_of_worship,denomination=christian"/>
31 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/c.ogg"/>
32 </button>
33 <button label="Fuel Station" hotkey="F" icon="fuel">
34 <action class="SetNodeAction" params="amenity=fuel"/>
35 <!--action class="AnnotationPresetAction" params="Fuel"/-->
36 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/f.ogg"/>
37 </button>
38 <button label="Hotel" hotkey="H" icon="bed">
39 <action class="SetNodeAction" params="tourism=hotel"/>
40 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/h.ogg"/>
41 </button>
42 <button label="Motorway" hotkey="1">
43 <action class="SetWaypointAction" params="Motorway"/>
44 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/x.ogg"/>
45 </button>
46 <button label="Primary" hotkey="2">
47 <action class="SetWaypointAction" params="Primary"/>
48 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/x.ogg"/>
49 </button>
50 <button label="Secondary" hotkey="3">
51 <action class="SetWaypointAction" params="Secondary"/>
52 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/x.ogg"/>
53 </button>
54 <button label="Unclassified" hotkey="4">
55 <action class="SetWaypointAction" params="Unclassified"/>
56 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/x.ogg"/>
57 </button>
58 <button label="Residential" hotkey="5">
59 <action class="SetWaypointAction" params="Residential"/>
60 <action class="SystemExecuteAction" params="mplayer,-quiet,/usr/share/apps/klettres/de/alpha/x.ogg"/>
61 </button>
62</surveyor>
Note: See TracBrowser for help on using the repository browser.