1
0
Fork 0

Added a "Presets" menu.

This commit is contained in:
curt 2002-11-18 21:29:52 +00:00
parent 2a346c9e3c
commit 6f8e2ab711
2 changed files with 39 additions and 6 deletions

View file

@ -40,8 +40,14 @@
<properties>Properties</properties> <properties>Properties</properties>
<!-- Environment menu --> <!-- Environment menu -->
<environment>Environment</environment> <presets>Presets</presets>
<goto-airport>Goto Airport</goto-airport> <preset-airport>New Airport</preset-airport>
<preset-runway>New Runway</preset-runway>
<preset-offset-distance>Set Offset Distance</preset-offset-distance>
<preset-altitude>Set Altitude</preset-altitude>
<preset-glideslope>Set Glideslope (degrees)</preset-glideslope>
<preset-airspeed>Set Airspeed (kts)</preset-airspeed>
<preset-commit>Commit Changes</preset-commit>
<!-- Autopilot menu --> <!-- Autopilot menu -->
<autopilot>Autopilot</autopilot> <autopilot>Autopilot</autopilot>

View file

@ -59,10 +59,37 @@
</submenu> </submenu>
<submenu> <submenu>
<name>strings/environment</name> <name>strings/presets</name>
<option> <option>
<name>strings/goto-airport</name> <name>strings/preset-airport</name>
<call>NewAirport</call> <call>fgPresetAirport</call>
</option>
<option>
<name>strings/preset-runway</name>
<call>fgPresetRunway</call>
</option>
<option>
<name>strings/preset-offset-distance</name>
<call>fgPresetOffsetDistance</call>
</option>
<option>
<name>strings/preset-altitude</name>
<call>fgPresetAltitude</call>
</option>
<option>
<name>strings/preset-glideslope</name>
<call>fgPresetGlideslope</call>
</option>
<option>
<name>strings/preset-airspeed</name>
<call>fgPresetAirspeed</call>
</option>
<option>
<seperator/>
</option>
<option>
<name>strings/preset-commit</name>
<call>fgPresetCommit</call>
</option> </option>
</submenu> </submenu>