Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1409 | dev | 1 | <?xml version="1.0"?> |
2 | |||
3 | <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
||
4 | |||
5 | <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
||
6 | xmlns:html="http://www.w3.org/1999/xhtml" |
||
7 | title="Pixeled" |
||
8 | buttons="cancel" |
||
9 | buttonlabelcancel="Close" |
||
10 | id="Pixeled_Display_dialog" |
||
11 | persist="screenX screenY width height sizemode" |
||
12 | > |
||
13 | |||
14 | <script type="application/x-javascript" src="chrome://pixeled/content/display.js" /> |
||
15 | |||
16 | <hbox style="overflow:auto"> |
||
17 | <html:canvas id="originCanvas" style="background:#FFFFFF; padding:0px; margin:0px;"></html:canvas> |
||
18 | <spacer flex="1" /> |
||
19 | </hbox> |
||
20 | <hbox> |
||
21 | <scale id="scaler" min="1" max="5" pageincrement="1" flex="1" /> |
||
22 | <label id="scaleLabel" control="scale" /> |
||
23 | </hbox> |
||
24 | <hbox flex="1" style="overflow:auto"> |
||
25 | <html:canvas id="scaledCanvas" style="background:#FFFFFF; padding:0px; margin:0px;"></html:canvas> |
||
26 | <spacer flex="1" /> |
||
27 | </hbox> |
||
28 | </dialog> |