mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
326 lines
16 KiB
XML
326 lines
16 KiB
XML
<?xml version="1.0"?>
|
|
|
|
# -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
# ***** 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.
|
|
#
|
|
# The Initial Developer of the Original Code is
|
|
# Ben Goodger.
|
|
# Portions created by the Initial Developer are Copyright (C) 2004
|
|
# the Initial Developer. All Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
# Ben Goodger <ben@bengoodger.com>
|
|
# Robert Strong <robert.bugzilla@gmail.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 GPL or the LGPL. 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 window [
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
|
%brandDTD;
|
|
<!ENTITY % extensionsDTD SYSTEM "chrome://mozapps/locale/extensions/extensions.dtd">
|
|
%extensionsDTD;
|
|
]>
|
|
|
|
<window xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:xhtml="http://www.w3.org/1999/xhtml"
|
|
id="extensionsManager" windowtype="Extension:Manager"
|
|
orient="vertical" title="&addons.title;"
|
|
screenX="10" screenY="10" width="&em.width;" height="&em.height;"
|
|
persist="width height screenX screenY sizemode"
|
|
onload="Startup();" onunload="Shutdown();"
|
|
onclose="return closeWindow(false);">
|
|
|
|
<script type="application/javascript" src="chrome://global/content/globalOverlay.js"/>
|
|
<script type="application/javascript" src="chrome://global/content/contentAreaUtils.js"/>
|
|
<script type="application/javascript" src="chrome://mozapps/content/extensions/extensions.js"/>
|
|
|
|
<stringbundleset id="extensionsSet">
|
|
<stringbundle id="brandStrings" src="chrome://branding/locale/brand.properties"/>
|
|
<stringbundle id="extensionsStrings" src="chrome://mozapps/locale/extensions/extensions.properties"/>
|
|
<stringbundle id="xpinstallStrings" src="chrome://global/locale/xpinstall/xpinstall.properties"/>
|
|
</stringbundleset>
|
|
|
|
<keyset id="extensionsKeys">
|
|
<key id="key_close" key="&cmd.close.commandKey;" modifiers="accel" command="cmd_close"/>
|
|
<key id="key_close2" keycode="VK_ESCAPE" command="cmd_close"/>
|
|
<key id="key_about" key="&cmd.info.commandKey;" modifiers="accel"
|
|
oncommand="gExtensionsViewController.doCommand('cmd_about');"/>
|
|
<key id="key_options" key="&cmd.options.commandKey;" modifiers="accel"
|
|
oncommand="gExtensionsViewController.doCommand('cmd_options');"/>
|
|
<key id="key_uninstall" keycode="VK_DELETE"
|
|
oncommand="gExtensionsViewController.doCommand('cmd_uninstall');"/>
|
|
#ifdef XP_MACOSX
|
|
<key id="key_uninstall_mac" keycode="VK_BACK"
|
|
oncommand="gExtensionsViewController.doCommand('cmd_uninstall');"/>
|
|
#endif
|
|
</keyset>
|
|
|
|
<commandset id="extensionsCommands"
|
|
events="richlistbox-select"
|
|
commandupdater="true"
|
|
oncommandupdate="gExtensionsViewController.onCommandUpdate();"
|
|
oncommand="gExtensionsViewController.doCommand(event.target.id);">
|
|
<command id="cmd_options"/>
|
|
<command id="cmd_about"/>
|
|
<command id="cmd_homepage"/>
|
|
<command id="cmd_uninstall"/>
|
|
<command id="cmd_cancelUninstall"/>
|
|
<command id="cmd_cancelInstall"/>
|
|
<command id="cmd_cancelUpgrade"/>
|
|
<command id="cmd_checkUpdate"/>
|
|
<command id="cmd_includeUpdate"/>
|
|
<command id="cmd_installUpdate"/>
|
|
<command id="cmd_enable"/>
|
|
<command id="cmd_disable"/>
|
|
<command id="cmd_useTheme"/>
|
|
<command id="cmd_installSearchResult"/>
|
|
</commandset>
|
|
|
|
<commandset id="globalCommands">
|
|
<command id="cmd_installFile" oncommand="installWithFilePicker();"/>
|
|
<command id="cmd_checkUpdatesAll" oncommand="checkUpdatesAll();"/>
|
|
<command id="cmd_installUpdatesAll" oncommand="installUpdatesAll();"/>
|
|
<command id="cmd_continue" oncommand="closeEM();" disabled="true"/>
|
|
<command id="cmd_close" oncommand="closeEM();"/>
|
|
<command id="cmd_showUpdateInfo" oncommand="showUpdateInfo();"/>
|
|
<command id="cmd_hideUpdateInfo" oncommand="hideUpdateInfo();"/>
|
|
<command id="cmd_resetSearch" oncommand="resetSearch();"/>
|
|
</commandset>
|
|
|
|
<vbox id="addonContextMenuPalette" hidden="true">
|
|
<menuitem id="menuitem_useTheme" default="true" command="cmd_useTheme"
|
|
label="&cmd.useTheme.label;" accesskey="&cmd.useTheme.accesskey;"/>
|
|
<menuitem id="menuitem_options" default="true" command="cmd_options"
|
|
#ifdef XP_WIN
|
|
label="&cmd.options.label;" accesskey="&cmd.options.accesskey;"/>
|
|
#else
|
|
label="&cmd.optionsUnix.label;" accesskey="&cmd.optionsUnix.accesskey;"/>
|
|
#endif
|
|
<menuitem id="menuitem_homepage" command="cmd_homepage"
|
|
label="&cmd.homepage.label;" accesskey="&cmd.homepage.accesskey;"/>
|
|
<menuitem id="menuitem_about" command="cmd_about"
|
|
label="&cmd.about2.label;" accesskey="&cmd.about.accesskey;"/>
|
|
<menuseparator id="menuseparator_1"/>
|
|
<menuitem id="menuitem_uninstall" command="cmd_uninstall"
|
|
label="&cmd.uninstall.label;" accesskey="&cmd.uninstall2.accesskey;"/>
|
|
<menuitem id="menuitem_cancelUninstall" command="cmd_cancelUninstall"
|
|
label="&cmd.cancelUninstall.label;" accesskey="&cmd.cancelUninstall.accesskey;"/>
|
|
<menuitem id="menuitem_cancelInstall" command="cmd_cancelInstall"
|
|
label="&cmd.cancelInstall.label;" accesskey="&cmd.cancelInstall.accesskey;"/>
|
|
<menuitem id="menuitem_cancelUpgrade" command="cmd_cancelUpgrade"
|
|
label="&cmd.cancelUpgrade.label;" accesskey="&cmd.cancelUpgrade.accesskey;"/>
|
|
<menuitem id="menuitem_checkUpdate" command="cmd_checkUpdate"
|
|
label="&cmd.checkUpdate.label;" accesskey="&cmd.checkUpdate.accesskey;"/>
|
|
<menuitem id="menuitem_enable" command="cmd_enable"
|
|
label="&cmd.enable.label;" accesskey="&cmd.enable.accesskey;"/>
|
|
<menuitem id="menuitem_disable" command="cmd_disable"
|
|
label="&cmd.disable.label;" accesskey="&cmd.disable.accesskey;"/>
|
|
<menuitem id="menuitem_installUpdate" command="cmd_installUpdate"
|
|
label="&cmd.installUpdate.label;" accesskey="&cmd.installUpdate.accesskey;"/>
|
|
<menuitem id="menuitem_includeUpdate" command="cmd_includeUpdate"
|
|
label="&cmd.includeUpdate.label;" accesskey="&cmd.includeUpdate.accesskey;"
|
|
type="checkbox"/>
|
|
<menuitem id="menuitem_learnMore" command="cmd_homepage"
|
|
label="&searchResultHomepage.value;"/>
|
|
<menuitem id="menuitem_installSearchResult" command="cmd_installSearchResult"
|
|
label="&cmd.installSearchResult.label;"/>
|
|
</vbox>
|
|
|
|
<popup id="addonContextMenu" onpopupshowing="return buildContextMenu(event);"/>
|
|
|
|
<windowdragbox id="topBar" class="chromeclass-toolbar">
|
|
<deck flex="1">
|
|
<hbox class="viewGroupWrapper">
|
|
<radiogroup id="viewGroup" xhtml:role="listbox" persist="last-selected"
|
|
orient="horizontal">
|
|
<radio id="search-view" label="&search.label;" oncommand="showView('search');" persist="last-selected"/>
|
|
<radio id="extensions-view" label="&extensions.label;" oncommand="showView('extensions');" persist="last-selected"/>
|
|
<radio id="themes-view" label="&themes.label;" oncommand="showView('themes');" persist="last-selected"/>
|
|
<radio id="locales-view" label="&locales.label;" oncommand="showView('locales');" persist="last-selected"/>
|
|
<radio id="plugins-view" label="&plugins.label;" oncommand="showView('plugins');" persist="last-selected"/>
|
|
<radio id="updates-view" label="&update.label;" oncommand="showView('updates');"/>
|
|
<radio id="installs-view" label="&install.label;" oncommand="showView('installs');" hidden="true"/>
|
|
</radiogroup>
|
|
</hbox>
|
|
<vbox id="progressBox" flex="1">
|
|
<spacer flex="1"/>
|
|
<hbox>
|
|
<image class="addonThrobber"/>
|
|
<label id="progressStatus" value="&progressStatus.label;"/>
|
|
</hbox>
|
|
<progressmeter id="addonsProgress" class="extension-item-progress" flex="1"/>
|
|
<spacer flex="1"/>
|
|
</vbox>
|
|
</deck>
|
|
</windowdragbox>
|
|
<notificationbox id="addonsMsg" flex="1">
|
|
<vbox id="extensionsBox" flex="1">
|
|
<hbox id="searchPanel" align="center">
|
|
<textbox id="searchfield" emptytext="&searchAddons.label;"
|
|
type="search" searchbutton="true" class="compact"
|
|
oncommand="retrieveRepositoryAddons(this.value);"/>
|
|
<spacer flex="1"/>
|
|
<label id="browseAddons" class="text-link" value="&browseAddons.label;"
|
|
onclick="if (event.button == 0) { openURL(this.getAttribute('homepageURL')); }"/>
|
|
</hbox>
|
|
|
|
<hbox flex="1">
|
|
<richlistbox id="extensionsView" flex="1" sort="?name"
|
|
datasources="rdf:null" context="addonContextMenu"
|
|
ondragenter="gExtensionsDNDObserver.onDragOver(event)"
|
|
ondragover="gExtensionsDNDObserver.onDragOver(event)"
|
|
ondrop="gExtensionsDNDObserver.onDrop(event)"
|
|
ondblclick="onViewDoubleClick(event);"/>
|
|
|
|
<splitter id="themeSplitter" hidden="true" collapse="none" persist="state"/>
|
|
|
|
<vbox id="themePreviewArea" hidden="true" width="220" flex="1" persist="width">
|
|
<deck id="previewImageDeck" flex="1">
|
|
<vbox id="noThemeSelected" pack="center" align="center">
|
|
<label class="previewText">&previewNoThemeSelected.label;</label>
|
|
</vbox>
|
|
<vbox id="noPreviewImage" pack="center" align="center">
|
|
<label class="previewText">&previewNoPreviewImage.label;</label>
|
|
</vbox>
|
|
<vbox id="previewImageContainer" align="center" pack="center">
|
|
<hbox>
|
|
<image id="previewImage"/>
|
|
</hbox>
|
|
</vbox>
|
|
<vbox id="infoNoAddonSelected" align="center" pack="center">
|
|
<label class="previewText">&infoNoAddonSelected.label;</label>
|
|
</vbox>
|
|
<vbox id="infoNoUpdateInfo" align="center" pack="center">
|
|
<label class="previewText">&infoNoUpdateInfo.label;</label>
|
|
</vbox>
|
|
<vbox id="infoLoadingInfo" align="center" pack="center">
|
|
<image class="addonThrobber"/>
|
|
</vbox>
|
|
<vbox id="infoUpdateInfoError" align="center" pack="center">
|
|
<label class="previewText">&infoUpdateInfoError.label;</label>
|
|
</vbox>
|
|
<vbox id="infoDisplay">
|
|
</vbox>
|
|
</deck>
|
|
</vbox>
|
|
</hbox>
|
|
</vbox>
|
|
</notificationbox>
|
|
<vbox>
|
|
<hbox id="commandBarBottom" align="center">
|
|
#ifdef XP_UNIX
|
|
<button id="showUpdateInfoButton" label="&cmd.showUpdateInfo.label;"
|
|
accesskey="&cmd.showUpdateInfo.accesskey;"
|
|
tooltiptext="&cmd.showUpdateInfo.tooltip;"
|
|
command="cmd_showUpdateInfo"/>
|
|
<button id="hideUpdateInfoButton" label="&cmd.hideUpdateInfo.label;"
|
|
accesskey="&cmd.hideUpdateInfo.accesskey;"
|
|
tooltiptext="&cmd.hideUpdateInfo.tooltip;"
|
|
command="cmd_hideUpdateInfo"/>
|
|
<label id="getMore" class="text-link"
|
|
onclick="if (event.button == 0) { openURL(this.getAttribute('getMoreURL')); }"
|
|
valuethemes="&getThemes.label;"
|
|
valueplugins="&getPlugins.label;"
|
|
valueextensions="&getExtensions.label;"/>
|
|
<button id="installFileButton" label="&cmd.installLocalFile.label;"
|
|
accesskey="&cmd.installLocalFile.accesskey;"
|
|
tooltiptextaddons="&cmd.installFileAddon.tooltip;"
|
|
tooltiptextthemes="&cmd.installFileTheme.tooltip;"
|
|
command="cmd_installFile"/>
|
|
<button id="checkUpdatesAllButton" label="&cmd.checkUpdatesAll.label;"
|
|
accesskey="&cmd.checkUpdatesAll.accesskey;"
|
|
tooltiptextaddons="&cmd.checkUpdatesAllAddon.tooltip;"
|
|
tooltiptextthemes="&cmd.checkUpdatesAllTheme.tooltip;"
|
|
command="cmd_checkUpdatesAll"/>
|
|
<spacer flex="1"/>
|
|
<button id="skipDialogButton" label="&cmd.skip.label;"
|
|
accesskey="&cmd.skip.accesskey;"
|
|
tooltiptext="&cmd.skip.tooltip;"
|
|
command="cmd_close"/>
|
|
<button id="continueDialogButton" label="&cmd.continue.label;"
|
|
accesskey="&cmd.continue.accesskey;"
|
|
tooltiptext="&cmd.continue.tooltip;"
|
|
command="cmd_continue"
|
|
hidden="true"/>
|
|
<button id="installUpdatesAllButton" label="&cmd.installUpdatesAll2.label;"
|
|
accesskey="&cmd.installUpdatesAll2.accesskey;"
|
|
tooltiptext="&cmd.installUpdatesAll2.tooltip;"
|
|
command="cmd_installUpdatesAll"/>
|
|
#else
|
|
<button id="installFileButton" label="&cmd.installLocalFile.label;"
|
|
accesskey="&cmd.installLocalFile.accesskey;"
|
|
tooltiptextaddons="&cmd.installFileAddon.tooltip;"
|
|
tooltiptextthemes="&cmd.installFileTheme.tooltip;"
|
|
command="cmd_installFile"/>
|
|
<spacer flex="1"/>
|
|
<button id="continueDialogButton" label="&cmd.continue.label;"
|
|
accesskey="&cmd.continue.accesskey;"
|
|
tooltiptext="&cmd.continue.tooltip;"
|
|
command="cmd_continue"
|
|
hidden="true"/>
|
|
<button id="installUpdatesAllButton" label="&cmd.installUpdatesAll2.label;"
|
|
accesskey="&cmd.installUpdatesAll2.accesskey;"
|
|
tooltiptext="&cmd.installUpdatesAll2.tooltip;"
|
|
command="cmd_installUpdatesAll"/>
|
|
<button id="checkUpdatesAllButton" label="&cmd.checkUpdatesAll.label;"
|
|
accesskey="&cmd.checkUpdatesAll.accesskey;"
|
|
tooltiptextaddons="&cmd.checkUpdatesAllAddon.tooltip;"
|
|
tooltiptextthemes="&cmd.checkUpdatesAllTheme.tooltip;"
|
|
command="cmd_checkUpdatesAll"/>
|
|
<button id="skipDialogButton" label="&cmd.skip.label;"
|
|
accesskey="&cmd.skip.accesskey;"
|
|
tooltiptext="&cmd.skip.tooltip;"
|
|
command="cmd_close"/>
|
|
<button id="showUpdateInfoButton" label="&cmd.showUpdateInfo.label;"
|
|
accesskey="&cmd.showUpdateInfo.accesskey;"
|
|
tooltiptext="&cmd.showUpdateInfo.tooltip;"
|
|
command="cmd_showUpdateInfo"/>
|
|
<button id="hideUpdateInfoButton" label="&cmd.hideUpdateInfo.label;"
|
|
accesskey="&cmd.hideUpdateInfo.accesskey;"
|
|
tooltiptext="&cmd.hideUpdateInfo.tooltip;"
|
|
command="cmd_hideUpdateInfo"/>
|
|
<label id="getMore" class="text-link"
|
|
onclick="if (event.button == 0) { openURL(this.getAttribute('getMoreURL')); }"
|
|
valuethemes="&getThemes.label;"
|
|
valueplugins="&getPlugins.label;"
|
|
valueextensions="&getExtensions.label;"/>
|
|
#endif
|
|
</hbox>
|
|
<hbox id="resizerBox" style="min-width:1px;">
|
|
<spacer flex="1"/>
|
|
<resizer dir="bottomend"/>
|
|
</hbox>
|
|
</vbox>
|
|
</window>
|
|
|