mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
b73c08d6f6
r=neil, sr=alecf
107 lines
4.3 KiB
XML
107 lines
4.3 KiB
XML
<?xml version="1.0"?> <!-- -*- Mode: SGML; indent-tabs-mode: nil; -*- -->
|
|
<!--
|
|
|
|
***** 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 mozilla.org Code.
|
|
|
|
The Initial Developer of the Original Code is
|
|
Netscape Communications Corporation.
|
|
Portions created by the Initial Developer are Copyright (C) 1999
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
|
|
Alternatively, the contents of this file may be used under the terms of
|
|
either of 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://communicator/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://communicator/skin/sidebar/customize.css" type="text/css"?>
|
|
|
|
<!DOCTYPE dialog SYSTEM "chrome://communicator/locale/pref/pref-charset.dtd" >
|
|
|
|
<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
id="customizeCharacterEncoding"
|
|
title="&charset.customize.title.label;"
|
|
onload="Init();"
|
|
ondialogaccept="return Save();"
|
|
persist="width height screenX screenY"
|
|
headertitle="&charset.customize.left.header;"
|
|
style="width: 44em; height: 33em;">
|
|
|
|
<script type="application/x-javascript" src="chrome://communicator/content/pref/pref-charset.js"/>
|
|
<script type="application/x-javascript">
|
|
<![CDATA[
|
|
var observerService = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
|
|
observerService.notifyObservers(null, "charsetmenu-selected", "other");
|
|
]]>
|
|
</script>
|
|
|
|
<!-- The two-pane -->
|
|
<hbox flex="1">
|
|
<vbox flex="1">
|
|
<label value="&charset.customize.additional.label;" control="available_charsets"/>
|
|
<!-- Available Charsets Tree -->
|
|
<listbox id="available_charsets" flex="1" seltype="multiple"
|
|
onselect="SelectAvailableCharset();"
|
|
ondblclick="AddAvailableCharset();"/>
|
|
|
|
<separator class="thin"/>
|
|
|
|
<hbox align="center">
|
|
<button id="add_button" oncommand="AddAvailableCharset();"
|
|
label="&charset.customize.add.label;" disabled="true"/>
|
|
</hbox>
|
|
</vbox>
|
|
|
|
<separator orient="vertical"/>
|
|
|
|
<vbox flex="1">
|
|
<label value="&charset.customize.current.label;" control="active_charsets"/>
|
|
<listbox id="active_charsets" flex="1" seltype="multiple"
|
|
onselect="SelectActiveCharset();"
|
|
ondblclick="RemoveActiveCharset();"/>
|
|
|
|
<separator class="thin"/>
|
|
<hbox align="center">
|
|
<button id="remove_button" oncommand="RemoveActiveCharset();"
|
|
disabled="true"
|
|
label="&charset.customize.remove.label;"/>
|
|
</hbox>
|
|
</vbox>
|
|
<vbox>
|
|
<spacer flex="1"/>
|
|
<button id="up_button" class="up small" disabled="true"
|
|
label="&charset.customize.moveUp.label;"
|
|
accesskey="&charset.customize.moveUp.accesskey;"
|
|
oncommand="MoveUp();"/>
|
|
<button id="down_button" class="down small" disabled="true"
|
|
label="&charset.customize.moveDown.label;"
|
|
accesskey="&charset.customize.moveDown.accesskey;"
|
|
oncommand="MoveDown();"/>
|
|
<spacer flex="1"/>
|
|
</vbox>
|
|
</hbox>
|
|
</dialog> |