summaryrefslogtreecommitdiffstats
path: root/toolkit/mozapps/webextensions/content/xpinstallItem.xml
blob: 5146af84f12d8fad07391309ac17eb50bcb00c12 (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
<?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 bindings SYSTEM "chrome://mozapps/locale/xpinstall/xpinstallConfirm.dtd">

<bindings id="xpinstallItemBindings"
          xmlns="http://www.mozilla.org/xbl"
          xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
          xmlns:xbl="http://www.mozilla.org/xbl">

  <binding id="installitem">
    <resources>
      <stylesheet src="chrome://mozapps/skin/xpinstall/xpinstallConfirm.css"/>
    </resources>
    <content>
      <xul:hbox flex="1">
        <xul:vbox align="center" pack="center" class="xpinstallIconContainer">
          <xul:image class="xpinstallItemIcon" xbl:inherits="src=icon"/>
        </xul:vbox>
        <xul:vbox flex="1" pack="center">
          <xul:hbox class="xpinstallItemNameRow" align="center">
            <xul:label class="xpinstallItemName" xbl:inherits="value=name" crop="right"/>
            <xul:label class="xpinstallItemSigned" xbl:inherits="value=cert,signed"/>
          </xul:hbox>
          <xul:hbox class="xpinstallItemDetailsRow" align="center">
            <xul:textbox class="xpinstallItemURL" xbl:inherits="value=url" flex="1" readonly="true" crop="right"/>
          </xul:hbox>
        </xul:vbox> 
      </xul:hbox>
    </content>
    <implementation>
      <property name="name"   onset="this.setAttribute('name', val); return val;"
                              onget="return this.getAttribute('name');"/>
      <property name="cert"   onset="this.setAttribute('cert', val); return val;"
                              onget="return this.getAttribute('cert');"/>
      <property name="signed" onset="this.setAttribute('signed', val); return val;"
                              onget="return this.getAttribute('signed');"/>
      <property name="url"    onset="this.setAttribute('url', val); return val;"
                              onget="return this.getAttribute('url');"/>
      <property name="icon"   onset="this.setAttribute('icon', val); return val;"
                              onget="return this.getAttribute('icon');"/>
      <property name="type"   onset="this.setAttribute('type', val); return val;"
                              onget="return this.getAttribute('type');"/>
    </implementation>
  </binding>
         
</bindings>