<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>

<!DOCTYPE dialog SYSTEM "chrome://xtrastuff/locale/xtrastuff.dtd">
<!--
 Translation of the above 'Document Type Declaration' ('DTDec'):
 DOCTYPE:	The 'doctype', or set of markup declarations that provide a grammar (element types, entities, etc.) for
 			this class of documents.
 overlay:	Specifies the root element of this document; here, it has the tagname 'overlay'.  Although somewhat redundant,
 			this MUST match the tagname of the root element of this document.  This root element will usually appear shortly
 			after the DOCTYPE declaration.
 SYSTEM:	Says that the following string is a reference to a local, or 'system' file.  An alternative to this is to
 			reference a 'formal public identifier', for which you would use the keyword 'PUBLIC'.
 "...":		Is the file (or identifier) being referenced; here, the referenced file contains entities with appropriate
 			locale strings.
-->

<window	title="Width test dialog"
		xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
		
		<!-- Container, to be able to have scrollbars for the window's content, if desired. -->
		<box orient="vertical" style="overflow:auto;" flex="1">
			<!-- Start main content -->
			
			<groupbox orient="vertical">
				<caption label="Misc options"/>
				<hbox equalsize="always">
					<hbox flex="1">
						<vbox flex="1">
							<label>Tab behaviour</label>
							<radiogroup id="rgrpTabClose" orient="vertical">
								<radio flex="1" id="radioTabEvery" value="0" label="Close button on every tab"/>
								<radio flex="1" id="radioTabActive" value="1" label="Close button on active tab"/>
								<radio flex="1" id="radioTabRight" value="2" label="Close button at the right of the tab bar"/>
								<radio flex="1" id="radioTabNone" value="3" label="Remove all tab close buttons"/>
							</radiogroup>
							<hbox>
								<checkbox flex="1" id="tabRemoveDropdown" label="Remove 'all tabs' dropdown menu at the right of the tab bar"/>
							</hbox>
							<hbox>
								<button label="Reset to defaults" style="width:13em;"/>
								<spacer flex="1"/>
							</hbox>
						</vbox>
						<spacer flex="99999"/>
					</hbox>
					<vbox flex="1">
						<label>Hide 'Go' buttons beside:</label>
						<hbox>
							<checkbox flex="1" id="goLocRemove" label="Address/location bar"/>
						</hbox>
						<hbox>
							<checkbox flex="1" id="goSearchRemove" label="Search bar"/>
						</hbox>
						<hbox>
							<button label="Reset to defaults" style="width:13em;"/>
							<spacer flex="1"/>
						</hbox>
					</vbox>
				</hbox>
			</groupbox>
		</box>
</window>
