1
0
Fork 0
fgdata/gui/dialogs/pushback.xml
2009-05-06 13:39:55 +00:00

131 lines
2.9 KiB
XML

<?xml version="1.0"?>
<PropertyList>
<name>pushback</name>
<layout>vbox</layout>
<nasal>
<open>
var pushback_position = aircraft.door.new("sim/model/pushback", 10.0);
pushback_position.setpos(pushback_position.getpos());
props.globals.initNode("/sim/model/pushback/enabled", 0, "BOOL" );
props.globals.initNode("/sim/model/pushback/target-speed-fps", 0.0 );
</open>
</nasal>
<group>
<layout>hbox</layout>
<text>
<label>Pushback</label>
</text>
<empty>
<stretch>true</stretch>
</empty>
<button>
<legend/>
<key>Esc</key>
<pref-width>16</pref-width>
<pref-height>16</pref-height>
<border>2</border>
<binding>
<command>dialog-close</command>
</binding>
</button>
</group>
<hrule/>
<group>
<stretch>true</stretch>
<layout>vbox</layout>
<halign>center</halign>
<valign>top</valign>
<checkbox>
<halign>left</halign>
<label>Show pushback</label>
<property>/sim/model/pushback/enabled</property>
<binding>
<command>property-toggle</command>
<property>/sim/model/pushback/enabled</property>
</binding>
</checkbox>
<checkbox>
<halign>left</halign>
<label>Connect pushback</label>
<property>/sim/model/pushback/position-norm</property>
<binding>
<command>nasal</command>
<script>pushback_position.toggle();</script>
</binding>
</checkbox>
<group>
<layout>hbox</layout>
<text>
<label>Speed:</label>
</text>
<slider>
<row>0</row>
<col>2</col>
<min>-34</min> <!-- +/- 20kts -->
<max>34</max>
<property>/sim/model/pushback/target-speed-fps</property>
<binding>
<command>dialog-apply</command>
</binding>
</slider>
<text>
<pref-width>16</pref-width>
<property>/sim/model/pushback/target-speed-fps</property>
<format>%2.0f</format>
<live>true</live>
</text>
<text>
<label>fps</label>
</text>
</group>
<hrule/>
<text>
<label>Cruise Control configuration</label>
</text>
<group>
<layout>hbox</layout>
<input>
<label>Kp</label>
<width>16</width>
<property>/sim/model/pushback/kp</property>
</input>
</group>
<group>
<layout>hbox</layout>
<input>
<label>Ki</label>
<width>16</width>
<property>/sim/model/pushback/ki</property>
</input>
</group>
<group>
<layout>hbox</layout>
<input>
<label>Kd</label>
<width>16</width>
<property>/sim/model/pushback/kd</property>
</input>
</group>
</group>
</PropertyList>