summaryrefslogtreecommitdiffstats
path: root/comm/suite/base/content/openLocation.xul
blob: 1116f76562df6b824a330dabec1829b4ce2d4970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0"?>

<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>

<!DOCTYPE dialog [
  <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
  %brandDTD;
  <!ENTITY % openDialogDTD SYSTEM "chrome://communicator/locale/openLocation.dtd" >
  %openDialogDTD;
]>

<dialog id="openLocation"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        title="&caption.label;"
        onload="onLoad()"
        ondialogaccept="return accept();"
        buttonlabelaccept="&open.label;"
        style="width: 40em;"
        persist="screenX screenY"
        screenX="24" screenY="24">

  <script src="chrome://global/content/globalOverlay.js"/>
  <script src="chrome://communicator/content/openLocation.js"/>
  <script src="chrome://communicator/content/utilityOverlay.js"/>
  <script src="chrome://navigator/content/sessionHistoryUI.js"/>

  <stringbundle id="openLocationBundle" src="chrome://communicator/locale/openLocation.properties"/>

  <hbox>
    <separator orient="vertical" class="thin"/>
    <vbox flex="1">
      <label id="enterLabel"
             value="&enter.label;"
             control="dialog.input"
             accesskey="&enter.accesskey;"/>
      <separator class="thin"/>

      <hbox align="center">
        <textbox id="dialog.input" flex="1" type="autocomplete"
                  autocompletesearch="history file" timeout="50" maxrows="6"
                  enablehistory="true" class="uri-element"
                  oninput="doEnabling();">
          <menupopup id="ubhist-popup" class="autocomplete-history-popup"
                     popupalign="topleft" popupanchor="bottomleft"
                     onpopupshowing="createUBHistoryMenu(event.target);"
                     oncommand="useUBHistoryItem(event.target.label);"/>
        </textbox>
        <button label="&chooseFile.label;" accesskey="&chooseFile.accesskey;" oncommand="onChooseFile();"/>
      </hbox>
      <hbox id="openWhereBox" align="center">
        <label value="&openWhere.label;" accesskey="&openWhere.accesskey;" control="openAppList"/>
        <menulist id="openAppList">
          <menupopup>
            <menuitem value="0"
                      id="currentTab"
                      label="&currentTab.label;"
                      selected="true"/>
            <menuitem value="3" id="newTab" label="&newTab.label;"/>
            <menuitem value="1" id="newWindow" label="&newWindow.label;"/>
            <menuitem value="4" id="newPrivate" label="&newPrivate.label;"/>
            <menuseparator/>
            <menuitem value="2" id="editWindow" label="&editNewWindow.label;"/>
          </menupopup>
        </menulist>
        <spacer flex="1"/>
      </hbox>
    </vbox>
  </hbox>

</dialog>