123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- /**
- * This array is used to remember mark status of rows in browse mode
- *
- * @copyright © 2005-2006 The SquirrelMail Project Team
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @version $Id$
- */
- var marked_row = new Array;
- var orig_row_colors = new Array();
- /*
- * (un)Checks checkbox for the row that the current table cell is in
- * when it gets clicked.
- *
- * @param string the name of the checkbox that should be (un)checked
- */
- function row_click(chkboxName) {
- chkbox = document.getElementById(chkboxName);
- if (chkbox) {
- // initialize orig_row_color if not defined already
- if (!orig_row_colors[chkboxName]) {
- orig_row_colors[chkboxName] = chkbox.parentNode.getAttribute('bgcolor');
- }
- chkbox.checked = (chkbox.checked ? false : true);
- }
- }
- /*
- * Gets the current class of the requested row. This is a browser specific function.
- * Code shamelessly ripped from setPointer() below.
- */
- function getCSSClass (theRow)
- {
- // 3.1 ... with DOM compatible browsers except Opera that does not return
- // valid values with "getAttribute"
- if (typeof(window.opera) == 'undefined'
- && typeof(theRow.getAttribute) != 'undefined'
- && theRow.getAttribute('className') ) {
- rowClass = theRow.getAttribute('className');
- }
- // 3.2 ... with other browsers
- else {
- rowClass = theRow.className;
- }
-
- return rowClass;
- }
- /*
- * This function is used to initialize the orig_row_color array so we do not
- * need to predefine the entire array
- */
- function rowOver(chkboxName) {
- chkbox = document.getElementById(chkboxName);
- if (chkbox) {
- if (!orig_row_colors[chkboxName]) {
- rowClass = getCSSClass(chkbox.parentNode.parentNode);
- orig_row_colors[chkboxName] = rowClass;
- } else {
- rowClass = orig_row_colors[chkboxName];
- }
- j = chkbox.name.length - 1
- /*
- * The mouseover and clicked CSS classes are always the same name!
- */
- overClass = 'mouse_over';
- clickedClass = 'clicked';
- setPointer(chkbox.parentNode.parentNode, j,'over' , rowClass, overClass, clickedClass);
- }
- }
- /*
- * (un)Checks all checkboxes for the message list from a specific form
- * when it gets clicked.
- *
- * @param string the id of the form where all checkboxes should be (un)checked
- * @param boolean use fancy row coloring when a checkbox is checked
- * @param string new color of the checked rows
- */
- function toggle_all(formname, fancy) {
- TargetForm = document.getElementById(formname);
- j = 0;
- for (var i = 0; i < TargetForm.elements.length; i++) {
- if (TargetForm.elements[i].type == 'checkbox' && TargetForm.elements[i].name.substring(0,3) == 'msg') {
- if (fancy) {
- array_key = TargetForm.elements[i].getAttribute('id');
- if (TargetForm.elements[i].checked == false) {
- // initialize orig_row_color if not defined already
- if (!orig_row_colors[array_key]) {
- rowClass = getCSSClass(TargetForm.elements[i].parentNode.parentNode);
- orig_row_colors[array_key] = rowClass;
- }
- }
- origClass = orig_row_colors[array_key];
- clickedClass = 'clicked';
- setPointer(TargetForm.elements[i].parentNode.parentNode, j,'click' , origClass, origClass, clickedClass);
- j++
- }
- TargetForm.elements[i].checked = !(TargetForm.elements[i].checked);
- }
- }
- }
- /*
- * Sets/unsets the pointer and marker in browse mode
- *
- * @param object the table row
- * @param integer the row number
- * @param string the action calling this script (over, out or click)
- * @param string the default background CSS class
- * @param string the CSS class to use for mouseover
- * @param string the CSS class to use for marking a row
- *
- * @return boolean whether pointer is set or not
- */
- function setPointer(theRow, theRowNum, theAction, theDefaultClass, thePointerClass, theMarkClass)
- {
- // 1. Pointer and mark feature are disabled or the browser can't get the
- // row -> exits
- if ((thePointerClass == '' && theMarkClass == '')
- || typeof(theRow.className) == 'undefined') {
- return false;
- }
- // 2. Verify we can get the current row or exit
- if (typeof(document.getElementsByTagName) != 'undefined') {
- // We are ok
- }
- else if (typeof(theRow) != 'undefined') {
- // We are ok
- }
- else {
- return false;
- }
- // 3. Gets the current CSS class...
- var domDetect = null;
- var newClass = null;
- var currentClass = getCSSClass(theRow);
-
- // domDetect is needed later...
- // 3.1 ... with DOM compatible browsers except Opera that does not return
- // valid values with "getAttribute"
- if (typeof(window.opera) == 'undefined'
- && typeof(theRow.getAttribute) != 'undefined'
- && theRow.getAttribute('className') ) {
- domDetect = true;
- }
- // 3.2 ... with other browsers
- else {
- domDetect = false;
- } // end 3
- // 4. Defines the new class
- // 4.1 Current class is the default one
- if (currentClass == ''
- || currentClass.toLowerCase() == theDefaultClass.toLowerCase()) {
- if (theAction == 'over' && thePointerClass != '') {
- newClass = thePointerClass;
- }
- else if (theAction == 'click' && theMarkClass != '') {
- newClass = theMarkClass;
- marked_row[theRowNum] = true;
- // deactivated onclick marking of the checkbox because it's also executed
- // when an action (clicking on the checkbox itself) on a single item is
- // performed. Then the checkbox would get deactived, even though we need
- // it activated. Maybe there is a way to detect if the row was clicked,
- // and not an item therein...
- //document.getElementById('msg[' + theRowNum + ']').checked = true;
- }
- }
- // 4.1.2 Current class is the pointer one
- else if (currentClass.toLowerCase() == thePointerClass.toLowerCase()
- && (typeof(marked_row[theRowNum]) == 'undefined' || !marked_row[theRowNum])) {
- if (theAction == 'out') {
- newClass = theDefaultClass;
- }
- else if (theAction == 'click' && theMarkClass != '') {
- newClass = theMarkClass;
- marked_row[theRowNum] = true;
- //document.getElementById('msg[' + theRowNum + ']').checked = true;
- }
- }
- // 4.1.3 Current color is the marker one
- else if (currentClass.toLowerCase() == theMarkClass.toLowerCase()) {
- if (theAction == 'click') {
- newClass = (thePointerClass != '')
- ? thePointerClass
- : theDefaultClass;
- marked_row[theRowNum] = (typeof(marked_row[theRowNum]) == 'undefined' || !marked_row[theRowNum])
- ? true
- : null;
- //document.getElementById('msg[' + theRowNum + ']').checked = false;
- }
- } // end 4
- // 5. Sets the new color...
- if (newClass) {
- // 5.1 ... with DOM compatible browsers except Opera
- if (domDetect) {
- theRow.setAttribute('className', newClass, 0);
- }
- // 5.2 ... with other browsers
- else {
- theRow.className = newClass;
- }
- } // end 5
- return true;
- } // end of the 'setPointer()' function
- function comp_in_new_form(comp_uri, button, myform, iWidth, iHeight) {
- comp_uri += "&" + button.name + "=1";
- for ( var i=0; i < myform.elements.length; i++ ) {
- if ( myform.elements[i].type == "checkbox" && myform.elements[i].checked )
- comp_uri += "&" + myform.elements[i].name + "=1";
- }
- if (!iWidth) iWidth = 640;
- if (!iHeight) iHeight = 550;
- sArg = "width=" + iWidth + ",height=" + iHeight + ",scrollbars=yes,resizable=yes,status=yes";
- var newwin = window.open(comp_uri, "_blank", sArg);
- }
- function comp_in_new(comp_uri, iWidth, iHeight) {
- if (!iWidth) iWidth = 640;
- if (!iHeight) iHeight = 550;
- sArg = "width=" + iWidth + ",height=" + iHeight + ",scrollbars=yes,resizable=yes,status=yes";
- var newwin = window.open(comp_uri , "_blank", sArg);
- }
- /*
- * Reload the read_body screen on sending an mdn receipt
- */
- function sendMDN() {
- mdnuri=window.location+'&sendreceipt=1';
- var newwin = window.open(mdnuri,'right');
- }
- var alreadyFocused = false;
- function checkForm(smaction) {
- if (alreadyFocused) return;
- /*
- * this part is used for setting the focus in the compose screen
- */
- if (smaction) {
- if (smaction == "select") {
- document.forms['compose'].body.select();
- } else if (smaction == "focus") {
- document.forms['compose'].body.focus();
- }
- } else {
- /*
- * All other forms that need to set the focus
- */
- var f = document.forms.length;
- var i = 0;
- var pos = -1;
- while( pos == -1 && i < f ) {
- var e = document.forms[i].elements.length;
- var j = 0;
- while( pos == -1 && j < e ) {
- if ( document.forms[i].elements[j].type == 'text' || document.forms[i].elements[j].type == 'password' ) {
- pos = j;
- }
- j++;
- }
- i++;
- }
- if( pos >= 0 ) {
- document.forms[i-1].elements[pos].focus();
- }
- }
- }
|