home *** CD-ROM | disk | FTP | other *** search
- <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
- <!DOCTYPE overlay SYSTEM "chrome://minimap/locale/addressDlg.dtd" >
-
- <dialog id="addAddress"
- title = "&minimap.addaddress.dialog;"
- xmlns:html="http://www.w3.org/1999/xhtml"
- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
- minwidth="320"
- onload="onLoad();"
- ondialogaccept="return onAccept();"
- ondialogcancel="return onCancel();"
- button="accept,cancel">
-
- <script type="application/x-javascript">
- var $ = function(x) { return document.getElementById(x); }
-
- var gParams;
-
- function onLoad() {
- gParams = window.arguments[0];
- $('bpaddaddress-title').value = gParams.title;
- $('bpaddaddress-address').value = gParams.address;
- $('bpaddaddress-url').value = gParams.url;
- $('bpaddaddress-description').value = gParams.description;
- }
-
- function onCancel() {
- gParams.cancelled = true;
- return true;
- }
-
- function onAccept() {
- //dump("insertImage.onAccept()\n");
- gParams.title = $('bpaddaddress-title').value;
- gParams.address = $('bpaddaddress-address').value;
- gParams.url = $('bpaddaddress-url').value;
- gParams.description = $('bpaddaddress-description').value;
- return true;
- }
-
- </script>
- <groupbox>
- <caption label="&minimap.addaddress.description;"/>
- <grid>
- <columns>
- <column/>
- <column flex="1"/>
- </columns>
- <rows>
- <row align="center">
- <description value="&minimap.addaddress.title;"/>
- <textbox id="bpaddaddress-title" value=""/>
- </row>
- <row align="center">
- <description value="&minimap.addaddress.address;"/>
- <textbox id="bpaddaddress-address" value=""/>
- </row>
- </rows>
- </grid>
- <label value="&minimap.addaddress.url;"/>
- <textbox id="bpaddaddress-url" value=""/>
- <label value="&minimap.addaddress.descript;"/>
- <textbox id="bpaddaddress-description" value="" multiline="true"/>
- <separator height="5px"/>
- </groupbox>
- </dialog>
-