32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="EditorDialog.css" type="text/css"?>
|
|
<!DOCTYPE dialog>
|
|
<window xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
xmlns:html="http://www.w3.org/TR/REC-html40">
|
|
|
|
<table xmlns="http://www.w3.org/TR/REC-html40" cellspacing=20>
|
|
<tr>
|
|
<td>
|
|
<xul:label>Choose the quality for this image:</xul:label>
|
|
<p/>
|
|
<xul:box>
|
|
<xul:radio name="imageQualityType" value="High" />
|
|
<xul:label>High Quality (bigger image file size, longest time to view)</xul:label>
|
|
<p/>
|
|
<xul:radio checked="true" name="imageQualityType" value="Medium" />
|
|
<xul:label>Medium Quality</xul:label>
|
|
<p/>
|
|
<xul:radio name="imageQualityType" value="Low" />
|
|
<xul:label>Low Quality (smaller image file size, shortest time to view</xul:label>
|
|
</xul:box>
|
|
|
|
<p/>
|
|
<input type="button" id="helpbutton" value=" Help " disabled />
|
|
<input type="button" id="cancelbutton" value=" Cancel " />
|
|
<input type="button" id="okbutton" value=" OK " disabled />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</window>
|