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

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.TaskBar
  10.  * @extends Ext.util.Observable
  11.  */
  12. Ext.ux.TaskBar = function(app){
  13.     this.app = app;
  14.     this.init();
  15. }
  16. Ext.extend(Ext.ux.TaskBar, Ext.util.Observable, {
  17.     init : function(){
  18. this.startMenu = new Ext.ux.StartMenu(Ext.apply({
  19. iconCls: 'user',
  20. height: 300,
  21. shadow: true,
  22. title: 'Jack Slocum',
  23. width: 300
  24. }, this.app.startConfig));
  25. this.startBtn = new Ext.Button({
  26.             text: 'Start',
  27.             id: 'ux-startbutton',
  28.             iconCls:'start',
  29.             menu: this.startMenu,
  30.             menuAlign: 'bl-tl',
  31.             renderTo: 'ux-taskbar-start',
  32.             clickEvent:'mousedown',
  33.             template: new Ext.Template(
  34. '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
  35. '<td class="ux-startbutton-left"><i>&#160;</i></td><td class="ux-startbutton-center"><em unselectable="on"><button class="x-btn-text" type="{1}" style="height:30px;">{0}</button></em></td><td class="ux-startbutton-right"><i>&#160;</i></td>',
  36. "</tr></tbody></table>")
  37.         });
  38.         
  39.         var width = Ext.get('ux-startbutton').getWidth()+10;
  40.         
  41.         var sbBox = new Ext.BoxComponent({
  42. el: 'ux-taskbar-start',
  43.         id: 'TaskBarStart',
  44.         minWidth: width,
  45. region:'west',
  46. split: true,
  47. width: width
  48. });
  49. this.tbPanel = new Ext.ux.TaskButtonsPanel({
  50. el: 'ux-taskbuttons-panel',
  51. id: 'TaskBarButtons',
  52. region:'center'
  53. });
  54.         var container = new Ext.ux.TaskBarContainer({
  55. el: 'ux-taskbar',
  56. layout: 'border',
  57. items: [sbBox,this.tbPanel]
  58. });
  59. return this;
  60.     },
  61.     
  62.     addTaskButton : function(win){
  63. return this.tbPanel.addButton(win, 'ux-taskbuttons-panel');
  64. },
  65. removeTaskButton : function(btn){
  66. this.tbPanel.removeButton(btn);
  67. },
  68. setActiveButton : function(btn){
  69. this.tbPanel.setActiveButton(btn);
  70. }
  71. });
  72. /**
  73.  * @class Ext.ux.TaskBarContainer
  74.  * @extends Ext.Container
  75.  */
  76. Ext.ux.TaskBarContainer = Ext.extend(Ext.Container, {
  77.     initComponent : function() {
  78.         Ext.ux.TaskBarContainer.superclass.initComponent.call(this);
  79.         
  80.         this.el = Ext.get(this.el) || Ext.getBody();
  81.         this.el.setHeight = Ext.emptyFn;
  82.         this.el.setWidth = Ext.emptyFn;
  83.         this.el.setSize = Ext.emptyFn;
  84.         this.el.setStyle({
  85.             overflow:'hidden',
  86.             margin:'0',
  87.             border:'0 none'
  88.         });
  89.         this.el.dom.scroll = 'no';
  90.         this.allowDomMove = false;
  91.         this.autoWidth = true;
  92.         this.autoHeight = true;
  93.         Ext.EventManager.onWindowResize(this.fireResize, this);
  94.         this.renderTo = this.el;
  95.     },
  96.     fireResize : function(w, h){
  97.         this.fireEvent('resize', this, w, h, w, h);
  98.     }
  99. });
  100. /**
  101.  * @class Ext.ux.TaskButtonsPanel
  102.  * @extends Ext.BoxComponent
  103.  */
  104. Ext.ux.TaskButtonsPanel = Ext.extend(Ext.BoxComponent, {
  105. activeButton: null,
  106. enableScroll: true,
  107. scrollIncrement: 0,
  108.     scrollRepeatInterval: 400,
  109.     scrollDuration: .35,
  110.     animScroll: true,
  111.     resizeButtons: true,
  112.     buttonWidth: 168,
  113.     minButtonWidth: 118,
  114.     buttonMargin: 2,
  115.     buttonWidthSet: false,
  116. initComponent : function() {
  117.         Ext.ux.TaskButtonsPanel.superclass.initComponent.call(this);
  118.         this.on('resize', this.delegateUpdates);
  119.         this.items = [];
  120.         
  121.         this.stripWrap = Ext.get(this.el).createChild({
  122.          cls: 'ux-taskbuttons-strip-wrap',
  123.          cn: {
  124.              tag:'ul', cls:'ux-taskbuttons-strip'
  125.             }
  126. });
  127.         this.stripSpacer = Ext.get(this.el).createChild({
  128.          cls:'ux-taskbuttons-strip-spacer'
  129.         });
  130.         this.strip = new Ext.Element(this.stripWrap.dom.firstChild);
  131.         
  132.         this.edge = this.strip.createChild({
  133.          tag:'li',
  134.          cls:'ux-taskbuttons-edge'
  135.         });
  136.         this.strip.createChild({
  137.          cls:'x-clear'
  138.         });
  139. },
  140. addButton : function(win){
  141. var li = this.strip.createChild({tag:'li'}, this.edge); // insert before the edge
  142.         var btn = new Ext.ux.TaskBar.TaskButton(win, li);
  143. this.items.push(btn);
  144. if(!this.buttonWidthSet){
  145. this.lastButtonWidth = btn.container.getWidth();
  146. }
  147. this.setActiveButton(btn);
  148. return btn;
  149. },
  150. removeButton : function(btn){
  151. var li = document.getElementById(btn.container.id);
  152. btn.destroy();
  153. li.parentNode.removeChild(li);
  154. var s = [];
  155. for(var i = 0, len = this.items.length; i < len; i++) {
  156. if(this.items[i] != btn){
  157. s.push(this.items[i]);
  158. }
  159. }
  160. this.items = s;
  161. this.delegateUpdates();
  162. },
  163. setActiveButton : function(btn){
  164. this.activeButton = btn;
  165. this.delegateUpdates();
  166. },
  167. delegateUpdates : function(){
  168. /*if(this.suspendUpdates){
  169.             return;
  170.         }*/
  171.         if(this.resizeButtons && this.rendered){
  172.             this.autoSize();
  173.         }
  174.         if(this.enableScroll && this.rendered){
  175.             this.autoScroll();
  176.         }
  177.     },
  178.     
  179.     autoSize : function(){
  180.         var count = this.items.length;
  181.         var ow = this.el.dom.offsetWidth;
  182.         var aw = this.el.dom.clientWidth;
  183.         if(!this.resizeButtons || count < 1 || !aw){ // !aw for display:none
  184.             return;
  185.         }
  186.         
  187.         var each = Math.max(Math.min(Math.floor((aw-4) / count) - this.buttonMargin, this.buttonWidth), this.minButtonWidth); // -4 for float errors in IE
  188.         var btns = this.stripWrap.dom.getElementsByTagName('button');
  189.         
  190.         this.lastButtonWidth = Ext.get(btns[0].id).findParent('li').offsetWidth;
  191.         
  192.         for(var i = 0, len = btns.length; i < len; i++) {            
  193.             var btn = btns[i];
  194.             
  195.             var tw = Ext.get(btns[i].id).findParent('li').offsetWidth;
  196.             var iw = btn.offsetWidth;
  197.             
  198.             btn.style.width = (each - (tw-iw)) + 'px';
  199.         }
  200.     },
  201.     
  202.     autoScroll : function(){
  203.      var count = this.items.length;
  204.         var ow = this.el.dom.offsetWidth;
  205.         var tw = this.el.dom.clientWidth;
  206.         
  207.         var wrap = this.stripWrap;
  208.         var cw = wrap.dom.offsetWidth;
  209.         var pos = this.getScrollPos();
  210.         var l = this.edge.getOffsetsTo(this.stripWrap)[0] + pos;
  211.         
  212.         if(!this.enableScroll || count < 1 || cw < 20){ // 20 to prevent display:none issues
  213.             return;
  214.         }
  215.         
  216.         wrap.setWidth(tw); // moved to here because of problem in Safari
  217.         
  218.         if(l <= tw){
  219.             wrap.dom.scrollLeft = 0;
  220.             //wrap.setWidth(tw); moved from here because of problem in Safari
  221.             if(this.scrolling){
  222.                 this.scrolling = false;
  223.                 this.el.removeClass('x-taskbuttons-scrolling');
  224.                 this.scrollLeft.hide();
  225.                 this.scrollRight.hide();
  226.             }
  227.         }else{
  228.             if(!this.scrolling){
  229.                 this.el.addClass('x-taskbuttons-scrolling');
  230.             }
  231.             tw -= wrap.getMargins('lr');
  232.             wrap.setWidth(tw > 20 ? tw : 20);
  233.             if(!this.scrolling){
  234.                 if(!this.scrollLeft){
  235.                     this.createScrollers();
  236.                 }else{
  237.                     this.scrollLeft.show();
  238.                     this.scrollRight.show();
  239.                 }
  240.             }
  241.             this.scrolling = true;
  242.             if(pos > (l-tw)){ // ensure it stays within bounds
  243.                 wrap.dom.scrollLeft = l-tw;
  244.             }else{ // otherwise, make sure the active button is still visible
  245. this.scrollToButton(this.activeButton, true); // true to animate
  246.             }
  247.             this.updateScrollButtons();
  248.         }
  249.     },
  250.     createScrollers : function(){
  251.         var h = this.el.dom.offsetHeight; //var h = this.stripWrap.dom.offsetHeight;
  252.         // left
  253.         var sl = this.el.insertFirst({
  254.             cls:'ux-taskbuttons-scroller-left'
  255.         });
  256.         sl.setHeight(h);
  257.         sl.addClassOnOver('ux-taskbuttons-scroller-left-over');
  258.         this.leftRepeater = new Ext.util.ClickRepeater(sl, {
  259.             interval : this.scrollRepeatInterval,
  260.             handler: this.onScrollLeft,
  261.             scope: this
  262.         });
  263.         this.scrollLeft = sl;
  264.         // right
  265.         var sr = this.el.insertFirst({
  266.             cls:'ux-taskbuttons-scroller-right'
  267.         });
  268.         sr.setHeight(h);
  269.         sr.addClassOnOver('ux-taskbuttons-scroller-right-over');
  270.         this.rightRepeater = new Ext.util.ClickRepeater(sr, {
  271.             interval : this.scrollRepeatInterval,
  272.             handler: this.onScrollRight,
  273.             scope: this
  274.         });
  275.         this.scrollRight = sr;
  276.     },
  277.     
  278.     getScrollWidth : function(){
  279.         return this.edge.getOffsetsTo(this.stripWrap)[0] + this.getScrollPos();
  280.     },
  281.     getScrollPos : function(){
  282.         return parseInt(this.stripWrap.dom.scrollLeft, 10) || 0;
  283.     },
  284.     getScrollArea : function(){
  285.         return parseInt(this.stripWrap.dom.clientWidth, 10) || 0;
  286.     },
  287.     getScrollAnim : function(){
  288.         return {
  289.          duration: this.scrollDuration,
  290.          callback: this.updateScrollButtons,
  291.          scope: this
  292.         };
  293.     },
  294.     getScrollIncrement : function(){
  295.      return (this.scrollIncrement || this.lastButtonWidth+2);
  296.     },
  297.     
  298.     /* getBtnEl : function(item){
  299.         return document.getElementById(item.id);
  300.     }, */
  301.     
  302.     scrollToButton : function(item, animate){
  303.      item = item.el.dom.parentNode; // li
  304.         if(!item){ return; }
  305.         var el = item; //this.getBtnEl(item);
  306.         var pos = this.getScrollPos(), area = this.getScrollArea();
  307.         var left = Ext.fly(el).getOffsetsTo(this.stripWrap)[0] + pos;
  308.         var right = left + el.offsetWidth;
  309.         if(left < pos){
  310.             this.scrollTo(left, animate);
  311.         }else if(right > (pos + area)){
  312.             this.scrollTo(right - area, animate);
  313.         }
  314.     },
  315.     
  316.     scrollTo : function(pos, animate){
  317.         this.stripWrap.scrollTo('left', pos, animate ? this.getScrollAnim() : false);
  318.         if(!animate){
  319.             this.updateScrollButtons();
  320.         }
  321.     },
  322.     
  323.     onScrollRight : function(){
  324.         var sw = this.getScrollWidth()-this.getScrollArea();
  325.         var pos = this.getScrollPos();
  326.         var s = Math.min(sw, pos + this.getScrollIncrement());
  327.         if(s != pos){
  328.          this.scrollTo(s, this.animScroll);
  329.         }        
  330.     },
  331.     onScrollLeft : function(){
  332.         var pos = this.getScrollPos();
  333.         var s = Math.max(0, pos - this.getScrollIncrement());
  334.         if(s != pos){
  335.             this.scrollTo(s, this.animScroll);
  336.         }
  337.     },
  338.     
  339.     updateScrollButtons : function(){
  340.         var pos = this.getScrollPos();
  341.         this.scrollLeft[pos == 0 ? 'addClass' : 'removeClass']('ux-taskbuttons-scroller-left-disabled');
  342.         this.scrollRight[pos >= (this.getScrollWidth()-this.getScrollArea()) ? 'addClass' : 'removeClass']('ux-taskbuttons-scroller-right-disabled');
  343.     }
  344. });
  345. /**
  346.  * @class Ext.ux.TaskBar.TaskButton
  347.  * @extends Ext.Button
  348.  */
  349. Ext.ux.TaskBar.TaskButton = function(win, el){
  350. this.win = win;
  351.     Ext.ux.TaskBar.TaskButton.superclass.constructor.call(this, {
  352.         iconCls: win.iconCls,
  353.         text: Ext.util.Format.ellipsis(win.title, 12),
  354.         renderTo: el,
  355.         handler : function(){
  356.             if(win.minimized || win.hidden){
  357.                 win.show();
  358.             }else if(win == win.manager.getActive()){
  359.                 win.minimize();
  360.             }else{
  361.                 win.toFront();
  362.             }
  363.         },
  364.         clickEvent:'mousedown',
  365.         template: new Ext.Template(
  366. '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
  367. '<td class="ux-taskbutton-left"><i>&#160;</i></td><td class="ux-taskbutton-center"><em unselectable="on"><button class="x-btn-text" type="{1}" style="height:28px;">{0}</button></em></td><td class="ux-taskbutton-right"><i>&#160;</i></td>',
  368. "</tr></tbody></table>")
  369.     });
  370. };
  371. Ext.extend(Ext.ux.TaskBar.TaskButton, Ext.Button, {
  372.     onRender : function(){
  373.         Ext.ux.TaskBar.TaskButton.superclass.onRender.apply(this, arguments);
  374.         this.cmenu = new Ext.menu.Menu({
  375.             items: [{
  376.                 text: 'Restore',
  377.                 handler: function(){
  378.                     if(!this.win.isVisible()){
  379.                         this.win.show();
  380.                     }else{
  381.                         this.win.restore();
  382.                     }
  383.                 },
  384.                 scope: this
  385.             },{
  386.                 text: 'Minimize',
  387.                 handler: this.win.minimize,
  388.                 scope: this.win
  389.             },{
  390.                 text: 'Maximize',
  391.                 handler: this.win.maximize,
  392.                 scope: this.win
  393.             }, '-', {
  394.                 text: 'Close',
  395.                 handler: this.closeWin.createDelegate(this, this.win, true),
  396.                 scope: this.win
  397.             }]
  398.         });
  399.         this.cmenu.on('beforeshow', function(){
  400.             var items = this.cmenu.items.items;
  401.             var w = this.win;
  402.             items[0].setDisabled(w.maximized !== true && w.hidden !== true);
  403.             items[1].setDisabled(w.minimized === true);
  404.             items[2].setDisabled(w.maximized === true || w.hidden === true);
  405.         }, this);
  406.         this.el.on('contextmenu', function(e){
  407.             e.stopEvent();
  408.             if(!this.cmenu.el){
  409.                 this.cmenu.render();
  410.             }
  411.             var xy = e.getXY();
  412.             xy[1] -= this.cmenu.el.getHeight();
  413.             this.cmenu.showAt(xy);
  414.         }, this);
  415.     },
  416.     
  417.     closeWin : function(cMenu, e, win){
  418. if(!win.isVisible()){
  419. win.show();
  420. }else{
  421. win.restore();
  422. }
  423. win.close();
  424. }
  425. });