2002-08-05 09:18:01 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
2012-06-25 23:11:16 +00:00
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
2002-08-05 09:18:01 +00:00
|
|
|
|
|
|
|
<!DOCTYPE dialog [
|
2002-09-27 04:06:56 +00:00
|
|
|
<!ENTITY % customizeToolbarDTD SYSTEM "chrome://global/locale/customizeToolbar.dtd">
|
2002-08-06 06:33:06 +00:00
|
|
|
%customizeToolbarDTD;
|
2002-08-05 09:18:01 +00:00
|
|
|
]>
|
|
|
|
|
2006-12-08 04:19:56 +00:00
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
2002-09-27 04:06:56 +00:00
|
|
|
<?xml-stylesheet href="chrome://global/content/customizeToolbar.css" type="text/css"?>
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/customizeToolbar.css" type="text/css"?>
|
2002-08-06 01:52:11 +00:00
|
|
|
|
2002-09-28 15:11:50 +00:00
|
|
|
<window id="CustomizeToolbarWindow"
|
|
|
|
title="&dialog.title;"
|
2002-09-30 22:24:09 +00:00
|
|
|
onload="onLoad();"
|
2009-02-16 15:27:20 +00:00
|
|
|
onunload="onUnload();"
|
2012-01-28 01:03:09 +00:00
|
|
|
style="&dialog.dimensions;"
|
2006-05-26 12:20:51 +00:00
|
|
|
persist="width height"
|
2002-09-27 04:06:56 +00:00
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
2002-08-05 09:18:01 +00:00
|
|
|
|
2007-05-23 18:08:10 +00:00
|
|
|
<script type="application/javascript" src="chrome://global/content/customizeToolbar.js"/>
|
2002-08-06 05:37:40 +00:00
|
|
|
|
2002-09-27 04:06:56 +00:00
|
|
|
<stringbundle id="stringBundle" src="chrome://global/locale/customizeToolbar.properties"/>
|
2002-08-06 02:59:58 +00:00
|
|
|
|
2009-02-16 15:27:20 +00:00
|
|
|
<keyset id="CustomizeToolbarKeyset">
|
|
|
|
<key id="cmd_close1" keycode="VK_ESCAPE" oncommand="onClose();"/>
|
|
|
|
<key id="cmd_close2" keycode="VK_RETURN" oncommand="onClose();"/>
|
2004-09-29 07:08:24 +00:00
|
|
|
</keyset>
|
|
|
|
|
2006-12-04 03:02:15 +00:00
|
|
|
<vbox id="main-box" flex="1">
|
2002-09-28 15:11:50 +00:00
|
|
|
<description id="instructions">
|
|
|
|
&instructions.description;
|
|
|
|
</description>
|
2002-08-06 02:59:58 +00:00
|
|
|
|
2002-10-01 00:31:49 +00:00
|
|
|
<vbox flex="1" id="palette-box"
|
2009-06-21 00:04:07 +00:00
|
|
|
ondragstart="onToolbarDragStart(event)"
|
|
|
|
ondragover="onPaletteDragOver(event)"
|
|
|
|
ondrop="onPaletteDrop(event)"/>
|
2002-08-06 02:59:58 +00:00
|
|
|
|
2002-09-28 15:11:50 +00:00
|
|
|
<box align="center">
|
|
|
|
<label value="&show.label;"/>
|
|
|
|
<menulist id="modelist" value="icons" oncommand="updateToolbarMode(this.value);">
|
2012-03-29 15:33:52 +00:00
|
|
|
<menupopup id="modelistpopup">
|
|
|
|
<menuitem id="modefull" value="full" label="&iconsAndText.label;"/>
|
|
|
|
<menuitem id="modeicons" value="icons" label="&icons.label;"/>
|
|
|
|
<menuitem id="modetext" value="text" label="&text.label;"/>
|
2002-09-28 15:11:50 +00:00
|
|
|
</menupopup>
|
|
|
|
</menulist>
|
2009-06-22 12:29:55 +00:00
|
|
|
|
2009-09-16 14:14:37 +00:00
|
|
|
<checkbox id="smallicons" oncommand="updateIconSize(this.checked ? 'small' : 'large');" label="&useSmallIcons.label;"/>
|
2009-06-22 12:29:55 +00:00
|
|
|
|
2012-03-29 15:33:52 +00:00
|
|
|
<button id="newtoolbar" label="&addNewToolbar.label;" oncommand="addNewToolbar();" icon="add"/>
|
|
|
|
<button id="restoreDefault" label="&restoreDefaultSet.label;" oncommand="restoreDefaultSet();" icon="revert"/>
|
2002-09-28 15:11:50 +00:00
|
|
|
</box>
|
|
|
|
|
|
|
|
<separator class="groove"/>
|
2002-08-06 02:59:58 +00:00
|
|
|
|
2002-09-28 15:11:50 +00:00
|
|
|
<hbox align="center" pack="end">
|
2009-02-16 15:27:20 +00:00
|
|
|
<button id="donebutton" label="&saveChanges.label;" oncommand="onClose();"
|
2006-12-04 03:02:15 +00:00
|
|
|
default="true" icon="close"/>
|
2002-09-28 15:11:50 +00:00
|
|
|
</hbox>
|
|
|
|
</vbox>
|
2002-08-06 02:59:58 +00:00
|
|
|
|
2002-09-28 15:11:50 +00:00
|
|
|
</window>
|