mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-22 09:56:23 +00:00
Monotone-Revision: 2ad8b0c019808014c990f51cc69c4457fdb537c6 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-07-28T22:59:11 Monotone-Branch: ca.inverse.sogo
207 lines
4.9 KiB
JavaScript
207 lines
4.9 KiB
JavaScript
var rowSelectionCount = 0;
|
|
|
|
validateControls();
|
|
|
|
function showElement(e, shouldShow) {
|
|
e.style.display = shouldShow ? "" : "none";
|
|
}
|
|
|
|
function enableElement(e, shouldEnable) {
|
|
if(!e)
|
|
return;
|
|
if(shouldEnable) {
|
|
if(e.hasAttribute("disabled"))
|
|
e.removeAttribute("disabled");
|
|
}
|
|
else {
|
|
e.setAttribute("disabled", "1");
|
|
}
|
|
}
|
|
|
|
function toggleRowSelectionStatus(sender) {
|
|
rowID = sender.value;
|
|
tr = document.getElementById(rowID);
|
|
if(sender.checked) {
|
|
tr.className = "tableview_selected";
|
|
rowSelectionCount += 1;
|
|
}
|
|
else {
|
|
tr.className = "tableview";
|
|
rowSelectionCount -= 1;
|
|
}
|
|
this.validateControls();
|
|
}
|
|
|
|
function validateControls() {
|
|
var e = document.getElementById("moveto");
|
|
this.enableElement(e, rowSelectionCount > 0);
|
|
}
|
|
|
|
function moveTo(uri) {
|
|
alert("MoveTo: " + uri);
|
|
}
|
|
|
|
function popupSearchMenu(event, menuId)
|
|
{
|
|
var node = event.target;
|
|
|
|
superNode = node.parentNode.parentNode.parentNode;
|
|
relX = (event.pageX - superNode.offsetLeft - node.offsetLeft);
|
|
relY = (event.pageY - superNode.offsetTop - node.offsetTop);
|
|
|
|
if (event.button == 0
|
|
&& relX < 24) {
|
|
event.cancelBubble = true;
|
|
event.returnValue = false;
|
|
|
|
var popup = document.getElementById(menuId);
|
|
hideMenu(popup);
|
|
|
|
var menuTop = superNode.offsetTop + node.offsetTop + node.offsetHeight;
|
|
var menuLeft = superNode.offsetLeft + node.offsetLeft;
|
|
var heightDiff = (window.innerHeight
|
|
- (menuTop + popup.offsetHeight));
|
|
if (heightDiff < 0)
|
|
menuTop += heightDiff;
|
|
|
|
var leftDiff = (window.innerWidth
|
|
- (menuLeft + popup.offsetWidth));
|
|
if (leftDiff < 0)
|
|
menuLeft -= popup.offsetWidth;
|
|
|
|
popup.style.top = menuTop + "px";
|
|
popup.style.left = menuLeft + "px";
|
|
popup.style.visibility = "visible";
|
|
menuClickNode = node;
|
|
|
|
bodyOnClick = "" + document.body.getAttribute("onclick");
|
|
document.body.setAttribute("onclick", "onBodyClick('" + menuId + "');");
|
|
}
|
|
}
|
|
|
|
function setSearchCriteria(event)
|
|
{
|
|
searchField = document.getElementById('searchValue');
|
|
searchCriteria = document.getElementById('searchCriteria');
|
|
|
|
var node = event.target;
|
|
searchField.setAttribute("ghost-phrase", node.innerHTML);
|
|
searchCriteria = node.getAttribute('id');
|
|
}
|
|
|
|
function checkSearchValue(event)
|
|
{
|
|
var form = event.target;
|
|
var searchField = document.getElementById('searchValue');
|
|
var ghostPhrase = searchField.getAttribute('ghost-phrase');
|
|
|
|
if (searchField.value == ghostPhrase)
|
|
searchField.value = "";
|
|
}
|
|
|
|
function onSearchChange()
|
|
{
|
|
}
|
|
|
|
function onSearchMouseDown(event)
|
|
{
|
|
searchField = document.getElementById('searchValue');
|
|
superNode = searchField.parentNode.parentNode.parentNode;
|
|
relX = (event.pageX - superNode.offsetLeft - searchField.offsetLeft);
|
|
relY = (event.pageY - superNode.offsetTop - searchField.offsetTop);
|
|
|
|
if (relY < 24) {
|
|
event.cancelBubble = true;
|
|
event.returnValue = false;
|
|
}
|
|
}
|
|
|
|
function onSearchFocus(event)
|
|
{
|
|
searchField = document.getElementById('searchValue');
|
|
ghostPhrase = searchField.getAttribute("ghost-phrase");
|
|
if (searchField.value == ghostPhrase) {
|
|
searchField.value = "";
|
|
searchField.setAttribute("modified", "");
|
|
} else {
|
|
searchField.select();
|
|
}
|
|
|
|
searchField.style.color = "#000";
|
|
}
|
|
|
|
function onSearchBlur()
|
|
{
|
|
var searchField = document.getElementById('searchValue');
|
|
var ghostPhrase = searchField.getAttribute("ghost-phrase");
|
|
|
|
if (searchField.value == "") {
|
|
searchField.setAttribute("modified", "");
|
|
searchField.style.color = "#aaa";
|
|
searchField.value = ghostPhrase;
|
|
} else if (searchField.value == ghostPhrase) {
|
|
searchField.setAttribute("modified", "");
|
|
searchField.style.color = "#aaa";
|
|
} else {
|
|
searchField.setAttribute("modified", "yes");
|
|
searchField.style.color = "#000";
|
|
}
|
|
}
|
|
|
|
function initCriteria()
|
|
{
|
|
var searchCriteria = document.getElementById('searchCriteria');
|
|
var searchField = document.getElementById('searchValue');
|
|
var firstOption;
|
|
|
|
if (searchCriteria.value == ''
|
|
|| searchField.value == '') {
|
|
firstOption = document.getElementById('searchOptions').childNodes[1];
|
|
searchCriteria.value = firstOption.getAttribute('id');
|
|
searchField.value = firstOption.innerHTML;
|
|
searchField.setAttribute('ghost-phrase', firstOption.innerHTML);
|
|
searchField.setAttribute("modified", "");
|
|
searchField.style.color = "#aaa";
|
|
}
|
|
}
|
|
|
|
function deleteSelectedMails()
|
|
{
|
|
}
|
|
|
|
|
|
/* message menu entries */
|
|
function onMenuOpenMessage(event)
|
|
{
|
|
var node = getParentMenu(event.target).menuTarget.parentNode;
|
|
var msgId = node.getAttribute('id').substr(4);
|
|
|
|
openMessageWindow(null, msgId, msgId + "/view");
|
|
|
|
return false;
|
|
}
|
|
|
|
function onMenuReplyToSender(event)
|
|
{
|
|
openMessageWindowsForSelection(null, 'reply');
|
|
}
|
|
|
|
function onMenuReplyToAll(event)
|
|
{
|
|
openMessageWindowsForSelection(null, 'replyall');
|
|
|
|
}
|
|
|
|
function onMenuForwardMessage(event)
|
|
{
|
|
openMessageWindowsForSelection(null, 'forward');
|
|
|
|
}
|
|
|
|
function onMenuDeleteMessage(event)
|
|
{
|
|
uixDeleteSelectedMessages(null);
|
|
|
|
return false;
|
|
}
|