mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
102 lines
3.6 KiB
XML
102 lines
3.6 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
The contents of this file are subject to the Netscape 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/NPL/
|
|
|
|
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 Mozilla Communicator client code, released
|
|
March 31, 1998.
|
|
|
|
The Initial Developer of the Original Code is Netscape
|
|
Communications Corporation. Portions created by Netscape are
|
|
Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
|
Rights Reserved.
|
|
|
|
Contributor(s):
|
|
-->
|
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://communicator/skin/dialogOverlay.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://communicator/skin/prefpanels.css" type="text/css"?>
|
|
|
|
<?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
|
|
<?xul-overlay href="chrome://communicator/content/utilityOverlay.xul"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/pref/pref-themes.dtd" >
|
|
|
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
class="color-dialog"
|
|
onload="Startup()"
|
|
orient="vertical">
|
|
|
|
<stringbundle id="bundle_prefutilities"
|
|
src="chrome://communicator/locale/pref/prefutilities.properties"/>
|
|
<stringbundle id="bundle_brand"
|
|
src="chrome://global/locale/brand.properties"/>
|
|
|
|
<script type="application/x-javascript" src="chrome://communicator/content/pref/pref-themes.js"/>
|
|
|
|
<hbox class="box-smallheader" title="&lHeader;"/>
|
|
|
|
<html>&skinIntro.label;</html>
|
|
|
|
<html>&installedThemes.label;</html>
|
|
|
|
<tree class="inset" id="skinsTree" datasources="rdf:chrome"
|
|
onselect="themeSelect();"
|
|
ref="urn:mozilla:skin:root" rows="5">
|
|
<treecolgroup>
|
|
<treecol flex="1"/>
|
|
</treecolgroup>
|
|
<template>
|
|
<rule>
|
|
<treechildren>
|
|
<treeitem uri="..." skin="true"
|
|
author="rdf:http://www.mozilla.org/rdf/chrome#author"
|
|
displayName="rdf:http://www.mozilla.org/rdf/chrome#displayName"
|
|
name="rdf:http://www.mozilla.org/rdf/chrome#name"
|
|
description="rdf:http://www.mozilla.org/rdf/chrome#description"
|
|
image="rdf:http://www.mozilla.org/rdf/chrome#image"
|
|
loctype="rdf:http://www.mozilla.org/rdf/chrome#locType">
|
|
<treerow>
|
|
<treecell label="rdf:http://www.mozilla.org/rdf/chrome#displayName"/>
|
|
</treerow>
|
|
</treeitem>
|
|
</treechildren>
|
|
</rule>
|
|
</template>
|
|
<treechildren id="theSkinKids" flex="1"/>
|
|
</tree>
|
|
|
|
<separator class="thin"/>
|
|
|
|
<hbox id="previewImageContainer" class="inset" align="center" >
|
|
<image id="previewImage"/>
|
|
</hbox>
|
|
|
|
<separator class="thin"/>
|
|
|
|
<hbox flex="1">
|
|
<vbox flex="1">
|
|
<text class="label header" id="displayName" value=""/>
|
|
<hbox align="center">
|
|
<text class="label" value="&author.label;"/>
|
|
<text class="label" id="author"/>
|
|
</hbox>
|
|
<html id="description" flex="1"/>
|
|
</vbox>
|
|
<vbox>
|
|
<button id="applySkin" label="&selectSkin.label;" accesskey="&selectSkin.accesskey;" oncommand="applySkin();"/>
|
|
<button id="uninstallSkin" label="&uninstallSkin.label;" oncommand="uninstallSkin();"/>
|
|
</vbox>
|
|
</hbox>
|
|
|
|
</window>
|