comparison xul/content/dialog_rotate.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 rotate"
7 onload="markCurrentRotation(); window.sizeToContent(); window.focus();">
8
9 <script src="chrome://alcatraz/content/dialog_rotate.js" />
10
11 <groupbox>
12 <caption label="DIGILIB rotate" />
13 <description>Choose the rotation angle (clockwise orientation) :</description>
14 <radiogroup id="rotation_group">
15 <radio id="rotation_0" value="0" label="0 degrees" />
16 <radio id="rotation_90" value="90" label="90 degrees" />
17 <radio id="rotation_180" value="180" label="180 degrees" />
18 <radio id="rotation_270" value="270" label="270 degrees" />
19 <hbox>
20 <radio id="rotation_custom" value="custom" label="Custom:" />
21 <textbox id="rotation_custom_value" size="6" oninput="input();" />
22 </hbox>
23 </radiogroup>
24
25 <hbox flex="1" pack="end">
26 <button label="Rotate" oncommand="rotate();" />
27 <button label="Cancel" oncommand="cancel();" />
28 </hbox>
29 </groupbox>
30
31 </window>