1
0
Fork 0
fgdata/gui/dialogs/interface-config.xml
James Turner 5c4142ed6d Option to disable mouse-mode feedback.
Drive off the 'show view names' checkbox in the view dialog for now, this might
evolve into a generic 'on-screen hints' control to avoid an explosion of
GUI checkboxes.

Also add a GUI checkbox (oh the irony...) to disable mouse flight-controls, to
keep AndersG and Emilian happy.
2013-03-12 21:45:06 +00:00

161 lines
3.3 KiB
XML

<?xml version="1.0"?>
<!-- Interface / interfaction configuration dialog-->
<PropertyList>
<name>interface-dialog</name>
<modal>false</modal>
<width>400</width>
<layout>vbox</layout>
<group>
<layout>hbox</layout>
<empty><stretch>1</stretch></empty>
<text>
<label>Interface Configuration</label>
</text>
<empty><stretch>1</stretch></empty>
<button>
<pref-width>16</pref-width>
<pref-height>16</pref-height>
<legend></legend>
<keynum>27</keynum>
<border>2</border>
<binding>
<command>dialog-close</command>
</binding>
</button>
</group>
<hrule/>
<group>
<layout>table</layout>
<halign>center</halign>
<text>
<row>0</row>
<col>0</col>
<label>Tooltips</label>
<padding>10</padding>
</text>
<checkbox>
<row>0</row>
<col>1</col>
<property>/sim/gui/tooltips-enabled</property>
<binding>
<command>dialog-apply</command>
</binding>
<binding>
<command>nasal</command>
<script>
var enabled = getprop('/sim/gui/tooltips-enabled');
# set delay to negative to disable tooltips
var delay = enabled ? 1000 : -1;
setprop('/sim/mouse/tooltip-delay-msec', delay);
</script>
</binding>
</checkbox>
<text>
<row>1</row>
<col>0</col>
<label>Tooltip on press</label>
<padding>10</padding>
<enable>
<property>/sim/gui/tooltips-enabled</property>
</enable>
</text>
<checkbox>
<row>1</row>
<col>1</col>
<property>/sim/mouse/click-shows-tooltip</property>
<binding>
<command>dialog-apply</command>
</binding>
<enable>
<property>/sim/gui/tooltips-enabled</property>
</enable>
</checkbox>
<text>
<row>2</row>
<col>0</col>
<label>Right-click cycles mouse mode</label>
<padding>10</padding>
</text>
<checkbox>
<row>2</row>
<col>1</col>
<property>/sim/mouse/right-button-mode-cycle-enabled</property>
<binding>
<command>dialog-apply</command>
</binding>
</checkbox>
<text>
<row>3</row>
<col>0</col>
<label>Knob/slider drag sensitivity</label>
<padding>10</padding>
</text>
<input>
<row>3</row>
<col>1</col>
<property>/sim/mouse/drag-sensitivity</property>
<live>true</live>
<binding>
<command>dialog-apply</command>
</binding>
</input>
<text>
<row>4</row>
<col>0</col>
<label>Invert mouse-wheel on knobs/sliders</label>
<padding>10</padding>
</text>
<checkbox>
<row>4</row>
<col>1</col>
<property>/sim/mouse/invert-mouse-wheel</property>
<binding>
<command>dialog-apply</command>
</binding>
</checkbox>
<text>
<row>5</row>
<col>0</col>
<label>Disable mouse flight-controls mode</label>
<padding>10</padding>
</text>
<checkbox>
<row>5</row>
<col>1</col>
<property>/sim/mouse/skip-flight-controls-mode</property>
<binding>
<command>dialog-apply</command>
</binding>
</checkbox>
</group>
<nasal>
<open><![CDATA[
]]></open>
</nasal>
</PropertyList>