comparison xul/content/imago.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/" type="text/css" ?>
3 <?xml-stylesheet href="chrome://global/skin/" type="text/css" ?>
4
5 <window xmlns:html="http://www.w3.org/1999/xhtml"
6 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
7
8 <script type="application/x-javascript" src="chrome://jslib/content/jslib.js" />
9 <script type="application/x-javascript" src="chrome://alcatraz/content/imago.js" />
10
11 <popupset>
12 <popup id="scale_popup" onpopupshowing="markCurrentScale()">
13 <menuitem id="scale_07" label="0.7" type="checkbox" oncommand="window.content.scale(0.7);" />
14 <menuitem id="scale_10" label="1" type="checkbox" oncommand="window.content.scale(1);" />
15 <menuitem id="scale_15" label="1.5" type="checkbox" oncommand="window.content.scale(1.5);" />
16 <menuitem id="scale_20" label="2" type="checkbox" oncommand="window.content.scale(2);" />
17 <menuitem id="scale_25" label="2.5" type="checkbox" oncommand="window.content.scale(2.5);" />
18 <menuitem id="scale_30" label="3" type="checkbox" oncommand="window.content.scale(3);" />
19 <menuitem id="scale_pbp" label="pixel by pixel" type="checkbox" oncommand="window.content.pixelByPixel();" />
20 <menuitem id="scale_os" label="original size" type="checkbox" oncommand="dialog_originalsize();" />
21 </popup>
22 </popupset>
23
24 <popupset>
25 <popup id="mirror_popup" onpopupshowing="markCurrentMirror()">
26 <menuitem id="mirror_h" label="Horizontal" type="checkbox" oncommand="window.content.mirror('h');" />
27 <menuitem id="mirror_v" label="Vertical" type="checkbox" oncommand="window.content.mirror('v');" />
28 </popup>
29 </popupset>
30
31 <vbox>
32 <button id="button_scale" label="scale" popup="scale_popup" />
33 <button id="button_mirror" label="mirror" popup="mirror_popup" />
34 <button id="button_rotate" label="rotate" onclick="dialog_rotate();" />
35 <spacer flex="1" />
36 <button id="button_brightnesscontrast" label="brightness/contrast" onclick="dialog_brightnesscontrast();" />
37 <button id="button_colors" label="colors" onclick="dialog_colors();" />
38 <spacer flex="100" />
39 </vbox>
40 <vbox flex="1" />
41
42 </window>