StartMenu.js
资源名称:a.rar [点击查看]
上传用户:aa118c
上传日期:2021-05-13
资源大小:4785k
文件大小:8k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

HTML/CSS

  1. /*
  2.  * Ext JS Library 2.2.1
  3.  * Copyright(c) 2006-2009, Ext JS, LLC.
  4.  * licensing@extjs.com
  5.  * 
  6.  * http://extjs.com/license
  7.  */
  8. /**
  9.  * @class Ext.ux.StartMenu
  10.  * @extends Ext.menu.Menu
  11.  * A start menu object.
  12.  * @constructor
  13.  * Creates a new StartMenu
  14.  * @param {Object} config Configuration options
  15.  *
  16.  * SAMPLE USAGE:
  17.  *
  18.  * this.startMenu = new Ext.ux.StartMenu({
  19.  * iconCls: 'user',
  20.  * height: 300,
  21.  * shadow: true,
  22.  * title: get_cookie('memberName'),
  23.  * width: 300
  24.  * });
  25.  *
  26.  * this.startMenu.add({
  27.  * text: 'Grid Window',
  28.  * iconCls:'icon-grid',
  29.  * handler : this.createWindow,
  30.  * scope: this
  31.  * });
  32.  *
  33.  * this.startMenu.addTool({
  34.  * text:'Logout',
  35.  * iconCls:'logout',
  36.  * handler:function(){ window.location = "logout.php"; },
  37.  * scope:this
  38.  * });
  39.  */
  40. Ext.namespace("Ext.ux");
  41. Ext.ux.StartMenu = function(config){
  42. Ext.ux.StartMenu.superclass.constructor.call(this, config);
  43.     
  44.     var tools = this.toolItems;
  45.     this.toolItems = new Ext.util.MixedCollection();
  46.     if(tools){
  47.         this.addTool.apply(this, tools);
  48.     }
  49. };
  50. Ext.extend(Ext.ux.StartMenu, Ext.menu.Menu, {
  51.     // private
  52.     render : function(){
  53.         if(this.el){
  54.             return;
  55.         }
  56.         var el = this.el = new Ext.Layer({
  57.             cls: "x-menu ux-start-menu", // this might affect item click
  58.             shadow:this.shadow,
  59.             constrain: false,
  60.             parentEl: this.parentEl || document.body,
  61.             zindex:15000
  62.         });
  63.         
  64.         var header = el.createChild({
  65.          tag: "div",
  66.          cls: "x-window-header x-unselectable x-panel-icon "+this.iconCls
  67.         });
  68. this.header = header;
  69. var headerText = header.createChild({
  70. tag: "span",
  71. cls: "x-window-header-text"
  72. });
  73. var tl = header.wrap({
  74. cls: "ux-start-menu-tl"
  75. });
  76. var tr = header.wrap({
  77. cls: "ux-start-menu-tr"
  78. });
  79. var tc = header.wrap({
  80. cls: "ux-start-menu-tc"
  81. });
  82. this.menuBWrap = el.createChild({
  83. tag: "div",
  84. cls: "x-window-body x-border-layout-ct ux-start-menu-body"
  85. });
  86. var ml = this.menuBWrap.wrap({
  87. cls: "ux-start-menu-ml"
  88. });
  89. var mc = this.menuBWrap.wrap({
  90. cls: "x-window-mc ux-start-menu-bwrap"
  91. });
  92. this.menuPanel = this.menuBWrap.createChild({
  93. tag: "div",
  94. cls: "x-panel x-border-panel ux-start-menu-apps-panel"
  95. });
  96. this.toolsPanel = this.menuBWrap.createChild({
  97. tag: "div",
  98. cls: "x-panel x-border-panel ux-start-menu-tools-panel"
  99. });
  100. var bwrap = ml.wrap({cls: "x-window-bwrap"});
  101. var bc = bwrap.createChild({
  102. tag: "div",
  103. cls: "ux-start-menu-bc"
  104. });
  105. var bl = bc.wrap({
  106. cls: "ux-start-menu-bl x-panel-nofooter"
  107. });
  108. var br = bc.wrap({
  109. cls: "ux-start-menu-br"
  110. });
  111.         this.keyNav = new Ext.menu.MenuNav(this);
  112.         if(this.plain){
  113.             el.addClass("x-menu-plain");
  114.         }
  115.         if(this.cls){
  116.             el.addClass(this.cls);
  117.         }
  118.         // generic focus element
  119.         this.focusEl = el.createChild({
  120.             tag: "a",
  121.             cls: "x-menu-focus",
  122.             href: "#",
  123.             onclick: "return false;",
  124.             tabIndex:"-1"
  125.         });
  126.         
  127.         var ul = this.menuPanel.createChild({
  128.          tag: "ul",
  129.          cls: "x-menu-list"});
  130.         var toolsUl = this.toolsPanel.createChild({
  131.          tag: "ul",
  132.          cls: "x-menu-list"
  133.         });
  134.         
  135.         var ulListeners = {
  136.          "click": {
  137.          fn: this.onClick,
  138.          scope: this
  139.          },
  140.          "mouseover": {
  141.          fn: this.onMouseOver,
  142.          scope: this
  143.          },
  144.          "mouseout": {
  145.          fn: this.onMouseOut,
  146.          scope: this
  147.          }
  148.         };
  149.         
  150.         ul.on(ulListeners);
  151.         
  152.         this.items.each(
  153.          function(item){
  154.             var li = document.createElement("li");
  155.             li.className = "x-menu-list-item";
  156.             ul.dom.appendChild(li);
  157.             item.render(li, this);
  158.         }, this);
  159.         this.ul = ul;
  160.         this.autoWidth();
  161.         toolsUl.on(ulListeners);
  162.         
  163.         this.toolItems.each(
  164.          function(item){
  165.             var li = document.createElement("li");
  166.             li.className = "x-menu-list-item";
  167.             toolsUl.dom.appendChild(li);
  168.             item.render(li, this);
  169.         }, this);
  170.         
  171.         this.toolsUl = toolsUl;
  172.         this.autoWidth();
  173.              
  174.         this.menuBWrap.setStyle('position', 'relative');  
  175.         this.menuBWrap.setHeight(this.height);
  176.         
  177.         this.menuPanel.setStyle({
  178.          padding: '2px',
  179.          position: 'absolute',
  180.          overflow: 'auto'
  181.         });
  182.         
  183.         this.toolsPanel.setStyle({
  184.          padding: '2px 4px 2px 2px',
  185.          position: 'absolute',
  186.          overflow: 'auto'
  187.         });
  188.         
  189.         this.setTitle(this.title);
  190.     },
  191.     
  192.     // private
  193.     findTargetItem : function(e){
  194.         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
  195.         if(t && t.menuItemId){
  196.          if(this.items.get(t.menuItemId)){
  197.              return this.items.get(t.menuItemId);
  198.             }else{
  199.              return this.toolItems.get(t.menuItemId);
  200.             }
  201.         }
  202.     },
  203.     /**
  204.      * Displays this menu relative to another element
  205.      * @param {Mixed} element The element to align to
  206.      * @param {String} position (optional) The {@link Ext.Element#alignTo} anchor position to use in aligning to
  207.      * the element (defaults to this.defaultAlign)
  208.      * @param {Ext.ux.StartMenu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
  209.      */
  210.     show : function(el, pos, parentMenu){
  211.         this.parentMenu = parentMenu;
  212.         if(!this.el){
  213.             this.render();
  214.         }
  215.         this.fireEvent("beforeshow", this);
  216.         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
  217.         
  218.         var tPanelWidth = 100;      
  219.         var box = this.menuBWrap.getBox();
  220.         this.menuPanel.setWidth(box.width-tPanelWidth);
  221.         this.menuPanel.setHeight(box.height);
  222.         
  223.         this.toolsPanel.setWidth(tPanelWidth);
  224.         this.toolsPanel.setX(box.x+box.width-tPanelWidth);
  225.         this.toolsPanel.setHeight(box.height);
  226.     },
  227.     
  228.     addTool : function(){
  229.         var a = arguments, l = a.length, item;
  230.         for(var i = 0; i < l; i++){
  231.             var el = a[i];
  232.             if(el.render){ // some kind of Item
  233.                 item = this.addToolItem(el);
  234.             }else if(typeof el == "string"){ // string
  235.                 if(el == "separator" || el == "-"){
  236.                     item = this.addToolSeparator();
  237.                 }else{
  238.                     item = this.addText(el);
  239.                 }
  240.             }else if(el.tagName || el.el){ // element
  241.                 item = this.addElement(el);
  242.             }else if(typeof el == "object"){ // must be menu item config?
  243.                 item = this.addToolMenuItem(el);
  244.             }
  245.         }
  246.         return item;
  247.     },
  248.     
  249.     /**
  250.      * Adds a separator bar to the Tools
  251.      * @return {Ext.menu.Item} The menu item that was added
  252.      */
  253.     addToolSeparator : function(){
  254.         return this.addToolItem(new Ext.menu.Separator({itemCls: 'ux-toolmenu-sep'}));
  255.     },
  256.     addToolItem : function(item){
  257.         this.toolItems.add(item);
  258.         if(this.ul){
  259.             var li = document.createElement("li");
  260.             li.className = "x-menu-list-item";
  261.             this.ul.dom.appendChild(li);
  262.             item.render(li, this);
  263.             this.delayAutoWidth();
  264.         }
  265.         return item;
  266.     },
  267.     addToolMenuItem : function(config){
  268.         if(!(config instanceof Ext.menu.Item)){
  269.             if(typeof config.checked == "boolean"){ // must be check menu item config?
  270.                 config = new Ext.menu.CheckItem(config);
  271.             }else{
  272.                 config = new Ext.menu.Item(config);
  273.             }
  274.         }
  275.         return this.addToolItem(config);
  276.     },
  277.     
  278.     setTitle : function(title, iconCls){
  279.         this.title = title;
  280.         this.header.child('span').update(title);
  281.         return this;
  282.     }
  283. });