mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
337 lines
15 KiB
XML
337 lines
15 KiB
XML
<?xml version="1.0"?>
|
|
<!-- ***** BEGIN LICENSE BLOCK *****
|
|
- Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
-
|
|
- The contents of this file are subject to the Mozilla Public License Version
|
|
- 1.1 (the "License"); you may not use this file except in compliance with
|
|
- the License. You may obtain a copy of the License at
|
|
- http://www.mozilla.org/MPL/
|
|
-
|
|
- Software distributed under the License is distributed on an "AS IS" basis,
|
|
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
- for the specific language governing rights and limitations under the
|
|
- License.
|
|
-
|
|
- The Original Code is the Extension Manager UI.
|
|
-
|
|
- The Initial Developer of the Original Code is
|
|
- the Mozilla Foundation.
|
|
- Portions created by the Initial Developer are Copyright (C) 2010
|
|
- the Initial Developer. All Rights Reserved.
|
|
-
|
|
- Contributor(s):
|
|
- Blair McBride <bmcbride@mozilla.com>
|
|
-
|
|
- Alternatively, the contents of this file may be used under the terms of
|
|
- either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
- the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
- in which case the provisions of the GPL or the LGPL are applicable instead
|
|
- of those above. If you wish to allow use of your version of this file only
|
|
- under the terms of either the GPL or the LGPL, and not to allow others to
|
|
- use your version of this file under the terms of the MPL, indicate your
|
|
- decision by deleting the provisions above and replace them with the notice
|
|
- and other provisions required by the LGPL or the GPL. If you do not delete
|
|
- the provisions above, a recipient may use your version of this file under
|
|
- the terms of any one of the MPL, the GPL or the LGPL.
|
|
-
|
|
- ***** END LICENSE BLOCK ***** -->
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://mozapps/content/extensions/extensions.css"?>
|
|
<?xml-stylesheet href="chrome://mozapps/skin/extensions/extensions.css"?>
|
|
|
|
<!DOCTYPE page [
|
|
<!ENTITY % extensionsDTD SYSTEM "chrome://mozapps/locale/extensions/extensions.dtd">
|
|
%extensionsDTD;
|
|
]>
|
|
|
|
<page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
id="addons-page" title="&addons.windowTitle;"
|
|
ondragenter="gDragDrop.onDragOver(event)"
|
|
ondragover="gDragDrop.onDragOver(event)"
|
|
ondrop="gDragDrop.onDrop(event)">
|
|
|
|
<script type="application/javascript"
|
|
src="chrome://mozapps/content/extensions/extensions.js"/>
|
|
|
|
<popupset>
|
|
<!-- menu for an addon item -->
|
|
<menupopup id="addonitem-popup">
|
|
<menuitem id="menuitem_showDetails" command="cmd_showItemDetails"
|
|
default="true" label="&cmd.showDetails.label;"
|
|
accesskey="&cmd.showDetails.accesskey;"/>
|
|
<menuitem id="menuitem_findUpdates" command="cmd_findItemUpdates"
|
|
label="&cmd.findUpdates.label;"
|
|
accesskey="&cmd.findUpdates.accesskey;"/>
|
|
<menuseparator/>
|
|
<menuitem id="menuitem_preferences" command="cmd_showItemPreferences"
|
|
label="&cmd.preferences.label;"
|
|
accesskey="&cmd.preferences.accesskey;"/>
|
|
<menuitem id="menuitem_about" command="cmd_showItemAbout"
|
|
label="&cmd.about.label;"
|
|
accesskey="&cmd.about.accesskey;"/>
|
|
</menupopup>
|
|
</popupset>
|
|
|
|
<!-- global commands - these act on all addons, or affect the addons manager
|
|
in some other way -->
|
|
<commandset id="globalCommandSet"
|
|
oncommand="gViewController.doCommand(event.target.id);">
|
|
<command id="cmd_findAllUpdates"/>
|
|
<command id="cmd_restartApp"/>
|
|
<command id="cmd_goToDiscoverPane"/>
|
|
</commandset>
|
|
|
|
<!-- view commands - these act on the selected addon -->
|
|
<commandset id="viewCommandSet"
|
|
events="richlistbox-select" commandupdater="true"
|
|
oncommandupdate="gViewController.updateCommands();"
|
|
oncommand="gViewController.doCommand(event.target.id);">
|
|
<command id="cmd_showItemDetails"/>
|
|
<command id="cmd_findItemUpdates"/>
|
|
<command id="cmd_showItemPreferences"/>
|
|
<command id="cmd_showItemAbout"/>
|
|
<command id="cmd_enableItem"/>
|
|
<command id="cmd_disableItem"/>
|
|
<command id="cmd_uninstallItem"/>
|
|
<command id="cmd_cancelUninstallItem"/>
|
|
</commandset>
|
|
|
|
<hbox flex="1">
|
|
<!-- left pane -->
|
|
<vbox id="left-pane">
|
|
|
|
<!-- category list -->
|
|
<richlistbox id="categories" flex="1" persist="last-selected">
|
|
<richlistitem id="category-search" value="addons://search/"
|
|
class="category"
|
|
name="&view.search.label;" disabled="true"/>
|
|
<richlistitem id="category-discover" value="addons://discover/"
|
|
class="category"
|
|
name="&view.discover.label;"/>
|
|
<richlistitem id="category-languages" value="addons://list/locale"
|
|
class="category"
|
|
name="&view.locales.label;" hidden="true"/>
|
|
<richlistitem id="category-searchengines"
|
|
value="addons://list/searchengine"
|
|
class="category"
|
|
name="&view.searchengines.label;" hidden="true"/>
|
|
<richlistitem id="category-extensions" value="addons://list/extension"
|
|
class="category"
|
|
name="&view.features.label;"/>
|
|
<richlistitem id="category-themes" value="addons://list/theme"
|
|
class="category"
|
|
name="&view.appearance.label;"/>
|
|
<richlistitem id="category-plugins" value="addons://list/plugin"
|
|
class="category"
|
|
name="&view.plugins.label;"/>
|
|
</richlistbox>
|
|
|
|
</vbox>
|
|
|
|
<splitter class="pane-splitter" collapse="none"/>
|
|
|
|
<!-- right pane -->
|
|
<vbox id="view-container" flex="4">
|
|
|
|
<!-- main header -->
|
|
<hbox id="header">
|
|
<label id="header-name"/>
|
|
<button id="header-link"/>
|
|
<spacer flex="1"/>
|
|
<hbox id="updates-container">
|
|
<image class="spinner"/>
|
|
<label id="updates-noneFound" hidden="true"
|
|
value="&updates.noneFound.label;"/>
|
|
<button id="updates-checkNow" class="button-link"
|
|
label="&updates.updateNow.label;"
|
|
command="cmd_findAllUpdates"/>
|
|
<label id="updates-progress" hidden="true"
|
|
value="&updates.updating.label;"/>
|
|
<label id="updates-installed" hidden="true"
|
|
value="&updates.installed.label;"/>
|
|
<label id="updates-downloaded" hidden="true"
|
|
value="&updates.downloaded.label;"/>
|
|
<button id="updates-restart" class="button-link" hidden="true"
|
|
label="&updates.restart.label;"
|
|
command="cmd_restartApp"/>
|
|
</hbox>
|
|
<textbox id="header-search" type="search" searchbutton="true"
|
|
placeholder="&search.placeholder;"/>
|
|
</hbox>
|
|
|
|
<!-- view port -->
|
|
<deck id="view-port" flex="1">
|
|
|
|
<!-- discover view -->
|
|
<vbox id="discover-view" flex="1" class="view-pane">
|
|
<browser id="discover-browser" type="content" flex="1"
|
|
disablehistory="true"/>
|
|
</vbox>
|
|
|
|
<!-- search view -->
|
|
<vbox id="search-view" flex="1" class="view-pane">
|
|
<hbox class="view-header" pack="end">
|
|
<hbox id="search-sorters" class="sort-controls" sortby="name"
|
|
ascending="true"/>
|
|
</hbox>
|
|
<richlistbox id="search-list" class="list" flex="1">
|
|
<vbox>
|
|
<hbox class="search-filter">
|
|
<label value="&search.filter.label;"/>
|
|
<checkbox id="search-filter-local" checked="true" disabled="true"
|
|
label="&search.filter.installed.label;"/>
|
|
<checkbox id="search-filter-remote"
|
|
checked="false" disabled="true"
|
|
label="&search.filter.available.label;"/>
|
|
</hbox>
|
|
<vbox id="search-list-empty" class="empty-list-notice"
|
|
flex="1" hidden="true">
|
|
<spacer flex="1"/>
|
|
<label value="&listEmpty.search.label;"/>
|
|
<button label="&listEmpty.button.label;" class="addon-control"
|
|
command="cmd_goToDiscoverPane"/>
|
|
<spacer flex="3"/>
|
|
</vbox>
|
|
</vbox>
|
|
</richlistbox>
|
|
</vbox>
|
|
|
|
<!-- list view -->
|
|
<vbox id="list-view" flex="1" class="view-pane">
|
|
<hbox class="view-header" pack="end">
|
|
<hbox id="list-sorters" class="sort-controls" sortby="name"
|
|
ascending="true"/>
|
|
</hbox>
|
|
<vbox id="addon-list-empty" class="empty-list-notice"
|
|
flex="1" hidden="true">
|
|
<spacer flex="1"/>
|
|
<label value="&listEmpty.installed.label;"/>
|
|
<button label="&listEmpty.button.label;" class="addon-control"
|
|
command="cmd_goToDiscoverPane"/>
|
|
<spacer flex="3"/>
|
|
</vbox>
|
|
<richlistbox id="addon-list" class="list" flex="1"/>
|
|
</vbox>
|
|
|
|
<!-- detail view -->
|
|
<hbox id="detail-view" flex="1" class="view-pane">
|
|
<spacer flex="1"/>
|
|
<!-- "loading" splash screen -->
|
|
<hbox class="loading" flex="1">
|
|
<image/>
|
|
<label value="&loading.label;"/>
|
|
</hbox>
|
|
<!-- actual detail view -->
|
|
<vbox class="detail-view-container" flex="8">
|
|
<!-- restart notification -->
|
|
<hbox id="detail-notification" hidden="true">
|
|
<label id="detail-notification-text"/>
|
|
<button class="button-link" label="&addon.restartNow.label;"
|
|
command="cmd_restartApp"/>
|
|
<button id="detail-cancel-uninstall" class="button-link"
|
|
label="&addon.undoUninstall.label;"
|
|
command="cmd_cancelUninstallItem"/>
|
|
</hbox>
|
|
<hbox class="detail-basicinfo fade">
|
|
<image id="detail-icon"/>
|
|
<vbox>
|
|
<label id="detail-name"/>
|
|
<label id="detail-creator" class="creator"/>
|
|
</vbox>
|
|
<spacer flex="1"/>
|
|
<label id="detail-dateUpdated"/>
|
|
</hbox>
|
|
<hbox class="detail-desc">
|
|
<!-- XXXunf placeholder - bug 553461 -->
|
|
<vbox hidden="true" class="fade">
|
|
<image id="detail-screenshot"/>
|
|
<label value="1 of 5"/>
|
|
<spacer flex="1"/>
|
|
</vbox>
|
|
<vbox flex="1">
|
|
<description flex="1" id="detail-desc" class="fade"/>
|
|
<hbox>
|
|
<!-- XXXunf placeholder - bug 553463 -->
|
|
<label value="&rating.yourRating.label;"/>
|
|
<label class="meta-value meta-rating" userrating="3"
|
|
showrating="user"/>
|
|
<spacer flex="1"/>
|
|
<label id="detail-homepage" class="text-link" value="&addon.homepage;"/>
|
|
</hbox>
|
|
<hbox>
|
|
<button id="detail-contribute" class="contribute"
|
|
label="&cmd.contribute.label;"
|
|
accesskey="&cmd.contribute.accesskey;"
|
|
tooltiptext="&cmd.contribute.tooltip;"/>
|
|
<spacer flex="1"/>
|
|
<button id="detail-uninstall" class="addon-control remove"
|
|
label="&cmd.uninstallAddon.label;"
|
|
accesskey="&cmd.uninstallAddon.accesskey;"
|
|
tooltiptext="&cmd.uninstallAddon.tooltip;"
|
|
command="cmd_uninstallItem"/>
|
|
<button id="detail-enable" class="addon-control enable"
|
|
label="&cmd.enableAddon.label;"
|
|
accesskey="&cmd.enableAddon.accesskey;"
|
|
tooltiptext="&cmd.enableAddon.tooltip;"
|
|
command="cmd_enableItem"/>
|
|
<button id="detail-disable" class="addon-control disable"
|
|
label="&cmd.disableAddon.label;"
|
|
accesskey="&cmd.disableAddon.accesskey;"
|
|
tooltiptext="&cmd.disableAddon.tooltip;"
|
|
command="cmd_disableItem"/>
|
|
</hbox>
|
|
</vbox>
|
|
</hbox>
|
|
<hbox class="detail-extra">
|
|
<vbox class="detail-prefs" flex="1">
|
|
<checkbox id="detail-autoUpdate" checked="true"
|
|
label="&detail.updateAutomatically.label;"
|
|
accesskey="&detail.updateAutomatically.accesskey;"
|
|
tooltiptext="&detail.updateAutomatically.tooltip;"/>
|
|
<button id="detail-findUpdates" class="addon-control"
|
|
label="&detail.checkForUpdates.label;"
|
|
accesskey="&detail.checkForUpdates.accesskey;"
|
|
tooltiptext="&detail.checkForUpdates.tooltip;"
|
|
command="cmd_findItemUpdates"/>
|
|
<button id="detail-prefs" class="addon-control"
|
|
label="&detail.showPreferences.label;"
|
|
accesskey="&detail.showPreferences.accesskey;"
|
|
tooltiptext="&detail.showPreferences.tooltip;"
|
|
command="cmd_showItemPreferences"/>
|
|
</vbox>
|
|
<grid class="detail-meta fade" flex="1">
|
|
<columns>
|
|
<column flex="1"/>
|
|
<column flex="2"/>
|
|
</columns>
|
|
<rows>
|
|
<row>
|
|
<label class="meta-label"
|
|
value="&detail.version.label;"/>
|
|
<label class="meta-value" id="detail-version"/>
|
|
</row>
|
|
<row>
|
|
<label class="meta-label"
|
|
value="&detail.updated.label;"/>
|
|
<label class="meta-value" id="detail-updatedate"/>
|
|
</row>
|
|
<row>
|
|
<label class="meta-label"
|
|
value="&detail.numberOfDownloads.label;"/>
|
|
<!-- XXXunf placeholder - bug 553475 -->
|
|
<label class="meta-value" value="5,341"/>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
</hbox>
|
|
</vbox>
|
|
<spacer flex="1"/>
|
|
</hbox>
|
|
|
|
</deck>
|
|
</vbox>
|
|
</hbox>
|
|
|
|
</page>
|