1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
<!DOCTYPE html>
<html>
<head>
<title>__MSG_preferences__</title>
<script src="options.js" type="module"></script>
</head>
<body>
<fieldset>
<legend>__MSG_Window.defaults__</legend>
<p>
<label for="default.width">__MSG_Width__:</label>
<input id="default.width" type="number" min="50" size="5" data-preference="width" />
<label for="default.height">__MSG_Height__:</label>
<input id="default.height" type="number" min="50" size="5" data-preference="height" />
</p>
</fieldset>
<fieldset>
<legend>__MSG_Window.defPosition__</legend>
<p>
<label>__MSG_Window.horPos__:</label>
<input id="horPos" type="number" size="5" data-preference="horPos" />
<label>__MSG_Window.vertPos__:</label>
<input id="vertPos" type="number" size="5" data-preference="vertPos" />
</p>
</legend>
</fieldset>
<fieldset>
<legend>__MSG_Message.tag__</legend>
<p>
<input id="use.tag" type="checkbox" data-preference="usetag" />
<label for="use.tag" style="line-height: 2.2;">__MSG_use.tag__</label>
<br />
<label for="tag.name">__MSG_Name__:</label>
<input id="tag.name" data-preference="tag.name" type="text" size="15" />
<label for="tag.color">__MSG_Color__:</label>
<input id="tag.color" data-preference="tag.color" type="color" />
</p>
</fieldset>
<fieldset>
<legend>__MSG_Behavior__</legend>
<p>
<input id="show.on.select" type="checkbox" data-preference="show_on_select" />
<label for="show.on.select">__MSG_show.on.select__</label>
</p>
<p>
<input id="show.in.messageDisplay" type="checkbox" data-preference="show_in_messageDisplay" />
<label for="show.in.messageDisplay">__MSG_show.in.messageDisplay__</label>
</p>
<p style="text-indent:40px;">
<input id="show.full.in.messageDisplay" type="checkbox" data-preference="show_full_in_messageDisplay" />
<label for="show.full.in.messageDisplay">__MSG_show.full.in.messageDisplay__</label>
</p>
<!---->
<p>
<label for="show.column">__MSG_show.show.column__:</label>
<input id="show.column" type="checkbox" data-preference="show_column" />
</p>
<p>
<label for="colchars">__MSG_show.first.x.chars.in.col__:</label>
<input id="colchars" type="number" min="0" size="5" data-preference="show_first_x_chars_in_col" />
</p>
</fieldset>
<fieldset>
<legend>__MSG_storage.path__</legend>
<p>
<input id="storage.path" type="text" disabled=true data-preference="storage_path" />
<button type="button" id="btnSelectStoragePath">__MSG_btn.browse__</button>
</p>
</fieldset>
<p><button type="button" id="btnSave">__MSG_btn.save__</button> <button type="button" id="btnHlp">__MSG_btn.help__</button></p>
</body>
</html>
|