mirror of
https://github.com/Ximi1970/systray-x.git
synced 2026-01-14 11:12:03 +01:00
103 lines
2.7 KiB
HTML
103 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
</head>
|
|
<body>
|
|
<script src="js/styles.js" stylesheet="css/options.css"></script>
|
|
<script src="js/i18n.js"></script>
|
|
<script src="js/options_accounts.js"></script>
|
|
|
|
<br />
|
|
<div id="debugselect">
|
|
<input type="checkbox" name="debug" value="Debug" /> Display debug
|
|
window<br />
|
|
</div>
|
|
<br />
|
|
|
|
<div class="tab">
|
|
<button class="tablinks active" id="Windows">__MSG_tabWindows__</button>
|
|
<button class="tablinks" id="Icon">__MSG_tabIcon__</button>
|
|
<button class="tablinks" id="Mail">__MSG_tabMail__</button>
|
|
</div>
|
|
|
|
<div id="WindowsContent" class="tabcontent" style="display:block">
|
|
<form>
|
|
<h3>Windows</h3>
|
|
<input type="checkbox" name="hideOnMinimize" value="" /> Minimizing
|
|
window hides to tray<br />
|
|
<input type="checkbox" name="minimizeOnClose" value="" /> Closing window
|
|
hides to tray<br />
|
|
</form>
|
|
</div>
|
|
|
|
<div id="IconContent" class="tabcontent">
|
|
<form name="iconform">
|
|
<h3>Icon</h3>
|
|
|
|
<table id="iconselect">
|
|
<tr>
|
|
<td><input type="radio" name="iconType" value="0" /> Blank icon</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="radio" name="iconType" value="1" /> New mail icon
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="radio" name="iconType" value="2" /> Custom icon
|
|
</td>
|
|
<td>
|
|
<img
|
|
id="customIconImage"
|
|
height="25"
|
|
width="25"
|
|
align="middle"
|
|
src="icons/blank-icon.png"
|
|
/>
|
|
</td>
|
|
<td>
|
|
<label
|
|
for="selectedFileIconType"
|
|
style="-moz-appearance: button;"
|
|
}
|
|
>Browse...</label
|
|
>
|
|
<input
|
|
type="file"
|
|
id="selectedFileIconType"
|
|
accept="image/*"
|
|
style="display:none;"
|
|
/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
|
|
<div id="icon" data-icon-mime="" data-icon=""></div>
|
|
|
|
<script src="js/options_iconform.js"></script>
|
|
</div>
|
|
|
|
<div id="MailContent" class="tabcontent">
|
|
<form name="mailform">
|
|
<h3>Included accounts</h3>
|
|
|
|
<ul id="accountsTree"></ul>
|
|
</form>
|
|
</div>
|
|
|
|
<br />
|
|
<form name="saveform">
|
|
<label>Save preferences</label>
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
|
|
<script src="js/options_tabbutton.js"></script>
|
|
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html>
|