mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-10 18:00:15 +01:00
214 lines
6.8 KiB
XML
214 lines
6.8 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!-- ***** 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 Communicator client code, released
|
|
March 31, 1998.
|
|
|
|
The Initial Developer of the Original Code is
|
|
Netscape Communications Corporation.
|
|
Portions created by the Initial Developer are Copyright (C) 1998-1999
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
Ben Goodger <ben@netscape.com>
|
|
|
|
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://navigator/skin/navigator.css" type="text/css"?>
|
|
|
|
<window id="openLocation"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
class="dialog"
|
|
style="width: 250px;"
|
|
orient="vertical">
|
|
|
|
<script>
|
|
<![CDATA[
|
|
|
|
function testProperty( aID )
|
|
{
|
|
var element = document.getElementById( aID );
|
|
if (!element)
|
|
return false;
|
|
|
|
var pValPair = prompt("Enter property,value:","").split(",");
|
|
var property = pValPair[0];
|
|
var value = pValPair[1];
|
|
element[property] = value;
|
|
}
|
|
|
|
]]>
|
|
</script>
|
|
|
|
<hbox align="center">
|
|
<text class="label" value="Foo Label 1:" for="nerp1"/>
|
|
<textbox flex="1" id="nerp1" disabled="true" value="disabled"/>
|
|
<button label="Test Property APIs" oncommand="testProperty('nerp1');"/>
|
|
</hbox>
|
|
<hbox align="center">
|
|
<text class="label" value="Foo Label 2:" for="nerp2"/>
|
|
<textbox flex="1" id="nerp2" readonly="true" value="readonly"/>
|
|
<button label="Test Property APIs" oncommand="testProperty('nerp2');"/>
|
|
</hbox>
|
|
<hbox align="center">
|
|
<text class="label" value="Foo Label 2:" for="nerp2r"/>
|
|
<textbox flex="1" id="nerp2r" readonly="true" disabled="true" value="readonly disabled"/>
|
|
<button label="Test Property APIs" oncommand="testProperty('nerp2r');"/>
|
|
</hbox>
|
|
<hbox align="center">
|
|
<text class="label" value="Foo Label 3:" for="nerp3"/>
|
|
<textbox flex="1" id="nerp3" value="regular"/>
|
|
<button label="Test Property APIs" oncommand="testProperty('nerp3');"/>
|
|
</hbox>
|
|
<hbox align="center">
|
|
<text class="label" value="Foo Label 5:" for="nerp4"/>
|
|
<menubutton label="regular menubutton">
|
|
<menupopup>
|
|
<menuitem label="foo 1"/>
|
|
<menuitem label="foo 2"/>
|
|
<menuitem label="foo 3"/>
|
|
</menupopup>
|
|
</menubutton>
|
|
<menubutton label="disabled menubutton" disabled="true">
|
|
<menupopup>
|
|
<menuitem label="foo 1"/>
|
|
<menuitem label="foo 2"/>
|
|
<menuitem label="foo 3"/>
|
|
</menupopup>
|
|
</menubutton>
|
|
</hbox>
|
|
|
|
<hbox align="center">
|
|
<text class="label" value="Foo Label 5:" for="nerp4"/>
|
|
<menulist label="regular menulist">
|
|
<menupopup>
|
|
<menuitem label="foo 1"/>
|
|
<menuitem label="foo 2"/>
|
|
<menuitem label="foo 3"/>
|
|
</menupopup>
|
|
</menulist>
|
|
<menulist label="disabled menulist" disabled="true">
|
|
<menupopup>
|
|
<menuitem label="foo 1"/>
|
|
<menuitem label="foo 2"/>
|
|
<menuitem label="foo 3"/>
|
|
</menupopup>
|
|
</menulist>
|
|
</hbox>
|
|
|
|
<hbox>
|
|
<text class="label" value="Foo Label 4:"/>
|
|
<vbox flex="1">
|
|
<textbox flex="1"/>
|
|
<vbox align="center">
|
|
<hbox flex="1">
|
|
<checkbox label="Checkbox 1" id="checkbox1"/>
|
|
<spacer flex="1"/>
|
|
<button label="Test Property APIs" oncommand="testProperty('checkbox1');"/>
|
|
</hbox>
|
|
<checkbox label="Checkbox 2" disabled="true" checked="true"/>
|
|
<checkbox label="Checkbox 3"/>
|
|
</vbox>
|
|
<separator class="groove"/>
|
|
<radiogroup id="group" orient="vertical">
|
|
<hbox>
|
|
<radio group="group" label="Radio 1" id="radio1"/>
|
|
<spacer flex="1"/>
|
|
<button label="Test Property APIs" oncommand="testProperty('radio1');"/>
|
|
</hbox>
|
|
<radio group="group" label="Radio 2"/>
|
|
<radio group="group" label="Radio 3" disabled="true" checked="true"/>
|
|
</radiogroup>
|
|
</vbox>
|
|
</hbox>
|
|
|
|
<separator/>
|
|
|
|
<hbox align="center">
|
|
<text class="label" value="Foo Label 7:"/>
|
|
<button label="Standard XUL Button"/>
|
|
<button class="dialog" label="Dialog XUL Button"/>
|
|
<button class="dialog" disabled="true" default="true" label="Disabled Button"/>
|
|
</hbox>
|
|
|
|
<separator/>
|
|
|
|
<hbox>
|
|
<vbox>
|
|
<text class="label" value="Foo Label 6:"/>
|
|
<spacer flex="1"/>
|
|
</vbox>
|
|
<textbox id="textarea" rows="3" multiline="true" value="Regular multiline textbox"/>
|
|
<vbox>
|
|
<button label="Test Property APIs" oncommand="testProperty('textarea');"/>
|
|
<spacer flex="1"/>
|
|
</vbox>
|
|
</hbox>
|
|
|
|
<hbox>
|
|
<vbox>
|
|
<text class="label" value="Foo Label 6:"/>
|
|
<spacer flex="1"/>
|
|
</vbox>
|
|
<textbox rows="3" multiline="true" disabled="true" value="Disabled multiline textbox"/>
|
|
</hbox>
|
|
|
|
<separator/>
|
|
|
|
<progressmeter mode="undetermined" flex="1"/>
|
|
|
|
<script>
|
|
<![CDATA[
|
|
function advanceProgress()
|
|
{
|
|
var progressMeter = document.getElementById("normal");
|
|
if(progressMeter.getAttribute('value') <= 100) {
|
|
var newvalue = parseInt(progressMeter.getAttribute('value')) + 10;
|
|
progressMeter.setAttribute('value', newvalue);
|
|
setTimeout("advanceProgress()", 100);
|
|
}
|
|
else {
|
|
progressMeter.setAttribute('value', 0);
|
|
setTimeout("advanceProgress()", 100);
|
|
}
|
|
}
|
|
|
|
]]>
|
|
</script>
|
|
|
|
|
|
<hbox align="center">
|
|
<progressmeter id="normal" mode="normal" flex="1"/>
|
|
<button label="Advance Progress" oncommand="advanceProgress();"/>
|
|
</hbox>
|
|
|
|
<separator/>
|
|
|
|
<scrollbar orient="horizontal"/>
|
|
|
|
</window>
|