home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 March
/
PCWorld_2005-03_cd.bin
/
komunikace
/
kmeleon
/
kmeleon09.exe
/
flashblock.jar
/
content
/
flashblock
/
options.xul
< prev
next >
Wrap
Extensible Markup Language
|
2004-12-05
|
1KB
|
42 lines
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<!DOCTYPE dialog SYSTEM "chrome://flashblock/locale/flashblock.dtd" >
<dialog
id="FlashblockOptions"
title="&options.title;"
buttons="accept, cancel"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
style="width: 30em;"
onload="onLoad();"
ondialogaccept="doOK();">
<script type="application/x-javascript" src="flashblock-prefs.js"/>
<script type="application/x-javascript" src="options.js"/>
<groupbox id="general">
<caption label="&general.label;"/>
<checkbox id="enableCheckbox" label="&flashblockEnable;"/>
</groupbox>
<separator class="thin"/>
<groupbox id="whitelist">
<caption label="&whitelist.label;"/>
<description>&whitelistDescription;</description>
<separator class="thin"/>
<hbox>
<textbox id="siteTextbox" flex="1" oninput="siteInput(event.target);"/>
<button id="btnAdd" label="&btnAdd.label;" disabled="true" oncommand="addSite();"/>
</hbox>
<separator class="thin"/>
<listbox id="sitelist" seltype="single" style="height: 12em;" onselect="siteSelected(event.target);"/>
<separator class="thin"/>
<hbox>
<button id="btnRemove" label="&btnRemove.label;" disabled="true" oncommand="removeSite();"/>
<button id="btnRemoveAll" label="&btnRemoveAll.label;" oncommand="removeAllSites();"/>
</hbox>
</groupbox>
</dialog>