includes/clientside/static/faders.js~
changeset 1 fe660c52c48f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/includes/clientside/static/faders.js~	Wed Jun 13 16:07:17 2007 -0400
@@ -0,0 +1,393 @@
+// Message box system
+
+function darken(nofade)
+{
+  if(IE)
+    nofade = true;
+  if(document.getElementById('specialLayer_darkener'))
+  {
+    document.getElementById('specialLayer_darkener').style.display = 'block';
+    if(nofade)
+    {
+      document.getElementById('specialLayer_darkener').style.opacity = '0.7';
+      document.getElementById('specialLayer_darkener').style.filter = 'alpha(opacity=70)';
+    }
+    else
+    {
+      opacity('specialLayer_darkener', 0, 70, 1000);
+    }
+  } else {
+    w = getWidth();
+    h = getHeight();
+    var thediv = document.createElement('div');
+    if(IE)
+      thediv.style.position = 'absolute';
+    else
+      thediv.style.position = 'fixed';
+    thediv.style.top = '0px';
+    thediv.style.left = '0px';
+    thediv.style.opacity = '0';
+    thediv.style.filter = 'alpha(opacity=0)';
+    thediv.style.backgroundColor = '#000000';
+    thediv.style.width =  '100%';
+    thediv.style.height = '100%';
+    thediv.zIndex = getHighestZ() + 5;
+    thediv.id = 'specialLayer_darkener';
+    if(nofade)
+    {
+      thediv.style.opacity = '0.7';
+      thediv.style.filter = 'alpha(opacity=70)';
+      body = document.getElementsByTagName('body');
+      body = body[0];
+      body.appendChild(thediv);
+    } else {
+      body = document.getElementsByTagName('body');
+      body = body[0];
+      body.appendChild(thediv);
+      opacity('specialLayer_darkener', 0, 70, 1000);
+    }
+  }
+}
+
+function enlighten(nofade)
+{
+  if(IE)
+    nofade = true;
+  if(document.getElementById('specialLayer_darkener'))
+  {
+    if(nofade)
+    {
+      document.getElementById('specialLayer_darkener').style.display = 'none';
+    }
+    opacity('specialLayer_darkener', 70, 0, 1000);
+    setTimeout("document.getElementById('specialLayer_darkener').style.display = 'none';", 1000);
+  }
+}
+
+/**
+ * The ultimate message box framework for Javascript
+ * Syntax is (almost) identical to the MessageBox command in NSIS
+ * @param int type - a bitfield consisting of the MB_* constants
+ * @param string title - the blue text at the top of the window
+ * @param string text - HTML for the body of the message box
+ * Properties:
+ *   onclick - an array of functions to be called on button click events
+ *             NOTE: key names are to be strings, and they must be the value of the input, CaSe-SeNsItIvE
+ *   onbeforeclick - same as onclick but called before the messagebox div is destroyed
+ * Example:
+ *   var my_message = new messagebox(MB_OK|MB_ICONSTOP, 'Error logging in', 'The username and/or password is incorrect. Please check the username and retype your password');
+ *   my_message.onclick['OK'] = function() {
+ *       document.getElementById('password').value = '';
+ *     };
+ * Deps:
+ *   Modern browser that supports DOM
+ *   darken() and enlighten() (above)
+ *   opacity() - required for darken() and enlighten()
+ *   MB_* constants are defined in enano-lib-basic.js
+ */
+
+var mb_current_obj;
+
+function messagebox(type, title, message)
+{
+  var y = getScrollOffset();
+  if(document.getElementById('messageBox')) return;
+  darken(true);
+  var master_div = document.createElement('div');
+  var mydiv = document.createElement('div');
+  mydiv.style.width = '400px';
+  mydiv.style.height = '200px';
+  w = getWidth();
+  h = getHeight();
+  //master_div.style.left = (w / 2) - 200+'px';
+  //master_div.style.top = (h / 2) + y - 120+'px';
+  master_div.style.top = '-10000px';
+  master_div.style.position = ( IE ) ? 'absolute' : 'fixed';
+  z = getHighestZ(); // document.getElementById('specialLayer_darkener').style.zIndex;
+  mydiv.style.zIndex = parseInt(z) + 1;
+  mydiv.style.backgroundColor = '#FFFFFF';
+  mydiv.style.padding = '10px';
+  mydiv.style.marginBottom = '1px';
+  mydiv.id = 'messageBox';
+  mydiv.style.overflow = 'auto';
+  
+  var buttondiv = document.createElement('div');
+  buttondiv.style.width = '400px';
+  w = getWidth();
+  h = getHeight();
+  // buttondiv.style.left = (w / 2) - 200+'px';
+  // buttondiv.style.top = (h / 2) + y + 101+'px';
+  // buttondiv.style.position = ( IE ) ? 'absolute' : 'fixed';
+  z = getHighestZ(); // document.getElementById('specialLayer_darkener').style.zIndex;
+  buttondiv.style.zIndex = parseInt(z) + 1;
+  buttondiv.style.backgroundColor = '#C0C0C0';
+  buttondiv.style.padding = '10px';
+  buttondiv.style.textAlign = 'right';
+  buttondiv.style.verticalAlign = 'middle';
+  buttondiv.id = 'messageBoxButtons';
+  
+  this.clickHandler = function() { messagebox_click(this, mb_current_obj); };
+  
+  if(type & MB_ICONINFORMATION || type & MB_ICONSTOP || type & MB_ICONQUESTION || type & MB_ICONEXCLAMATION || type & MB_ICONLOCK)
+  {
+    mydiv.style.paddingLeft = '50px';
+    mydiv.style.width = '360px';
+    mydiv.style.backgroundRepeat = 'no-repeat';
+  }
+  
+  if(type & MB_ICONINFORMATION)
+  {
+    mydiv.style.backgroundImage = 'url(\''+scriptPath+'/images/info.png\')';
+  }
+  
+  if(type & MB_ICONQUESTION)
+  {
+    mydiv.style.backgroundImage = 'url(\''+scriptPath+'/images/question.png\')';
+  }
+  
+  if(type & MB_ICONSTOP)
+  {
+    mydiv.style.backgroundImage = 'url(\''+scriptPath+'/images/error.png\')';
+  }
+  
+  if(type & MB_ICONEXCLAMATION)
+  {
+    mydiv.style.backgroundImage = 'url(\''+scriptPath+'/images/warning.png\')';
+  }
+  
+  if(type & MB_ICONLOCK)
+  {
+    mydiv.style.backgroundImage = 'url(\''+scriptPath+'/images/lock.png\')';
+  }
+  
+  if(type & MB_OK)
+  {
+    btn = document.createElement('input');
+    btn.type = 'button';
+    btn.value = 'OK';
+    btn.onclick = this.clickHandler;
+    btn.style.margin = '0 3px';
+    buttondiv.appendChild(btn);
+  }
+  
+  if(type & MB_OKCANCEL)
+  {
+    btn = document.createElement('input');
+    btn.type = 'button';
+    btn.value = 'OK';
+    btn.onclick = this.clickHandler;
+    btn.style.margin = '0 3px';
+    buttondiv.appendChild(btn);
+    
+    btn = document.createElement('input');
+    btn.type = 'button';
+    btn.value = 'Cancel';
+    btn.onclick = this.clickHandler;
+    btn.style.margin = '0 3px';
+    buttondiv.appendChild(btn);
+  }
+  
+  if(type & MB_YESNO)
+  {
+    btn = document.createElement('input');
+    btn.type = 'button';
+    btn.value = 'Yes';
+    btn.onclick = this.clickHandler;
+    btn.style.margin = '0 3px';
+    buttondiv.appendChild(btn);
+    
+    btn = document.createElement('input');
+    btn.type = 'button';
+    btn.value = 'No';
+    btn.onclick = this.clickHandler;
+    btn.style.margin = '0 3px';
+    buttondiv.appendChild(btn);
+  }
+  
+  if(type & MB_YESNOCANCEL)
+  {
+    btn = document.createElement('input');
+    btn.type = 'button';
+    btn.value = 'Yes';
+    btn.onclick = this.clickHandler;
+    btn.style.margin = '0 3px';
+    buttondiv.appendChild(btn);
+    
+    btn = document.createElement('input');
+    btn.type = 'button';
+    btn.value = 'No';
+    btn.onclick = this.clickHandler;
+    btn.style.margin = '0 3px';
+    buttondiv.appendChild(btn);
+    
+    btn = document.createElement('input');
+    btn.type = 'button';
+    btn.value = 'Cancel';
+    btn.onclick = this.clickHandler;
+    btn.style.margin = '0 3px';
+    buttondiv.appendChild(btn);
+  }
+  
+  heading = document.createElement('h2');
+  heading.innerHTML = title;
+  heading.style.color = '#50A0D0';
+  heading.style.fontFamily = 'trebuchet ms, verdana, arial, helvetica, sans-serif';
+  heading.style.fontSize = '12pt';
+  heading.style.fontWeight = 'lighter';
+  heading.style.textTransform = 'lowercase';
+  heading.style.marginTop = '0';
+  mydiv.appendChild(heading);
+  
+  var text = document.createElement('div');
+  text.innerHTML = String(message);
+  this.text_area = text;
+  mydiv.appendChild(text);
+  
+  this.updateContent = function(text)
+    {
+      this.text_area.innerHTML = text;
+    };
+  
+  //domObjChangeOpac(0, mydiv);
+  //domObjChangeOpac(0, master_div);
+  
+  body = document.getElementsByTagName('body');
+  body = body[0];
+  master_div.appendChild(mydiv);
+  master_div.appendChild(buttondiv);
+  
+  body.appendChild(master_div);
+  
+  setTimeout('mb_runFlyIn();', 100);
+  
+  this.onclick = new Array();
+  this.onbeforeclick = new Array();
+  mb_current_obj = this;
+}
+
+function mb_runFlyIn()
+{
+  var mydiv = document.getElementById('messageBox');
+  var maindiv = mydiv.parentNode;
+  fly_in_top(maindiv, true, false);
+}
+
+function messagebox_click(obj, mb)
+{
+  val = obj.value;
+  if(typeof mb.onbeforeclick[val] == 'function')
+  {
+    var o = mb.onbeforeclick[val];
+    var resp = o();
+    if ( resp )
+      return false;
+    o = false;
+  }
+  
+  var mydiv = document.getElementById('messageBox');
+  var maindiv = mydiv.parentNode;
+  var to = fly_out_top(maindiv, true, false);
+  
+  setTimeout("var mbdiv = document.getElementById('messageBox'); mbdiv.parentNode.removeChild(mbdiv.nextSibling); mbdiv.parentNode.removeChild(mbdiv); enlighten(true);", to);
+  if(typeof mb.onclick[val] == 'function')
+  {
+    o = mb.onclick[val];
+    o();
+    o = false;
+  }
+}
+
+function testMessageBox()
+{
+  mb = new messagebox(MB_OKCANCEL|MB_ICONINFORMATION, 'Javascripted dynamic message boxes', 'This is soooooo coool, now if only document.createElement() worked in IE!<br />this is some more text<br /><br /><br /><br /><br />this is some more text<br /><br /><br /><br /><br />this is some more text<br /><br /><br /><br /><br />this is some more text<br /><br /><br /><br /><br />this is some more text<br /><br /><br /><br /><br />this is some more text<br /><br /><br /><br /><br />this is some more text<br /><br /><br /><br /><br />this is some more text');
+  mb.onclick['OK'] = function()
+    {
+      alert('You clicked OK!');
+    }
+  mb.onbeforeclick['Cancel'] = function()
+    {
+      alert('You clicked Cancel!');
+    }
+}
+
+// Function to fade classes info-box, warning-box, error-box, etc.
+
+function fadeInfoBoxes()
+{
+  var divs = new Array();
+  d = document.getElementsByTagName('div');
+  j = 0;
+  for(var i in d)
+  {
+    if ( !d[i].tagName )
+      continue;
+    if(d[i].className=='info-box' || d[i].className=='error-box' || d[i].className=='warning-box' || d[i].className=='question-box')
+    {
+      divs[j] = d[i];
+      j++;
+    }
+  }
+  if(divs.length < 1) return;
+  for(i in divs)
+  {
+    if(!divs[i].id) divs[i].id = 'autofade_'+Math.floor(Math.random() * 100000);
+    switch(divs[i].className)
+    {
+      case 'info-box':
+      default:
+        from = '#3333FF';
+        break;
+      case 'error-box':
+        from = '#FF3333';
+        break;
+      case 'warning-box':
+        from = '#FFFF33';
+        break;
+      case 'question-box':
+        from = '#33FF33';
+        break;
+    }
+    Fat.fade_element(divs[i].id,30,2000,from,Fat.get_bgcolor(divs[i].id));
+  }
+}
+
+// Alpha fades
+
+function opacity(id, opacStart, opacEnd, millisec) {
+    //speed for each frame
+    var speed = Math.round(millisec / 100);
+    var timer = 0;
+
+    //determine the direction for the blending, if start and end are the same nothing happens
+    if(opacStart > opacEnd) {
+        for(i = opacStart; i >= opacEnd; i--) {
+            setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed));
+            timer++;
+        }
+    } else if(opacStart < opacEnd) {
+        for(i = opacStart; i <= opacEnd; i++)
+            {
+            setTimeout("changeOpac(" + i + ",'" + id + "')",(timer * speed));
+            timer++;
+        }
+    }
+}
+
+//change the opacity for different browsers
+function changeOpac(opacity, id) {
+    var object = document.getElementById(id).style;
+    object.opacity = (opacity / 100);
+    object.MozOpacity = (opacity / 100);
+    object.KhtmlOpacity = (opacity / 100);
+    object.filter = "alpha(opacity=" + opacity + ")";
+}
+
+function mb_logout()
+{
+  var mb = new messagebox(MB_YESNO|MB_ICONQUESTION, 'Are you sure you want to log out?', 'If you log out, you will no longer be able to access your user preferences, certain areas of this site, and this awesome logout confirmation screen until you login again.<br /><br />OK, not funny. I\'ll remove the bad humor in Banshee.');
+  mb.onclick['Yes'] = function()
+    {
+      window.location = makeUrlNS('Special', 'Logout/' + title);
+    }
+}
+