Added patch for ctrl/shift behavior

release-0.6
thomascube 19 years ago
parent eea43f7c99
commit b11a0054e3

@ -11,8 +11,16 @@
+-----------------------------------------------------------------------+ +-----------------------------------------------------------------------+
$Id$ $Id$
Modifications:
2006/01/19: Applied patch for ctrl/shift behavior by Charles McNulty <charles@charlesmcnulty.com>
*/ */
// Constants
var CONTROL_KEY = 1;
var SHIFT_KEY = 2;
var CONTROL_SHIFT_KEY = 3;
var rcube_webmail_client; var rcube_webmail_client;
@ -222,7 +230,7 @@ function rcube_webmail()
this.enable_command('logout', true); this.enable_command('logout', true);
// disable browser's contextmenus // disable browser's contextmenus
// document.oncontextmenu = function(){ return false; } document.oncontextmenu = function(){ return false; }
// flag object as complete // flag object as complete
this.loaded = true; this.loaded = true;
@ -278,7 +286,10 @@ function rcube_webmail()
// set eventhandlers to table row // set eventhandlers to table row
row.onmousedown = function(e){ return rcube_webmail_client.drag_row(e, this.uid); }; row.onmousedown = function(e){ return rcube_webmail_client.drag_row(e, this.uid); };
row.onmouseup = function(e){ return rcube_webmail_client.click_row(e, this.uid); }; row.onmouseup = function(e){ return rcube_webmail_client.click_row(e, this.uid); };
if (document.all)
row.onselectstart = function() { return false; };
// set eventhandler to message icon // set eventhandler to message icon
if ((msg_icon = row.cells[0].childNodes[0]) && row.cells[0].childNodes[0].nodeName=='IMG') if ((msg_icon = row.cells[0].childNodes[0]) && row.cells[0].childNodes[0].nodeName=='IMG')
{ {
@ -997,11 +1008,30 @@ function rcube_webmail()
if (this.dont_select) if (this.dont_select)
return false; return false;
// selects currently unselected row
if (!this.in_selection_before) if (!this.in_selection_before)
{ {
var ctrl = this.check_ctrlkey(e); var mod_key = this.get_modifier(e);
this.select(id, ctrl); if (!mod_key) {
this.select(id, false);
this.last_selected = id;
} else {
switch (mod_key) {
case SHIFT_KEY: { this.shift_select(id,false); break; }
case CONTROL_KEY: {
this.select(id, true);
this.last_selected = id;
break;
}
case CONTROL_SHIFT_KEY: { this.shift_select(id,true); break;}
default: {
this.select(id, false);
this.last_selected = id;
break;
}
}
} }
}
if (this.selection.length) if (this.selection.length)
{ {
@ -1017,7 +1047,7 @@ function rcube_webmail()
// onmouseup-handler of message list row // onmouseup-handler of message list row
this.click_row = function(e, id) this.click_row = function(e, id)
{ {
var shift = this.check_shiftkey(e); var mod_key = this.get_modifier(e);
// don't do anything (another action processed before) // don't do anything (another action processed before)
if (this.dont_select) if (this.dont_select)
@ -1026,16 +1056,33 @@ function rcube_webmail()
return false; return false;
} }
if (!this.drag_active && this.in_selection_before==id) // unselects currently selected row
{ if (!this.drag_active && this.in_selection_before==id) {
this.select(id, (shift && this.task!='settings')); if (!mod_key) {
this.last_selected = id;
this.select(id, false);
} else {
switch (mod_key) {
case SHIFT_KEY: { this.shift_select(id,false); break; }
case CONTROL_KEY: {
this.last_selected = id;
this.select(id, (this.task!='settings'));
break;
}
case CONTROL_SHIFT_KEY: {this.shift_select(id,true);break;}
default: {
this.select(id, false);
this.last_selected = id;
break;
}
}
} }
}
this.drag_start = false; this.drag_start = false;
this.in_selection_before = false; this.in_selection_before = false;
// row was double clicked // row was double clicked
if (this.task=='mail' && this.list_rows && this.list_rows[id].clicked && !shift) if (this.task=='mail' && this.list_rows && this.list_rows[id].clicked)
{ {
this.show_message(id); this.show_message(id);
return false; return false;
@ -1132,7 +1179,6 @@ function rcube_webmail()
this.selection = a_pre.concat(a_post); this.selection = a_pre.concat(a_post);
this.set_classname(this.list_rows[id].obj, 'selected', false); this.set_classname(this.list_rows[id].obj, 'selected', false);
} }
selected = (this.selection.length==1); selected = (this.selection.length==1);
} }
@ -1150,6 +1196,28 @@ function rcube_webmail()
}; };
// select all rows from the last selected row to the current one, while deselecting all other rows
this.shift_select = function(id,control)
{
var from_rowIndex = this.list_rows[this.last_selected].obj.rowIndex;
var to_rowIndex = this.list_rows[id].obj.rowIndex;
var i = ((from_rowIndex < to_rowIndex)? from_rowIndex : to_rowIndex);
var j = ((from_rowIndex > to_rowIndex)? from_rowIndex : to_rowIndex);
// iterate through the entire message list
for (var n in this.list_rows) {
if ((this.list_rows[n].obj.rowIndex >= i) && (this.list_rows[n].obj.rowIndex <= j)) {
if (!this.in_selection(n))
this.select(n, true);
} else {
if (this.in_selection(n) && !control)
this.select(n, true);
}
}
};
this.clear_selection = function() this.clear_selection = function()
{ {
for(var n=0; n<this.selection.length; n++) for(var n=0; n<this.selection.length; n++)
@ -2809,6 +2877,26 @@ function rcube_webmail()
return false; return false;
} }
// returns modifier key (constants defined at top of file)
this.get_modifier = function(e)
{
var opcode = 0;
if (e = e || window.event)
{
opcode += (e.ctrlKey && CONTROL_KEY) + (e.shiftKey && SHIFT_KEY);
return opcode;
}
if (e.cancelBubble)
{
e.cancelBubble = true;
e.returnValue = false;
}
else if (e.preventDefault)
e.preventDefault();
}
this.get_mouse_pos = function(e) this.get_mouse_pos = function(e)
{ {
if(!e) e = window.event; if(!e) e = window.event;

Loading…
Cancel
Save