4897
<section xmlns:xi="http://www.w3.org/2001/XInclude" id="prefs-tag-toggle">
4898
<title><radio></title>
4900
<para>A toggle setting. Its representation is a toggle selection widget
4901
with items defined by <link linkend="prefs-tag-item"><item></link>
4908
<imagedata fileref="gfx/prefs-toggle" format="PNG"/>
4914
<section><title>Attributes</title>
4916
<informaltable frame="topbot">
4923
<entry>Default Value</entry>
4924
<entry>Description</entry>
4930
<entry valign="top">bind</entry>
4931
<entry valign="top">string</entry>
4932
<entry valign="top"/>
4933
<entry valign="top">The name of the variable or property to which the
4934
configuration element is bound.</entry>
4937
<entry valign="top">callback</entry>
4938
<entry valign="top">function</entry>
4939
<entry valign="top"/>
4940
<entry valign="top">A callback function which is called every time
4941
the value changes. The callback takes the name of the bound
4942
property and the new value as arguments.</entry>
4945
<entry valign="top">enabled</entry>
4946
<entry valign="top">boolean</entry>
4947
<entry valign="top">true</entry>
4948
<entry valign="top">Whether the config item is enabled. Disabled items
4949
appear greyed out.</entry>
4952
<entry valign="top">help</entry>
4953
<entry valign="top">string</entry>
4954
<entry valign="top"/>
4955
<entry valign="top">The tooltip text for the element in the
4956
configuration dialog.</entry>
4959
<entry valign="top">label</entry>
4960
<entry valign="top">string</entry>
4961
<entry valign="top"/>
4962
<entry valign="top">The label text for the element in the
4963
configuration dialog.</entry>
4966
<entry valign="top">items</entry>
4967
<entry valign="top">tuple</entry>
4968
<entry valign="top"/>
4969
<entry valign="top">The items which are children of an toggle can be accessed via this
4970
variable. You will get a list of tuples in the form of
4971
(label, value).</entry>
4982
<section><title>Examples</title>
4984
<programlisting><![CDATA[
4985
<toggle id="mytoggle" label="Borders" bind="mytoggle" enabled="True" >
4986
<item label="Left" value="left"/>
4987
<item label="Right" value="right"/>
4988
<item label="Top" value="top"/>
4989
<item label="Bottom" value="bottom"/>
4991
]]></programlisting>
4897
4996
<section xmlns:xi="http://www.w3.org/2001/XInclude" id="prefs-tag-unit">
4898
4997
<title><unit></title>