First Checked In.

This commit is contained in:
brade%netscape.com 1999-02-25 16:20:55 +00:00
parent 263022fb42
commit b74ecbf609
3 changed files with 150 additions and 0 deletions

View File

@ -0,0 +1,85 @@
<?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">
<tr>
<td>
<table>
<tr>
<td>
<xul:label>Find</xul:label>
</td>
<td>
<input type="text" size="35" length="35" maxlength="255" name="find.findtext" />
<select size="1" name="find.findrecent">
<optgroup label="findrecent">
<option label="recent 1" value="recent 1">1</option>
<option label="recent 2" value="recent 2">2</option>
<option label="recent 3" value="recent 3">3</option>
</optgroup>
</select>
</td>
</tr>
<tr>
<td>
<xul:label>Replace</xul:label>
</td>
<td>
<input type="text" size="35" length="35" maxlength="255" name="find.replacetext" />
<select size="1" name="find.replacerecent">
<optgroup label="replacerecent">
<option label="r recent 1" value="r recent 1">A</option>
<option label="r recent 2" value="r recent 2">B</option>
<option label="r recent 3" value="r recent 3">C</option>
</optgroup>
</select>
</td>
</tr>
<tr>
<td/>
<td>
<xul:checkbox value="Case Sensitive" />
<xul:label>Case Sensitive</xul:label>
</td>
</tr>
<tr>
<td/>
<td>
<xul:checkbox value="Search Backwards" />
<xul:label>Search Backwards</xul:label>
</td>
</tr>
<tr>
<td/>
<td>
<xul:checkbox value="Wrap Search" />
<xul:label>Wrap Search</xul:label>
</td>
</tr>
</table>
</td>
<td>
<input type="button" class="genericbutton" value=" Find " />
<br/>
<input type="button" class="genericbutton" value=" Replace " />
<br/>
<input type="button" class="genericbutton" value=" Replace &amp; Find " />
<br/>
<input type="button" class="genericbutton" value=" Replace All " />
<br/>
<input type="button" class="genericbutton" value=" Stop " />
</td>
</tr>
</table>
</window>

View File

@ -0,0 +1,29 @@
<?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>Enter one or more HTML tags and attributes: &nbsp;&nbsp;</xul:label>
<select size="1" name="htmltags.previous">
<optgroup label="prevTags">
<option label="tag 1" value="tag 1">tag 1</option>
<option label="tag 2" value="tag 2">tag 2</option>
<option label="tag 3" value="tag 3">tag 3</option>
</optgroup>
</select>
<p/>
<textarea rows="4" cols="50"></textarea>
<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>

View File

@ -0,0 +1,36 @@
<?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=10>
<tr>
<td>
<xul:label>File Name:</xul:label>
<br/>
<input type="text" size="40" length="40" maxlength="40" />
<p/>
<xul:label>Pick a Format:</xul:label>
<br/>
<select width="100%" size="8" name="fileFormatList">
<optgroup label="format">
<option label="format1" value="format 1">Format 1</option>
<option label="format2" value="format 2">Format 2</option>
<option label="format3" value="format 3">Format 3</option>
<option label="format4" value="format 4">Format 4</option>
<option label="format5" value="format 5">Format 5</option>
<option label="format6" value="format 6">Format 6</option>
</optgroup>
</select>
<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>