mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
126 lines
4.5 KiB
XML
126 lines
4.5 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="EditorDialog.css" type="text/css"?>
|
|
<!DOCTYPE window SYSTEM "paragraphstyledlog.dtd">
|
|
<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">
|
|
<tr>
|
|
<td>
|
|
<p> Paragraph Alignment </p>
|
|
</td>
|
|
<td>
|
|
<select size="1" name="paragraph.alignment">
|
|
<optgroup label="alignment">
|
|
<option label="Left" value="Left">Left</option>
|
|
<option label="Center" value="Center">Center</option>
|
|
<option label="Right" value="Right">Right</option>
|
|
</optgroup>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
<p>Paragraph Style</p>
|
|
</td>
|
|
<td>
|
|
<select size="1" name="paragraph.style">
|
|
<optgroup label="parastyle">
|
|
<option label="Normal" value="Normal">Normal</option>
|
|
<option label="Heading 1" value="Heading 1">Heading 1</option>
|
|
<option label="Heading 2" value="Heading 2">Heading 2</option>
|
|
<option label="Heading 3" value="Heading 3">Heading 3</option>
|
|
<option label="Heading 4" value="Heading 4">Heading 4</option>
|
|
<option label="Heading 5" value="Heading 5">Heading 5</option>
|
|
<option label="Heading 6" value="Heading 6">Heading 6</option>
|
|
<option label="Address" value="Address">Address</option>
|
|
<option label="Formatted" value="Formatted">Formatted</option>
|
|
<option label="Bulleted List" value="Bulleted List">Bulleted List</option>
|
|
<option label="Numbered List" value="Numbered List">Numbered List</option>
|
|
<option label="Definition Title" value="Definition Title">Definition Title</option>
|
|
<option label="Definition Text" value="Definition Text">Definition Text</option>
|
|
</optgroup>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td/>
|
|
<td>
|
|
<p>
|
|
<xul:checkbox value="Indent paragraph with Blockquote" />
|
|
Indent paragraph with Blockquote
|
|
</p>
|
|
<p> </p>
|
|
<p>
|
|
Indent level
|
|
<input type="text" size="2" length="2" maxlength="2" name="paragraph.indent" />
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td/>
|
|
<td>
|
|
<fieldset><legend> List Styles </legend>
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<p>Numbered List Style</p>
|
|
</td>
|
|
<td>
|
|
<select size="1" name="number.style">
|
|
<optgroup label="numberstyle">
|
|
<option label="Automatic" value="Automatic">Automatic</option>
|
|
<option label="1, 2, 3..." value="1, 2, 3...">1, 2, 3...</option>
|
|
<option label="I, II, III..." value="I, II, III...">I, II, III...</option>
|
|
<option label="i, ii, iii..." value="i, ii, iii...">i, ii, iii...</option>
|
|
<option label="A, B, C..." value="A, B, C...">A, B, C...</option>
|
|
<option label="a, b, c..." value="a, b, c...">a, b, c...</option>
|
|
</optgroup>
|
|
</select>
|
|
</td>
|
|
<td>
|
|
<p>
|
|
Starting Number
|
|
<input type="text" size="5" length="5" maxlength="5" name="paragraph.liststartnumber" />
|
|
</p>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
<p/>
|
|
<p>Bulleted List Style</p>
|
|
</td>
|
|
|
|
<td>
|
|
<p/>
|
|
<select size="1" name="bullet.style">
|
|
<optgroup label="bulletstyle">
|
|
<option label="Automatic" value="Automatic">Automatic</option>
|
|
<option label="Solid Circle" value="Solid Circle">Solid Circle</option>
|
|
<option label="Open Circle" value="Open Circle">Open Circle</option>
|
|
<option label="Open Square" value="Open Square">Open Square</option>
|
|
</optgroup>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</fieldset>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>
|
|
<input type="button" id="helpbutton" value=" Help " disabled />
|
|
<input type="button" id="cancelbutton" value=" Cancel " />
|
|
<input type="button" id="applybutton" value=" Apply " disabled />
|
|
<input type="button" id="okbutton" value=" OK " disabled />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</window>
|