toolkit/mozapps/extensions/content/selectAddons.xul

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/mozapps/extensions/content/selectAddons.xul	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,124 @@
     1.4 +<?xml version="1.0"?>
     1.5 +
     1.6 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     1.9 +
    1.10 +<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 
    1.11 +<?xml-stylesheet href="chrome://mozapps/content/extensions/selectAddons.css" type="text/css"?> 
    1.12 +<?xml-stylesheet href="chrome://mozapps/skin/extensions/selectAddons.css" type="text/css"?> 
    1.13 +
    1.14 +<!DOCTYPE window [
    1.15 +<!ENTITY % updateDTD SYSTEM "chrome://mozapps/locale/extensions/selectAddons.dtd">
    1.16 +<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
    1.17 +%updateDTD;
    1.18 +%brandDTD;
    1.19 +]>
    1.20 +
    1.21 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    1.22 +        style="&upgrade.style;" id="select-window">
    1.23 +
    1.24 +  <script type="application/javascript" src="chrome://mozapps/content/extensions/selectAddons.js"/>
    1.25 +  <stringbundle id="strings" src="chrome://mozapps/locale/extensions/selectAddons.properties"/>
    1.26 +
    1.27 +  <deck id="view-deck" flex="1" align="stretch" pack="stretch">
    1.28 +    <vbox id="checking" align="stretch">
    1.29 +      <vbox flex="1">
    1.30 +        <label id="checking-heading" class="heading">&checking.heading;</label>
    1.31 +      </vbox>
    1.32 +      <progressmeter id="checking-progress" class="progress" mode="undetermined"/>
    1.33 +      <vbox flex="1">
    1.34 +        <label id="checking-progress-label" class="progress-label">&checking.progress.label;</label>
    1.35 +      </vbox>
    1.36 +    </vbox>
    1.37 +
    1.38 +    <vbox id="select" align="stretch">
    1.39 +      <label id="select-heading" class="heading">&select.heading;</label>
    1.40 +
    1.41 +      <description id="select-description">&select.description;</description>
    1.42 +
    1.43 +      <vbox id="select-list" align="stretch" flex="1">
    1.44 +        <hbox id="select-header">
    1.45 +          <hbox class="select-keep select-cell" style="&select.keep.style;">
    1.46 +            <label value="&select.keep;"/>
    1.47 +          </hbox>
    1.48 +          <hbox class="select-icon select-cell"/>
    1.49 +          <hbox id="heading-name" class="select-name select-cell" style="&select.name.style;">
    1.50 +            <label value="&select.name;"/>
    1.51 +          </hbox>
    1.52 +          <hbox id="heading-action" class="select-action select-cell" style="&select.action.style;">
    1.53 +            <label value="&select.action;"/>
    1.54 +          </hbox>
    1.55 +          <hbox class="select-source select-cell" flex="1">
    1.56 +            <label value="&select.source;"/>
    1.57 +          </hbox>
    1.58 +        </hbox>
    1.59 +
    1.60 +        <scrollbox id="select-scrollbox" flex="1">
    1.61 +          <grid id="select-grid" flex="1">
    1.62 +            <columns>
    1.63 +              <column style="&select.keep.style;"/>
    1.64 +              <column/>
    1.65 +              <column id="column-name"/>
    1.66 +              <column id="column-action" class="select-action"/>
    1.67 +              <column class="select-source" flex="1"/>
    1.68 +            </columns>
    1.69 +
    1.70 +            <rows id="select-rows"/>
    1.71 +          </grid>
    1.72 +        </scrollbox>
    1.73 +      </vbox>
    1.74 +    </vbox>
    1.75 +
    1.76 +    <vbox id="confirm" align="stretch">
    1.77 +      <label id="confirm-heading" class="heading">&confirm.heading;</label>
    1.78 +
    1.79 +      <description id="confirm-description">&confirm.description;</description>
    1.80 +
    1.81 +      <scrollbox id="confirm-scrollbox" flex="1">
    1.82 +        <vbox id="disable-list" class="action-list" hidden="true">
    1.83 +          <label class="action-header">&action.disable.heading;</label>
    1.84 +        </vbox>
    1.85 +
    1.86 +        <vbox id="incompatible-list" class="action-list" hidden="true">
    1.87 +          <label class="action-header">&action.incompatible.heading;</label>
    1.88 +        </vbox>
    1.89 +
    1.90 +        <vbox id="update-list" class="action-list" hidden="true">
    1.91 +          <label class="action-header">&action.update.heading;</label>
    1.92 +        </vbox>
    1.93 +
    1.94 +        <vbox id="enable-list" class="action-list" hidden="true">
    1.95 +          <label class="action-header">&action.enable.heading;</label>
    1.96 +        </vbox>
    1.97 +      </scrollbox>
    1.98 +    </vbox>
    1.99 +
   1.100 +    <vbox id="update" align="stretch">
   1.101 +      <vbox flex="1">
   1.102 +        <label id="update-heading" class="heading">&update.heading;</label>
   1.103 +      </vbox>
   1.104 +      <progressmeter id="update-progress" class="progress" mode="undetermined"/>
   1.105 +      <vbox flex="1">
   1.106 +        <label id="update-progress-label" class="progress-label">&update.progress.label;</label>
   1.107 +      </vbox>
   1.108 +    </vbox>
   1.109 +
   1.110 +    <vbox id="errors">
   1.111 +      <vbox flex="1">
   1.112 +        <label id="errors-heading" class="heading">&errors.heading;</label>
   1.113 +      </vbox>
   1.114 +      <description id="errors-description" value="&errors.description;"/>
   1.115 +      <spacer flex="1"/>
   1.116 +    </vbox>
   1.117 +  </deck>
   1.118 +
   1.119 +  <hbox id="footer" align="center">
   1.120 +    <label id="footer-label" flex="1">&footer.label;</label>
   1.121 +    <button id="cancel" label="&cancel.label;" oncommand="window.close()"/>
   1.122 +    <button id="back" label="&back.label;" oncommand="gView.back()" hidden="true"/>
   1.123 +    <button id="next" label="&next.label;" oncommand="gView.next()" hidden="true"/>
   1.124 +    <button id="done" label="&done.label;" oncommand="gView.done()" hidden="true"/>
   1.125 +  </hbox>
   1.126 +
   1.127 +</window>

mercurial