home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 July & August
/
PCWorld_2005-07-08_cd.bin
/
komunikace
/
netscape
/
nsb-install-8-0.exe
/
chrome
/
toolkit.jar
/
content
/
global
/
editTrayDialog.xul
< prev
next >
Wrap
Extensible Markup Language
|
2005-01-27
|
2KB
|
36 lines
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<!DOCTYPE window [
<!ENTITY % multibarDTD SYSTEM "chrome://global/locale/multibar.dtd" >
%multibarDTD;
]>
<dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
id="editTrayDialog"
onload="initDialog();"
onunload="closeDialog();"
buttons="accept"
ondialogaccept=""
title="&editTraysDialog.title;"
style="width: 350px"> <!-- persistCurrentSets(); -->
<script type="application/x-javascript" src="chrome://browser/content/browser.js"/>
<script type="application/x-javascript" src="chrome://global/content/editTrayDialog.js"/>
<hbox align="center" pack="center">
<vbox pack="center" align="stretch">
<listbox id="trayList" flex="1" onselect="disableButtons(); changeSelectedTray();"/>
<checkbox id="showTrayTitleCheckBox" label="Show Tray Title" oncommand="toggleShowTrayTitle();"/>
</vbox>
<vbox align="end" pack="center">
<button id="addTrayButton" label="&addTrayButton.label;" oncommand="addTray();"/>
<button id="removeTrayButton" label="&removeTrayButton.label;" oncommand="deleteTray();"/>
<button id="renameTrayButton" label="&renameTrayButton.label;" oncommand="renameTray();"/>
<button id="moveUpTrayButton" label="&moveUpTrayButton.label;" oncommand="moveTrayUp();"/>
<button id="moveDownTrayButton" label="&moveDownTrayButton.label;" oncommand="moveTrayDown();"/>
<spacer flex="1"/>
<button dlgtype="accept"/>
<button dlgtype="cancel"/>
</vbox>
</hbox>
</dialog>