1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
<?xml version="1.0"?>
<PropertyList>
<!-- Control the weather -->
<name>system-failures</name>
<width>300</width>
<height>240</height>
<modal>false</modal>
<text>
<x>10</x>
<y>210</y>
<label>System Failures</label>
</text>
<text>
<x>30</x>
<y>180</y>
<label>(Uncheck a system to fail it.)</label>
</text>
<checkbox>
<x>30</x>
<y>150</y>
<width>20</width>
<height>20</height>
<label>Static System</label>
<property>/systems/static/serviceable</property>
</checkbox>
<checkbox>
<x>30</x>
<y>120</y>
<width>20</width>
<height>20</height>
<label>Pitot System</label>
<property>/systems/pitot/serviceable</property>
</checkbox>
<checkbox>
<x>30</x>
<y>90</y>
<width>20</width>
<height>20</height>
<label>Electrical System</label>
<property>/systems/electrical/serviceable</property>
</checkbox>
<checkbox>
<x>30</x>
<y>60</y>
<width>20</width>
<height>20</height>
<label>Vacuum System</label>
<property>/systems/vacuum/serviceable</property>
</checkbox>
<group>
<y>10</y>
<button>
<x>10</x>
<y>0</y>
<legend>OK</legend>
<binding>
<command>dialog-apply</command>
</binding>
<binding>
<command>dialog-close</command>
</binding>
<default>true</default>
</button>
<button>
<x>60</x>
<y>0</y>
<legend>Apply</legend>
<binding>
<command>dialog-apply</command>
</binding>
</button>
<button>
<x>140</x>
<y>0</y>
<legend>Reset</legend>
<binding>
<command>dialog-update</command>
</binding>
</button>
<button>
<x>220</x>
<y>0</y>
<legend>Cancel</legend>
<binding>
<command>dialog-close</command>
</binding>
</button>
</group>
</PropertyList>
|