|
1 <?xml version="1.0"?>
2 <?xml-stylesheet href="chrome://global/skin/xul.css" type="text/css"?>
3
4 <!DOCTYPE window>
5
6
7 <window
8 xmlns:html="http://www.w3.org/1999/xhtml"
9 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
10 title="Open File or Location"
11 onload="onLoad()"
12 class="dialog"
13 align="vertical">
14
15 <html:script language="javascript" src="openLocation.js"/>
16
17
18
19 <box align="horizontal" style="width: 36em; height: 100%;">
20
21 <html:div style="width: 45px; margin: 5px;">
22 <html:img src="chrome://global/skin/question-icon.gif" width="32" height="32" border="0"/>
23 </html:div>
24
25 <box align="vertical" flex="100%">
26
27 <box align="vertical" style="margin-bottom: 1em;">
28 <html:div flex="100%">
29 Enter the World Wide Web location (URL) you would like to open or
30 </html:div>
31 <html:div style="width: 100%; margin-bottom: 0.5em;">
32 use the Choose File... button to select a local file:
33 </html:div>
34 </box>
35
36 <box align="horizontal" flex="100%">
37 <html:input id="dialog.input" flex="100%" onkeyup="onTyping(event.which)"/>
38 <titledbutton onclick="choose()" value="Choose File..."/>
39 </box>
40
41 <box align="horizontal" flex="100%" style="margin-bottom: 1em; width: 100%;">
42 <html:input type="checkbox" id="dialog.newWindow"/>
43 <html:label for="dialog.newWindow">Open in new window</html:label>
44 <spring flex="100%"/>
45 </box>
46
47 <spring flex="100%"/>
48
49 <box align="horizontal">
50
51 <spring flex="100%"/>
52
53 <titledbutton id="dialog.ok" value="OK" onclick="open()"/>
54 <titledbutton id="dialog.cancel" value="Cancel" onclick="cancel()"/>
55
56 <spring flex="100%"/>
57
58 </box>
59
60 </box>
61
62 </box>
63
64 </window>
This page was automatically generated by
LXR.