comparison xul/content/dialog_options.xul @ 203:bf945fcf9105

restarting with version control of xul sidebar/toolbar
author luginbue
date Fri, 27 Feb 2004 11:24:53 +0100
parents
children
comparison
equal deleted inserted replaced
202:7501034e54e1 203:bf945fcf9105
1 <?xml version="1.0" ?>
2 <?xml-stylesheet href="chrome://alcatraz/skin/dialogs.css" type="text/css" ?>
3 <?xml-stylesheet href="chrome://global/skin/" type="text/css" ?>
4
5 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
6 title="DIGILIB options"
7 onload="getCurrentOptions(); window.sizeToContent(); window.focus();">
8
9 <script src="chrome://jslib/content/jslib.js" />
10 <script src="chrome://alcatraz/content/settings.js" />
11 <script src="chrome://alcatraz/content/dialog_options.js" />
12
13 <groupbox>
14 <caption label="DIGILIB options" />
15 <description>Change the default behaviour of your sidebar</description>
16 <spacer style="height: 10px" />
17 <groupbox>
18 <caption label="Zooming" />
19 <description>Choose eighter 'zoom area' or 'zoom point' as the behaviour of the
20 zooming functionality.</description>
21 <hbox>
22 <menulist id="zoom_menu">
23 <menupopup id="zoom_popup">
24 <menuitem label="Zoom area" value="zoomarea" selected="true" />
25 <menuitem label="Zoom point" value="zoompoint" />
26 </menupopup>
27 </menulist>
28 <spacer flex="1" />
29 </hbox>
30 </groupbox>
31 <groupbox>
32 <caption label="Keep area" />
33 <description>Choose 'keep area' in order to keep the zoomed part when
34 jumping to another page.</description>
35 <checkbox id="keeparea_check" value="keeparea" label="Keep area" />
36 </groupbox>
37
38 <hbox flex="1" pack="end">
39 <button label="Apply" oncommand="apply();" />
40 <button label="Cancel" oncommand="cancel();" />
41 </hbox>
42 </groupbox>
43
44 </window>