Annotation of zogiLib/zpt/optionwindow_static.zpt, revision 1.3
1.1 casties 1: <html>
2: <head>
1.3 ! casties 3: <title>Viewing Options</title>
1.1 casties 4: </head>
5: <body>
6: <h2>Viewing options</h2>
1.3 ! casties 7: <a tal:attributes="target here/dlTarget; href python:here.zogilibAction('dl_ZoomIn', '')">zoom in</a><br/>
! 8: <a tal:attributes="target here/dlTarget; href python:here.zogilibAction('dl_ZoomOut', '')">zoom out</a><br/>
! 9: <a tal:attributes="target here/dlTarget; href python:here.zogilibAction('dl_WholePage', '')">whole page</a><br/>
! 10: <a tal:attributes="target here/dlTarget; href python:here.zogilibAction('dl_HMirror', '')">Mirror (h)</a> <span tal:condition="python:here.hasMode('hmir')">yes</span><br/>
! 11: <a tal:attributes="target here/dlTarget; href python:here.zogilibAction('dl_VMirror', '')">Mirror (v)</a> <span tal:condition="python:here.hasMode('vmir')">yes</span><br/>
! 12: <form tal:attributes="target here/dlTarget; action python:here.zogilibAction('setDLParams', '')">
! 13: <input type="hidden" name="wid" tal:attributes="value here/getWID" />
1.1 casties 14: <table>
15: <tr>
16: <td>
17: Rotate:
18: </td>
19: <td>
20: <input type="text" size="5" name="rot" tal:attributes="value python:(here.getDLParam('rot') or '')" />
21: (0..360) clockwise
22: </td>
23: </tr>
24: <tr>
25: <td>
26: Brightness:
27: </td>
28: <td>
29: <input type="text" size="5" name="brgt" tal:attributes="value python:(here.getDLParam('brgt') or '')" />
30: (-255..255)
31: </td>
32: </tr>
33: <tr>
34: <td>
35: Contrast:
36: </td>
37: <td>
38: <input type="text" size="5" name="cont" tal:attributes="value python:(here.getDLParam('cont') or '')" />
39: (0..8)
40: </td>
41: </tr>
42: </table>
43: <div align="center"><input type="submit" /></div>
44: </form>
45: <hr/>
46: <p><b>Experimental:</b></p>
1.3 ! casties 47: <a tal:attributes="target here/dlTarget; href python:here.zogilibAction('dl_DynamicHTML', '')">switch to dynamic HTML</a><br/>
! 48: <a tal:attributes="target here/dlTarget; href python:here.zogilibAction('dl_MoveUp', '')">move up</a><br/>
! 49: <a tal:attributes="target here/dlTarget; href python:here.zogilibAction('dl_MoveDown', '')">move down</a><br/>
! 50: <a tal:attributes="target here/dlTarget; href python:here.zogilibAction('dl_MoveLeft', '')">move left</a><br/>
! 51: <a tal:attributes="target here/dlTarget; href python:here.zogilibAction('dl_MoveRight', '')">move right</a><br/>
1.1 casties 52: </body>
53: </html>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>