X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fdhtmlsuite%2Fmenu-for-applications.js;h=bf23469a8eb23f6f77fd782bf29b6fd96d9770d6;hb=90a1b6fad6aeeab84fc96d6511fdf42fff315df5;hp=67c37f8cd896e5ed10a959c49ff354310f3f6a8f;hpb=2c4715de6cadaed4c13a198cb26bea0a9c8c27f1;p=kivitendo-erp.git diff --git a/js/dhtmlsuite/menu-for-applications.js b/js/dhtmlsuite/menu-for-applications.js index 67c37f8cd..bf23469a8 100644 --- a/js/dhtmlsuite/menu-for-applications.js +++ b/js/dhtmlsuite/menu-for-applications.js @@ -1,2396 +1,2395 @@ -/************************************************************************************************************ - @fileoverview - DHTML Suite for Applications. - Copyright (C) 2006 Alf Magne Kalleland(post@dhtmlgoodies.com)
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
-
-
- www.dhtmlgoodies.com
- Alf Magne Kalleland
- -************************************************************************************************************/ - - -/** - * - * @package DHTMLSuite for applications - * @copyright Copyright © 2006, www.dhtmlgoodies.com - * @author Alf Magne Kalleland - */ - - -/************************************************************************************************************ -* -* Global variables -* -************************************************************************************************************/ - - -// {{{ DHTMLSuite.createStandardObjects() -/** - * Create objects used by all scripts - * - * @public - */ - - -var DHTMLSuite = new Object(); - -var standardObjectsCreated = false; // The classes below will check this variable, if it is false, default help objects will be created -DHTMLSuite.eventElements = new Array(); // Array of elements that has been assigned to an event handler. - -DHTMLSuite.createStandardObjects = function() -{ - DHTMLSuite.clientInfoObj = new DHTMLSuite.clientInfo(); // Create browser info object - DHTMLSuite.clientInfoObj.init(); - if(!DHTMLSuite.configObj){ // If this object isn't allready created, create it. - DHTMLSuite.configObj = new DHTMLSuite.config(); // Create configuration object. - DHTMLSuite.configObj.init(); - } - DHTMLSuite.commonObj = new DHTMLSuite.common(); // Create configuration object. - DHTMLSuite.variableStorage = new DHTMLSuite.globalVariableStorage();; // Create configuration object. - DHTMLSuite.commonObj.init(); - window.onunload = function() { DHTMLSuite.commonObj.__clearGarbage(); } - - standardObjectsCreated = true; - - -} - - - - -/************************************************************************************************************ -* Configuration class used by most of the scripts -* -* Created: August, 19th, 2006 -* Update log: -* -************************************************************************************************************/ - - -/** -* @constructor -* @class Store global variables/configurations used by the classes below. Example: If you want to -* change the path to the images used by the scripts, change it here. An object of this -* class will always be available to the other classes. The name of this object is -* "DHTMLSuite.configObj".

-* -* If you want to create an object of this class manually, remember to name it "DHTMLSuite.configObj" -* This object should then be created before any other objects. This is nescessary if you want -* the other objects to use the values you have put into the object.
-* @version 1.0 -* @version 1.0 -* @author Alf Magne Kalleland(www.dhtmlgoodies.com) -**/ -DHTMLSuite.config = function() -{ - var imagePath; // Path to images used by the classes. - var cssPath; // Path to CSS files used by the DHTML suite. -} - - -DHTMLSuite.config.prototype = { - // {{{ init() - /** - * - * @public - */ - init : function() - { - this.imagePath = '../images_dhtmlsuite/'; // Path to images - this.cssPath = '../css_dhtmlsuite/'; // Path to images - } - // }}} - , - // {{{ setCssPath() - /** - * This method will save a new CSS path, i.e. where the css files of the dhtml suite are located. - * - * @param string newCssPath = New path to css files - * @public - */ - - setCssPath : function(newCssPath) - { - this.cssPath = newCssPath; - } - // }}} - , - // {{{ setImagePath() - /** - * This method will save a new image file path, i.e. where the image files used by the dhtml suite ar located - * - * @param string newImagePath = New path to image files - * @public - */ - setImagePath : function(newImagePath) - { - this.imagePath = newImagePath; - } - // }}} -} - - - -DHTMLSuite.globalVariableStorage = function() -{ - var menuBar_highlightedItems; // Array of highlighted menu bar items - this.menuBar_highlightedItems = new Array(); - - var arrayOfDhtmlSuiteObjects; // Array of objects of class menuItem. - this.arrayOfDhtmlSuiteObjects = new Array(); -} - -DHTMLSuite.globalVariableStorage.prototype = { - -} - - -/************************************************************************************************************ -* A class with general methods used by most of the scripts -* -* Created: August, 19th, 2006 -* Purpose of class: A class containing common method used by one or more of the gui classes below, -* example: loadCSS. -* An object("DHTMLSuite.commonObj") of this class will always be available to the other classes. -* Update log: -* -************************************************************************************************************/ - - -/** -* @constructor -* @class A class containing common method used by one or more of the gui classes below, example: loadCSS. An object("DHTMLSuite.commonObj") of this class will always be available to the other classes. -* @version 1.0 -* @author Alf Magne Kalleland(www.dhtmlgoodies.com) -**/ - -DHTMLSuite.common = function() -{ - var loadedCSSFiles; // Array of loaded CSS files. Prevent same CSS file from being loaded twice. - var cssCacheStatus; // Css cache status - var eventElements; - - this.cssCacheStatus = true; // Caching of css files = on(Default) - this.eventElements = new Array(); -} - -DHTMLSuite.common.prototype = { - - // {{{ init() - /** - * This method initializes the DHTMLSuite_common object. - * - * @public - */ - - init : function() - { - this.loadedCSSFiles = new Array(); - } - // }}} - , - // {{{ loadCSS() - /** - * This method loads a CSS file(Cascading Style Sheet) dynamically - i.e. an alternative to tag in the document. - * - * @param string cssFileName = New path to image files - * @public - */ - - loadCSS : function(cssFileName) - { - - if(!this.loadedCSSFiles[cssFileName]){ - this.loadedCSSFiles[cssFileName] = true; - var linkTag = document.createElement('LINK'); - if(!this.cssCacheStatus){ - if(cssFileName.indexOf('?')>=0)cssFileName = cssFileName + '&'; else cssFileName = cssFileName + '?'; - cssFileName = cssFileName + 'rand='+ Math.random(); // To prevent caching - } - linkTag.href = DHTMLSuite.configObj.cssPath + cssFileName; - linkTag.rel = 'stylesheet'; - linkTag.media = 'screen'; - linkTag.type = 'text/css'; - document.getElementsByTagName('HEAD')[0].appendChild(linkTag); - - } - } - // }}} - , - // {{{ getTopPos() - /** - * This method will return the top coordinate(pixel) of an object - * - * @param Object inputObj = Reference to HTML element - * @public - */ - getTopPos : function(inputObj) - { - var returnValue = inputObj.offsetTop; - while((inputObj = inputObj.offsetParent) != null){ - if(inputObj.tagName!='HTML'){ - returnValue += (inputObj.offsetTop - inputObj.scrollTop); - if(document.all)returnValue+=inputObj.clientTop; - } - } - return returnValue; - } - // }}} - , - // {{{ setCssCacheStatus() - /** - * Specify if css files should be cached or not. - * - * @param Boolean cssCacheStatus = true = cache on, false = cache off - * - * @public - */ - setCssCacheStatus : function(cssCacheStatus) - { - this.cssCacheStatus = cssCacheStatus; - } - // }}} - , - // {{{ getLeftPos() - /** - * This method will return the left coordinate(pixel) of an object - * - * @param Object inputObj = Reference to HTML element - * @public - */ - getLeftPos : function(inputObj) - { - var returnValue = inputObj.offsetLeft; - while((inputObj = inputObj.offsetParent) != null){ - if(inputObj.tagName!='HTML'){ - returnValue += inputObj.offsetLeft; - if(document.all)returnValue+=inputObj.clientLeft; - } - } - return returnValue; - } - // }}} - , - // {{{ cancelEvent() - /** - * - * This function only returns false. It is used to cancel selections and drag - * - * - * @public - */ - - cancelEvent : function() - { - return false; - } - // }}} - , - // {{{ addEvent() - /** - * - * This function adds an event listener to an element on the page. - * - * @param Object whichObject = Reference to HTML element(Which object to assigne the event) - * @param String eventType = Which type of event, example "mousemove" or "mouseup" - * @param functionName = Name of function to execute. - * - * @public - */ - addEvent : function(whichObject,eventType,functionName) - { - if(whichObject.attachEvent){ - whichObject['e'+eventType+functionName] = functionName; - whichObject[eventType+functionName] = function(){whichObject['e'+eventType+functionName]( window.event );} - whichObject.attachEvent( 'on'+eventType, whichObject[eventType+functionName] ); - } else - whichObject.addEventListener(eventType,functionName,false); - this.__addEventElement(whichObject); - delete(whichObject); - // whichObject = null; - } - // }}} - , - // {{{ removeEvent() - /** - * - * This function removes an event listener from an element on the page. - * - * @param Object whichObject = Reference to HTML element(Which object to assigne the event) - * @param String eventType = Which type of event, example "mousemove" or "mouseup" - * @param functionName = Name of function to execute. - * - * @public - */ - removeEvent : function(whichObject,eventType,functionName) - { - if(whichObject.detachEvent){ - whichObject.detachEvent('on'+eventType, whichObject[eventType+functionName]); - whichObject[eventType+functionName] = null; - } else - whichObject.removeEventListener(eventType,functionName,false); - } - , - // {{{ __clearGarbage() - /** - * - * This function is used for Internet Explorer in order to clear memory when the page unloads. - * - * - * @private - */ - __clearGarbage : function() - { - /* Example of event which causes memory leakage in IE - - DHTMLSuite.commonObj.addEvent(expandRef,"click",function(){ window.refToMyMenuBar[index].__changeMenuBarState(this); }) - - We got a circular reference. - - */ - - if(!DHTMLSuite.clientInfoObj.isMSIE)return; - - for(var no in DHTMLSuite.variableStorage.arrayOfDhtmlSuiteObjects){ - DHTMLSuite.variableStorage.arrayOfDhtmlSuiteObjects[no] = false; - } - - for(var no=0;no=0)?true:false; - this.isFirefox = (this.browser.toLowerCase().indexOf('firefox')>=0)?true:false; - this.isMSIE = (this.browser.toLowerCase().indexOf('msie')>=0)?true:false; - this.isSafari = (this.browser.toLowerCase().indexOf('safari')>=0)?true:false; - this.navigatorVersion = navigator.appVersion.replace(/.*?MSIE (\d\.\d).*/g,'$1')/1; - } - // }}} -} - -/************************************************************************************************************ -* DHTML menu model item class -* -* Created: October, 30th, 2006 -* @class Purpose of class: Save data about a menu item. -* -* -* -* Update log: -* -************************************************************************************************************/ - -DHTMLSuite.menuModelItem = function() -{ - var id; // id of this menu item. - var itemText; // Text for this menu item - var itemIcon; // Icon for this menu item. - var url; // url when click on this menu item - var parentId; // id of parent element - var separator; // is this menu item a separator - var jsFunction; // Js function to call onclick - var depth; // Depth of this menu item. - var hasSubs; // Does this menu item have sub items. - var type; // Menu item type - possible values: "top" or "sub". - var helpText; // Help text for this item - appear when you move your mouse over the item. - var state; - var submenuWidth; // Width of sub menu items. - var visible; // Visibility of menu item. - var frameTarget; - - this.state = 'regular'; -} - -DHTMLSuite.menuModelItem.prototype = { - - setMenuVars : function(id,itemText,itemIcon,url,parentId,helpText,jsFunction,type,submenuWidth,frameTarget) - { - this.id = id; - this.itemText = itemText; - this.itemIcon = itemIcon; - this.url = url; - this.parentId = parentId; - this.jsFunction = jsFunction; - this.separator = false; - this.depth = false; - this.hasSubs = false; - this.helpText = helpText; - this.submenuWidth = submenuWidth; - this.visible = true; - this.frameTarget = frameTarget; - if(!type){ - if(this.parentId)this.type = 'top'; else this.type='sub'; - }else this.type = type; - - - } - // }}} - , - // {{{ setState() - /** - * Update the state attribute of a menu item. - * - * @param String newState New state of this item - * @public - */ - setAsSeparator : function(id,parentId) - { - this.id = id; - this.parentId = parentId; - this.separator = true; - this.visible = true; - if(this.parentId)this.type = 'top'; else this.type='sub'; - } - // }}} - , - // {{{ setState() - /** - * Update the visible attribute of a menu item. - * - * @param Boolean visible true = visible, false = hidden. - * @public - */ - setVisibility : function(visible) - { - this.visible = visible; - } - // }}} - , - // {{{ getState() - /** - * Return the state attribute of a menu item. - * - * @public - */ - getState : function() - { - return this.state; - } - // }}} - , - // {{{ setState() - /** - * Update the state attribute of a menu item. - * - * @param String newState New state of this item - * @public - */ - setState : function(newState) - { - this.state = newState; - } - // }}} - , - // {{{ setSubMenuWidth() - /** - * Specify width of direct subs of this item. - * - * @param int newWidth Width of sub menu group(direct sub of this item) - * @public - */ - setSubMenuWidth : function(newWidth) - { - this.submenuWidth = newWidth; - } - // }}} - , - // {{{ setIcon() - /** - * Specify new menu icon - * - * @param String iconPath Path to new menu icon - * @public - */ - setIcon : function(iconPath) - { - this.itemIcon = iconPath; - } - // }}} - , - // {{{ setText() - /** - * Specify new text for the menu item. - * - * @param String newText New text for the menu item. - * @public - */ - setText : function(newText) - { - this.itemText = newText; - } -} - -/************************************************************************************************************ -* DHTML menu model class -* -* Created: October, 30th, 2006 -* @class Purpose of class: Saves menu item data -* -* -* Demos of this class: demo-menu-strip.html -* -* Update log: -* -************************************************************************************************************/ - - -/** -* @constructor -* @class Purpose of class: Organize menu items for different menu widgets. demos of menus: (Demo) -* @version 1.0 -* @author Alf Magne Kalleland(www.dhtmlgoodies.com) -*/ - - -DHTMLSuite.menuModel = function() -{ - var menuItems; // Array of menuModelItem objects - var menuItemsOrder; // This array is needed in order to preserve the correct order of the array above. the array above is associative - // And some browsers will loop through that array in different orders than Firefox and IE. - var submenuType; // Direction of menu items(one item for each depth) - var mainMenuGroupWidth; // Width of menu group - useful if the first group of items are listed below each other - this.menuItems = new Array(); - this.menuItemsOrder = new Array(); - this.submenuType = new Array(); - this.submenuType[1] = 'top'; - for(var no=2;no<20;no++){ - this.submenuType[no] = 'sub'; - } - if(!standardObjectsCreated)DHTMLSuite.createStandardObjects(); -} - -DHTMLSuite.menuModel.prototype = { - // {{{ addItem() - /** - * Add separator (special type of menu item) - * - * - * - * @param int id of menu item - * @param string itemText = text of menu item - * @param string itemIcon = file name of menu icon(in front of menu text. Path will be imagePath for the DHTMLSuite + file name) - * @param string url = Url of menu item - * @param int parent id of menu item - * @param String jsFunction Name of javascript function to execute. It will replace the url param. The function with this name will be called and the element triggering the action will be - * sent as argument. Name of the element which triggered the menu action may also be sent as a second argument. That depends on the widget. The context menu is an example where - * the element triggering the context menu is sent as second argument to this function. - * - * @public - */ - addItem : function(id,itemText,itemIcon,url,parentId,helpText,jsFunction,type,submenuWidth) - { - if(!id)id = this.__getUniqueId(); // id not present - create it dynamically. - this.menuItems[id] = new DHTMLSuite.menuModelItem(); - this.menuItems[id].setMenuVars(id,itemText,itemIcon,url,parentId,helpText,jsFunction,type,submenuWidth); - this.menuItemsOrder[this.menuItemsOrder.length] = id; - return this.menuItems[id]; - } - , - // {{{ addItemsFromMarkup() - /** - * This method creates all the menuModelItem objects by reading it from existing markup on your page. - * Example of HTML markup: - *
-     <ul id="menuModel"> -
      <li id="50000" itemIcon="../images/disk.gif"><a href="#" title="Open the file menu">File</a> -
        <ul width="150"> -
          <li id="500001" jsFunction="saveWork()" itemIcon="../images/disk.gif"><a href="#" title="Save your work">Save</a></li> -
          <li id="500002"><a href="#">Save As</a></li> -
          <li id="500004" itemType="separator"></li> -
          <li id="500003"><a href="#">Open</a></li> -
        </ul> -
      </li> -
      <li id="50001"><a href="#">View</a> -
        <ul width="130"> -
          <li id="500011"><a href="#">Source</a></li> -
          <li id="500012"><a href="#">Debug info</a></li> -
          <li id="500013"><a href="#">Layout</a> -
            <ul width="150"> -
              <li id="5000131"><a href="#">CSS</a>   -
              <li id="5000132"><a href="#">HTML</a>   -
              <li id="5000133"><a href="#">Javascript</a>   -
            </ul> -
          </li> -
         -
        </ul> -
      </li> -
      <li id="50003" itemType="separator"></li> -
      <li id="50002"><a href="#">Tools</a></li> -
    </ul>   - * - * @param String ulId = ID of