亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? dhtmlxprotobar.js

?? dhtmlXTreeprofessional 這是專業1.3版
?? JS
字號:
/*
Copyright Scand LLC http://www.scbr.com
To use this component please contact info@scbr.com to obtain license

*/ 

 
 function dhtmlXProtobarObject(){
 return this;
}
 
 
 dhtmlXProtobarObject.prototype.setOnShowHandler=function(func){
 if(typeof(func)=="function")this.onShow=func;else this.onShow=eval(func);
};

 
 dhtmlXProtobarObject.prototype._getItemIndex=function(id){
 for(var i=0;i<this.itemsCount;i++)
{
 if(this.items[i].id==id)return i;
};
 return -1;
};
 
 dhtmlXProtobarObject.prototype.setGfxPath=function(path){
 this.sysGfxPath=path;
};
 
 
 dhtmlXProtobarObject.prototype.setOnHideHandler=function(func){
 if(typeof(func)=="function")this.onHide=func;else this.onHide=eval(func);
};
 
 dhtmlXProtobarObject.prototype.setItemAction=function(id,action){
 var z=this._getItemIndex(id);
 if(z>=0){
 this.items[z].setSecondAction(action);
};
};
 
 dhtmlXProtobarObject.prototype.getItem=function(itemId){
 var z=this._getItemIndex(itemId);
 if(z>=0)return this.items[z];
};
 
 dhtmlXProtobarObject.prototype.hideButtons=function(idList){
 if(!idList){
 for(var i=0;i<this.itemsCount;i++){
 this.items[i].getTopNode().style.display="none";
 this.items[i].hide=1;
}
 return 0;
}
 
 var temp=idList.split(",");
 for(var i=0;i<temp.length;i++)
{
	 
 this.hideItem(temp[i]);
};
};
 
 dhtmlXProtobarObject.prototype.showButtons=function(idList){
 if(!idList){
 for(var i=0;i<this.itemsCount;i++){
 this.items[i].getTopNode().style.display="";
 this.items[i].hide=0;
}
 return 0;
}
 
 var temp=idList.split(",");
 for(var i=0;i<temp.length;i++)
{
 this.showItem(temp[i]);
};
};
 
 dhtmlXProtobarObject.prototype.disableItem=function(itemId){
 var z=this.getItem(itemId);
 if(z){if(z.disable)z.disable();}
};
 
 dhtmlXProtobarObject.prototype.enableItem=function(itemId){
 var z=this.getItem(itemId);
 if(z){if(z.enable)z.enable();}
};
 
 
 dhtmlXProtobarObject.prototype.hideItem=function(itemId){
 var z=this.getItem(itemId);
 if(z){z.getTopNode().style.display="none";z.hide=1;
 if(z.parentPanel){
 this._scrollClear(z.parentPanel);
 this._scrollCheck(z.parentPanel);
}
}
}
 
 dhtmlXProtobarObject.prototype.showItem=function(id){
 var z=this.getItem(id);
 if(z){z.getTopNode().style.display="";z.hide=0;
 if(z.parentPanel){
 this._scrollClear(z.parentPanel);
 this._scrollCheck(z.parentPanel);
}
}
}
 
 dhtmlXProtobarObject.prototype.setOnClickHandler=function(func){
 if(typeof(func)=="function")this.defaultAction=func;else this.defaultAction=eval(func);
};
 
 dhtmlXProtobarObject.prototype.setTitleText=function(newText){
 this.tname=newText;
 this.nameCell.innerHTML=newText;
 this.preNameCell.innerHTML=newText;
};
 
 
 dhtmlXProtobarObject.prototype.setBarSize=function(width,height){
 if(width)this.topNod.width=width;
 if(height)this.topNod.height=height;
};
 
 dhtmlXProtobarObject.prototype.resetBar=function(idList){
 for(var i=0;i<this.itemsCount;i++)
{
 this.hideItem(this.items[i].id);
 this.items[i].persAction=0;
};
 var temp=idList.split(",");
 for(var i=0;i<temp.length;i++)
{
 this.showItem(temp[i]);
};
};

 


 dhtmlXProtobarObject.prototype.loadXML=function(file,afterCall){
 this.waitCall=afterCall||0;
 this.xmlUnit.loadXML(file);};

 
 dhtmlXProtobarObject.prototype.loadXMLString=function(xmlString,afterCall){
 this.waitCall=afterCall||0;
 this.xmlUnit.loadXMLString(xmlString);};

 
 dhtmlXProtobarObject.prototype.showBar=function(){
 this.topNod.style.display="";
 if((this.topNod.ieFix)&&(this.topNod.style.position=="absolute")){
 this.topNod.ieFix.style.display="";
 this.topNod.ieFix.style.position="absolute";
 this.topNod.ieFix.style.top=this.topNod.style.top;
 this.topNod.ieFix.style.left=this.topNod.style.left;
 this.topNod.ieFix.style.width=this.topNod.offsetWidth;
 this.topNod.ieFix.style.height=this.topNod.offsetHeight;
 
}
 if(this.onShow)this.onShow();
};
 
 
 
 dhtmlXProtobarObject.prototype.hideBar=function(){
 this.topNod.style.display="none";
 if(this.topNod.ieFix)this.topNod.ieFix.style.display="none";
 if(this.onHide)this.onHide();
};
 
 
 dhtmlXProtobarObject.prototype.setBarAlign=function(align){
 if((align=="left")||(align=="top")){this.preNameCell.innerHTML="";
 this.preNameCell.style.display="none";
 this.nameCell.style.display="";
 this.nameCell.width="100%";
 this.nameCell.innerHTML=this.tname;
 
};
 if((align=="center")||(align=="middle")){
 this.preNameCell.style.display="";
 this.preNameCell.width="50%";
 this.nameCell.style.display="";
 this.nameCell.width="50%";
 this.nameCell.innerHTML=this.tname;
 this.preNameCell.innerHTML=this.tname;
};
 if((align=="right")||(align=="bottom")){
 this.nameCell.innerHTML="";
 this.nameCell.style.display="none";
 this.preNameCell.style.display="";
 this.preNameCell.width="100%";
 this.preNameCell.innerHTML=this.tname;
};
};
 
 dhtmlXProtobarObject.prototype.dummyFunc=function(){return true;};
 dhtmlXProtobarObject.prototype.badDummy=function(){return false;};
 
 

 
function dhtmlXButtonPrototypeObject(){
 return this;
};
 
 dhtmlXButtonPrototypeObject.prototype.setAction=function(func){
 if(typeof(func)=="function")this.action=func;else this.action=eval(func);
}
 
 dhtmlXButtonPrototypeObject.prototype.setSecondAction=function(func){
 if(typeof(func)=="function")this.persAction=func;else this.persAction=eval(func);
};
 
 dhtmlXButtonPrototypeObject.prototype.enable=function(){
 if(this.disableImage)this.imageTag.src=this.src;
 else 
 if(!this.className)
 this.topNod.className=this.objectNode.className;
 else 
 this.topNod.className=this.className;

 if(this.textTag)
 this.textTag.className=this.textClassName;
 
 this.topNod.onclick=this._onclickX;
 this.topNod.onmouseover=this._onmouseoverX;
 this.topNod.onmouseout=this._onmouseoutX;
 this.topNod.onmousedown=this._onmousedownX;
 this.topNod.onmouseup=this._onmouseupX;
};
 
 dhtmlXButtonPrototypeObject.prototype.disable=function(){
 if(this.disableImage)
{
 this.imageTag.src=this.disableImage;
}
 else this.topNod.className="iconGray";
 
 if(this.textTag)
 this.textTag.className="buttonTextDisabled";
 
 
 this.topNod.onclick=this.dummy;
 this.topNod.onmouseover=this.dummy;
 this.topNod.onmouseout=this.dummy;
 this.topNod.onmousedown=this.dummy;
 this.topNod.onmouseup=this.dummy;
};

 
 dhtmlXButtonPrototypeObject.prototype._onclickX=function(e,that){
 if(!that)that=this.objectNode;
 if(that.topNod.dstatus)return;
 if((!that.persAction)||(that.persAction()))
 if(that.action){that.action(that.id);}
};
 
 dhtmlXButtonPrototypeObject.prototype.setHTML=function(htmlText){
 this.topNod.innerHTML=htmlText;
};
 
 dhtmlXButtonPrototypeObject.prototype.setAltText=function(imageText){
 this.imageTag.alt=imageText;
};
 
 dhtmlXButtonPrototypeObject.prototype.setImage=function(imageSrc,disabledImageSrc){
 this.src=imageSrc;
 if(disabledImageSrc)this.disableImage=disabledImageSrc;
 
 if(this.topNod.onclick==this.dummy)
{if(disabledImageSrc)this.imageTag.src=disabledImageSrc;}
 else
 this.imageTag.src=imageSrc;
};
 
 dhtmlXButtonPrototypeObject.prototype.dummy=function(){};
 
 dhtmlXButtonPrototypeObject.prototype.getTopNode=function(){return this.topNod;}
 
 dhtmlXButtonPrototypeObject.prototype._onmouseoverY=function(){if(this.topNod.className!=this.className+'Over')this.topNod.className=this.className+'Over';return true;};
 
 dhtmlXButtonPrototypeObject.prototype._onmouseoutY=function(){this.topNod.className=this.className;return true;};
 
 dhtmlXButtonPrototypeObject.prototype._onmousedownX=function(){this.className=this.objectNode.className+'Down';return true;};
 
 dhtmlXButtonPrototypeObject.prototype._onmouseupX=function(){this.className=this.objectNode.className;return true;};


 
 dhtmlXButtonPrototypeObject.prototype._onmouseoutX=function(e){
 if(!e)e=event;
 
 if(this.timeoutop)clearTimeout(this.timeoutop);
 this.timeoutop=setTimeout(this.objectNode._delayedTimerCall(this.objectNode,"_onmouseoutY"),100);
};
 
 dhtmlXButtonPrototypeObject.prototype._onmouseoverX=function(e){
 if(!e)e=event;
 
 if(this.timeoutop)clearTimeout(this.timeoutop);
 this.timeoutop=setTimeout(this.objectNode._delayedTimerCall(this.objectNode,"_onmouseoverY"),50);
};
 
 dhtmlXButtonPrototypeObject.prototype._delayedTimerCall=function(object,functionName,time){
 this.callFunc=function(){
 eval("object."+functionName+"();");
}
 return this.callFunc;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色综合一区二区三区| 久久久噜噜噜久久人人看| 91麻豆精品国产91久久久| 久久蜜桃av一区二区天堂| 亚洲区小说区图片区qvod| 精彩视频一区二区三区| 欧美在线免费视屏| 中文字幕第一页久久| 免费xxxx性欧美18vr| 欧美视频精品在线观看| 久久久久久久电影| 日本aⅴ亚洲精品中文乱码| 色爱区综合激月婷婷| 久久一二三国产| 免费高清在线一区| 欧美日韩五月天| 中文字幕亚洲在| 国产福利一区在线观看| 欧美一区二区三区电影| 亚洲综合成人在线视频| av在线不卡电影| 国产日韩视频一区二区三区| 男女性色大片免费观看一区二区 | 91一区一区三区| 久久久精品影视| 精品在线免费观看| 日韩一区二区三区免费看| 五月天欧美精品| 精品1区2区3区| 亚洲国产欧美在线人成| 91国产成人在线| 一级中文字幕一区二区| 91国模大尺度私拍在线视频| 亚洲人妖av一区二区| 成人激情黄色小说| 1024成人网色www| 成人av高清在线| 亚洲欧美日韩国产成人精品影院 | 日韩精品成人一区二区三区| 欧美调教femdomvk| 性做久久久久久免费观看| 欧美老肥妇做.爰bbww| 日本亚洲视频在线| 精品粉嫩超白一线天av| 国产伦理精品不卡| 国产精品久久久久久久蜜臀 | 蜜臀av一区二区在线免费观看| 91精品国产麻豆国产自产在线 | 色妹子一区二区| 亚洲一二三区视频在线观看| 在线观看中文字幕不卡| 日本不卡123| 亚洲精品在线免费播放| 国产精品一二三四区| 国产精品色哟哟网站| 色诱亚洲精品久久久久久| 日韩成人精品在线| 精品国产乱码久久| 不卡一区在线观看| 亚洲国产一区二区视频| 日韩欧美国产电影| 国产成人一区在线| 亚洲国产视频a| 亚洲精品一区二区三区蜜桃下载| 国产麻豆精品久久一二三| 国产精品美女久久久久aⅴ | 91老师国产黑色丝袜在线| 亚洲成年人影院| 精品国产三级电影在线观看| 国产91丝袜在线播放0| 亚洲国产精品久久久久秋霞影院| 欧美videofree性高清杂交| 成人av在线电影| 日韩在线卡一卡二| 成人免费在线视频观看| 日韩视频免费直播| 91亚洲国产成人精品一区二三| 日本中文字幕一区| 日韩理论在线观看| 337p粉嫩大胆色噜噜噜噜亚洲| 色丁香久综合在线久综合在线观看| 全国精品久久少妇| 中文字幕亚洲精品在线观看| 日韩午夜在线观看视频| 91美女在线看| 国产伦精品一区二区三区免费迷 | 色综合久久久久综合体| 狠狠色丁香婷婷综合| 亚洲综合激情另类小说区| 久久综合九色综合久久久精品综合| 色av综合在线| voyeur盗摄精品| 国内久久婷婷综合| 日本中文字幕一区二区视频| 亚洲免费av网站| 中文字幕免费不卡| 久久精品免视看| 欧美不卡在线视频| 91精品久久久久久久91蜜桃| 在线视频亚洲一区| 97精品久久久久中文字幕| 福利一区福利二区| 国产精品一区在线观看乱码| 麻豆国产精品一区二区三区| 亚洲成人动漫在线免费观看| 亚洲色图丝袜美腿| 18欧美乱大交hd1984| 国产农村妇女毛片精品久久麻豆 | 亚洲高清久久久| 亚洲精品中文在线影院| 国产精品免费aⅴ片在线观看| 久久久久国产免费免费| 日韩一区二区三免费高清| 欧美一区在线视频| 91精品福利在线一区二区三区 | 亚洲成人激情综合网| 亚洲精品成a人| 亚洲欧美区自拍先锋| 亚洲欧美偷拍三级| 亚洲免费电影在线| 亚洲高清免费观看高清完整版在线观看| 亚洲欧美二区三区| 亚洲一区中文在线| 亚洲国产欧美日韩另类综合| 亚洲成人动漫一区| 天堂蜜桃91精品| 青青草97国产精品免费观看 | 亚洲激情av在线| 一区二区三区91| 午夜久久久影院| 美女一区二区在线观看| 国产一区二区成人久久免费影院 | 天天操天天色综合| 91丨porny丨国产入口| 99久久免费精品| 欧美色视频在线观看| 欧美一区二区美女| 国产色一区二区| 17c精品麻豆一区二区免费| 亚洲精品中文字幕在线观看| 亚洲bt欧美bt精品| 狠狠色丁香婷综合久久| 波多野结衣精品在线| 97久久超碰国产精品电影| 欧美日韩黄色影视| 亚洲精品一区二区三区影院| 国产精品黄色在线观看| 午夜精品久久久久久久99水蜜桃| 久久99精品久久久| 99re亚洲国产精品| 日韩一卡二卡三卡| |精品福利一区二区三区| 午夜欧美一区二区三区在线播放| 精彩视频一区二区| 91麻豆免费看片| 精品福利在线导航| 亚洲激情男女视频| 国产成人在线视频网站| 精品视频免费在线| 欧美国产一区在线| 奇米色777欧美一区二区| 99这里都是精品| 欧美成人一区二区三区片免费| 久久久久久久久岛国免费| 亚洲黄一区二区三区| 国产成人av资源| 777a∨成人精品桃花网| 成人欧美一区二区三区小说 | 亚洲乱码国产乱码精品精的特点| 日本怡春院一区二区| 色婷婷久久久久swag精品| 精品久久久久久无| 亚洲资源在线观看| 成人av在线一区二区| 精品理论电影在线观看| 午夜精品免费在线| 91久久精品国产91性色tv| 欧美国产97人人爽人人喊| 免费亚洲电影在线| 欧美日韩在线电影| 亚洲男人的天堂av| 成人性色生活片| 久久亚洲综合色一区二区三区| 视频一区中文字幕| 欧美亚洲日本国产| 亚洲男人的天堂av| 91社区在线播放| **网站欧美大片在线观看| 国产精品一区一区三区| 精品国产一区二区国模嫣然| 首页欧美精品中文字幕| 欧美日韩精品电影| 亚洲一区二区三区小说| 色婷婷久久久久swag精品| 日韩伦理免费电影| 一本久道中文字幕精品亚洲嫩| 国产精品久久久久久久久图文区 | 日韩精品福利网| 欧美精品一二三| 日本欧美一区二区三区乱码 |