thomascube
2009-07-24 356a67fa5476dc288c5a9704fdedf3644cedf596
Improve button capabilities

2 files modified
39 ■■■■■ changed files
program/include/rcube_template.php 2 ●●● patch | view | raw | blame | history
program/js/app.js 37 ●●●●● patch | view | raw | blame | history
program/include/rcube_template.php
@@ -876,7 +876,7 @@
            $link_attrib = array('href', 'onclick', 'onmouseover', 'onmouseout', 'onmousedown', 'onmouseup', 'target');
        }
        else if ($attrib['type']=='link') {
            $btn_content = $attrib['label'] ? $attrib['label'] : $attrib['command'];
            $btn_content = isset($attrib['content']) ? $attrib['content'] : ($attrib['label'] ? $attrib['label'] : $attrib['command']);
            $link_attrib = array('href', 'onclick', 'title', 'id', 'class', 'style', 'tabindex', 'target');
        }
        else if ($attrib['type']=='input') {
program/js/app.js
@@ -3463,7 +3463,7 @@
  this.button_over = function(command, id)
    {
    var a_buttons = this.buttons[command];
    var button, img;
    var button, elm;
    if(!a_buttons || !a_buttons.length)
      return false;
@@ -3473,19 +3473,22 @@
      button = a_buttons[n];
      if(button.id==id && button.status=='act')
        {
        img = document.getElementById(button.id);
        if (img && button.over)
          img.src = button.over;
        elm = document.getElementById(button.id);
        if (elm && button.over) {
          if (button.type == 'image')
            elm.src = button.over;
          else
            elm.className = button.over;
        }
      }
    }
    };
  // mouse down on button
  this.button_sel = function(command, id)
    {
    var a_buttons = this.buttons[command];
    var button, img;
    var button, elm;
    if(!a_buttons || !a_buttons.length)
      return;
@@ -3495,9 +3498,13 @@
      button = a_buttons[n];
      if(button.id==id && button.status=='act')
        {
        img = document.getElementById(button.id);
        if (img && button.sel)
          img.src = button.sel;
        elm = document.getElementById(button.id);
        if (elm && button.sel) {
          if (button.type == 'image')
            elm.src = button.sel;
          else
            elm.className = button.sel;
        }
        }
      }
    };
@@ -3506,7 +3513,7 @@
  this.button_out = function(command, id)
    {
    var a_buttons = this.buttons[command];
    var button, img;
    var button, elm;
    if(!a_buttons || !a_buttons.length)
      return;
@@ -3516,9 +3523,13 @@
      button = a_buttons[n];
      if(button.id==id && button.status=='act')
        {
        img = document.getElementById(button.id);
        if (img && button.act)
          img.src = button.act;
        elm = document.getElementById(button.id);
        if (elm && button.act) {
          if (button.type == 'image')
            elm.src = button.act;
          else
            elm.className = button.act;
        }
        }
      }
    };