summaryrefslogtreecommitdiffstats
path: root/comm/suite/chatzilla/xul/content/install-plugin/install-plugin.xul
blob: 90de4f6105b3431a719584dd5e8f92930d4636bf (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
<?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/. -->


<!DOCTYPE window SYSTEM "chrome://chatzilla/locale/install-plugin.dtd">

<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://chatzilla/skin/install-plugin.css" type="text/css"?>

<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        xmlns:html="http://www.w3.org/1999/xhtml" onload="onLoad();"
        title="&windowtitle;"
        ondialogaccept="return doOK()"
        ondialogcancel="doCancel()">
    <script src="install-plugin.js"/>
    <script src="../lib/js/file-utils.js"/>
    <script src="../lib/js/utils.js"/>
    <grid>
        <columns><column/><column flex="1"/></columns>
        <rows>
            <row align="center">
                <label id="lbl-source" accesskey="&source.accesskey;"
                       control="txt-source" value="&source.label;"/>
                <textbox id="txt-source"/>
                <button id="btn-browse" label="&browse.label;"
                        accesskey="&browse.accesskey;"/>
            </row>
            <row align="center">
                <label id="lbl-name" control="txt-name"
                       value="&name.label;" accesskey="&name.accesskey;"/>
                <textbox id="txt-name" disabled="true"/>
            </row>
            <row align="center">
                <spacer/>
                <checkbox id="chk-name-auto" checked="true"
                          label="&name.autopick.label;"
                          accesskey="&name.autopick.accesskey;"/>
            </row>
        </rows>
    </grid>
</dialog>