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

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

?? ext-air.js

?? ajax最新框架extjs
?? JS
?? 第 1 頁 / 共 3 頁
字號:
clause+=sort+' '+(dir||'ASC');}var rs=this.table.selectBy(clause,args);this.onLoad({callback:callback,scope:scope,arg:arg,reader:reader},rs);}else{callback.call(scope||this,null,arg,false);}},onLoad:function(trans,rs,e,stmt){if(rs===false){this.fireEvent("loadexception",this,null,trans.arg,e);trans.callback.call(trans.scope||window,null,trans.arg,false);return;}var result=trans.reader.readRecords(rs);this.fireEvent("load",this,rs,trans.arg);trans.callback.call(trans.scope||window,result,trans.arg,true);},processData:function(o){var fs=this.store.fields;var r={};for(var key in o){var f=fs.key(key),v=o[key];if(f){if(f.type=='date'){r[key]=v?v.format(Ext.sql.Proxy.DATE_FORMAT,10):'';}else if(f.type=='boolean'){r[key]=v?1:0;}else{r[key]=v;}}}return r;},onUpdate:function(ds,record){var changes=record.getChanges();var kn=this.table.keyName;this.table.updateBy(this.processData(changes),kn+' = ?',[record.data[kn]]);record.commit(true);},onAdd:function(ds,records,index){for(var i=0,len=records.length;i<len;i++){this.table.insert(this.processData(records[i].data));}},onRemove:function(ds,record,index){var kn=this.table.keyName;this.table.removeBy(kn+' = ?',[record.data[kn]]);}});Ext.sql.AirConnection=Ext.extend(Ext.sql.Connection,{open:function(db){this.conn=new air.SQLConnection();var file=air.File.applicationDirectory.resolvePath(db);this.conn.open(file);this.openState=true;this.fireEvent('open',this);},close:function(){this.conn.close();this.fireEvent('close',this);},createStatement:function(type){var stmt=new air.SQLStatement();stmt.sqlConnection=this.conn;return stmt;},exec:function(sql){var stmt=this.createStatement('exec');stmt.text=sql;stmt.execute();},execBy:function(sql,args){var stmt=this.createStatement('exec');stmt.text=sql;this.addParams(stmt,args);stmt.execute();},query:function(sql){var stmt=this.createStatement('query');stmt.text=sql;stmt.execute(this.maxResults);return this.readResults(stmt.getResult());},queryBy:function(sql,args){var stmt=this.createStatement('query');stmt.text=sql;this.addParams(stmt,args);stmt.execute(this.maxResults);return this.readResults(stmt.getResult());},addParams:function(stmt,args){if(!args){return;}for(var key in args){if(args.hasOwnProperty(key)){if(!isNaN(key)){var v=args[key];if(Ext.isDate(v)){v=v.format(Ext.sql.Proxy.DATE_FORMAT);}stmt.parameters[parseInt(key)]=v;}else{stmt.parameters[':'+key]=args[key];}}}return stmt;},readResults:function(rs){var r=[];if(rs&&rs.data){var len=rs.data.length;for(var i=0;i<len;i++){r[r.length]=rs.data[i];}}return r;}});Ext.air.SystemTray=function(){var app=air.NativeApplication.nativeApplication;var icon,isWindows=false,bitmaps;if(air.NativeApplication.supportsSystemTrayIcon){icon=app.icon;isWindows=true;}if(air.NativeApplication.supportsDockIcon){icon=app.icon;}return{setIcon:function(icon,tooltip,initWithIcon){if(!icon){return;}var loader=new air.Loader();loader.contentLoaderInfo.addEventListener(air.Event.COMPLETE,function(e){bitmaps=new runtime.Array(e.target.content.bitmapData);if(initWithIcon){icon.bitmaps=bitmaps;}});loader.load(new air.URLRequest(icon));if(tooltip&&air.NativeApplication.supportsSystemTrayIcon){app.icon.tooltip=tooltip;}},bounce:function(priority){icon.bounce(priority);},on:function(eventName,fn,scope){icon.addEventListener(eventName,function(){fn.apply(scope||this,arguments);});},hideIcon:function(){if(!icon){return;}icon.bitmaps=[];},showIcon:function(){if(!icon){return;}icon.bitmaps=bitmaps;},setMenu:function(actions,_parentMenu){if(!icon){return;}var menu=new air.NativeMenu();for(var i=0,len=actions.length;i<len;i++){var a=actions[i];if(a=='-'){menu.addItem(new air.NativeMenuItem("",true));}else{var item=menu.addItem(Ext.air.MenuItem(a));if(a.menu||(a.initialConfig&&a.initialConfig.menu)){item.submenu=Ext.air.SystemTray.setMenu(a.menu||a.initialConfig.menu,menu);}}if(!_parentMenu){icon.menu=menu;}}return menu;}};}();Ext.air.DragType={TEXT:'text/plain',HTML:'text/html',URL:'text/uri-list',BITMAP:'image/x-vnd.adobe.air.bitmap',FILES:'application/x-vnd.adobe.air.file-list'};Ext.apply(Ext.EventObjectImpl.prototype,{hasFormat:function(format){if(this.browserEvent.dataTransfer){for(var i=0,len=this.browserEvent.dataTransfer.types.length;i<len;i++){if(this.browserEvent.dataTransfer.types[i]==format){return true;}}}return false;},getData:function(type){return this.browserEvent.dataTransfer.getData(type);}});Ext.air.Sound={play:function(file,startAt){var soundFile=air.File.applicationDirectory.resolvePath(file);var sound=new air.Sound();sound.load(new air.URLRequest(soundFile.url));sound.play(startAt);}};Ext.air.SystemMenu=function(){var menu;if(air.NativeWindow.supportsMenu&&nativeWindow.systemChrome!=air.NativeWindowSystemChrome.NONE){menu=new air.NativeMenu();nativeWindow.menu=menu;}if(air.NativeApplication.supportsMenu){menu=air.NativeApplication.nativeApplication.menu;}function find(menu,text){for(var i=0,len=menu.items.length;i<len;i++){if(menu.items[i]['label']==text){return menu.items[i];}}return null;}return{add:function(text,actions,mindex){var item=find(menu,text);if(!item){item=menu.addItem(new air.NativeMenuItem(text));item.mnemonicIndex=mindex||0;item.submenu=new air.NativeMenu();}for(var i=0,len=actions.length;i<len;i++){item.submenu.addItem(actions[i]=='-'?new air.NativeMenuItem("",true):Ext.air.MenuItem(actions[i]));}return item.submenu;},get:function(){return menu;}};}();Ext.air.MenuItem=function(action){if(!action.isAction){action=new Ext.Action(action);}var cfg=action.initialConfig;var nativeItem=new air.NativeMenuItem(cfg.itemText||cfg.text);nativeItem.enabled=!cfg.disabled;if(!Ext.isEmpty(cfg.checked)){nativeItem.checked=cfg.checked;}var handler=cfg.handler;var scope=cfg.scope;nativeItem.addEventListener(air.Event.SELECT,function(){handler.call(scope||window,cfg);});action.addComponent({setDisabled:function(v){nativeItem.enabled=!v;},setText:function(v){nativeItem.label=v;},setVisible:function(v){nativeItem.enabled=!v;},setHandler:function(newHandler,newScope){handler=newHandler;scope=newScope;},on:function(){}});return nativeItem;}Ext.ns('Ext.air');Ext.air.MusicPlayer=Ext.extend(Ext.util.Observable,{activeSound:null,activeChannel:null,activeTransform:new air.SoundTransform(1,0),pausePosition:0,progressInterval:500,constructor:function(config){config=config||{};Ext.apply(this,config);this.addEvents('stop','pause','play','load','id3info','complete','progress','skip');Ext.air.MusicPlayer.superclass.constructor.call(this,config);this.onSoundFinishedDelegate=this.onSoundFinished.createDelegate(this);this.onSoundLoadDelegate=this.onSoundLoad.createDelegate(this);this.onSoundID3LoadDelegate=this.onSoundID3Load.createDelegate(this);Ext.TaskMgr.start({run:this.notifyProgress,scope:this,interval:this.progressInterval});},adjustVolume:function(percent){this.activeTransform.volume=percent;if(this.activeChannel){this.activeChannel.soundTransform=this.activeTransform;}},stop:function(){this.pausePosition=0;if(this.activeChannel){this.activeChannel.stop();this.activeChannel=null;}if(this.activeSound){this.activeSound.removeEventListener(air.Event.COMPLETE,this.onSoundLoadDelegate);this.activeSound.removeEventListener(air.Event.ID3,this.onSoundID3LoadDelegate);this.activeSound.removeEventListener(air.Event.SOUND_COMPLETE,this.onSoundFinishedDelegate);}},pause:function(){if(this.activeChannel){this.pausePosition=this.activeChannel.position;this.activeChannel.stop();}},play:function(url){if(url){this.stop();var req=new air.URLRequest(url);this.activeSound=new air.Sound();this.activeSound.addEventListener(air.Event.SOUND_COMPLETE,this.onSoundFinishedDelegate);this.activeSound.addEventListener(air.Event.COMPLETE,this.onSoundLoadDelegate);this.activeSound.addEventListener(air.Event.ID3,this.onSoundID3LoadDelegate);this.activeSound.load(req);}else{this.onSoundLoad();}},skipTo:function(pos){if(this.activeChannel){this.activeChannel.stop();this.activeChannel=this.activeSound.play(pos);this.activeChannel.soundTransform=this.activeTransform;this.fireEvent('skip',this.activeChannel,this.activeSound,pos);}},hasActiveChannel:function(){return!!this.activeChannel;},onSoundLoad:function(event){if(this.activeSound){if(this.activeChannel){this.activeChannel.stop();}this.activeChannel=this.activeSound.play(this.pausePosition);this.activeChannel.soundTransform=this.activeTransform;this.fireEvent('load',this.activeChannel,this.activeSound);}},onSoundFinished:function(event){this.fireEvent('complete',event);},onSoundID3Load:function(event){this.activeSound.removeEventListener(air.Event.ID3,this.onSoundID3LoadDelegate);var id3=event.target.id3;this.fireEvent('id3info',id3);},notifyProgress:function(){if(this.activeChannel&&this.activeSound){var playbackPercent=100*(this.activeChannel.position/this.activeSound.length);if(playbackPercent>99.7){this.onSoundFinished();}else{this.fireEvent('progress',this.activeChannel,this.activeSound);}}}});Ext.air.Notify=Ext.extend(Ext.air.NativeWindow,{winType:'notify',type:'lightweight',width:400,height:50,chrome:'none',transparent:true,alwaysOnTop:true,extraHeight:22,hideDelay:3000,msgId:'msg',iconId:'icon',icon:Ext.BLANK_IMAGE_URL,boxCls:'x-box',extAllCSS:'../extjs/resources/css/ext-all.css',xtpl:new Ext.XTemplate('<html><head><link rel="stylesheet" href="{extAllCSS}" /></head>','<body>','<div class="{boxCls}-tl"><div class="{boxCls}-tr"><div class="{boxCls}-tc"></div></div></div><div class="{boxCls}-ml"><div class="{boxCls}-mr"><div class="{boxCls}-mc">','<div id="{msgId}">','<span>{msg}</span>','<div id="{iconId}" style="float: right;"><img src="{icon}"></div>','</div>','</div></div></div><div class="{boxCls}-bl"><div class="{boxCls}-br"><div class="{boxCls}-bc"></div></div></div>','</body>','</html>'),constructor:function(config){config=config||{};Ext.apply(this,config);config.html=this.xtpl.apply(this);Ext.air.Notify.superclass.constructor.call(this,config);this.getNative().alwaysInFront=true;this.onCompleteDelegate=this.onComplete.createDelegate(this);this.loader.addEventListener(air.Event.COMPLETE,this.onCompleteDelegate);},onComplete:function(event){this.loader.removeEventListener(air.Event.COMPLETE,this.onCompleteDelegate);this.show(event);},show:function(event){var h=event.target.window.document.getElementById(this.msgId).clientHeight+this.extraHeight;var main=air.Screen.mainScreen;var xy=[0,0];xy[0]=main.visibleBounds.bottomRight.x-this.width;xy[1]=main.visibleBounds.bottomRight.y-this.height;this.moveTo(xy[0],xy[1]);Ext.air.Notify.superclass.show.call(this);this.close.defer(this.hideDelay,this);}});Ext.air.Clipboard=function(){var clipboard=air.Clipboard.generalClipboard;return{hasData:function(format){return clipboard.hasFormat(format);},setData:function(format,data){clipboard.setData(format,data);},setDataHandler:function(format,fn){clipboard.setDataHandler(format,fn);},getData:function(format,transferMode){clipboard.getData(format,transferMode);},clear:function(){clipboard.clear();},clearData:function(format){clipboard.clearData(format);}};}();Ext.air.App=function(){return{launchOnStartup:function(launch){air.NativeApplication.nativeApplication.startAtLogin=!!launch;},getActiveWindow:function(){return air.NativeApplication.activeWindow;}};}();Ext.air.dir=function(obj,indent){indent=indent||0;var indentString="";for(var i=0;i<indent;i++){indentString+="\t";}var val;for(var prop in obj){val=obj[prop];if(typeof(val)=="object"){air.trace(indentString+" "+prop+": [Object]");Ext.air.dir(val,indent+1);}else{air.trace(indentString+" "+prop+": "+val);}}};Ext.tree.LocalTreeLoader=Ext.extend(Ext.tree.TreeLoader,{requestData:function(node,callback){if(this.fireEvent("beforeload",this,node,callback)!==false){var p=Ext.urlDecode(this.getParams(node));var response=this.dataFn(node);this.processResponse(response,node,callback);this.fireEvent("load",this,node,response);}else{if(typeof callback=="function"){callback();}}},processResponse:function(o,node,callback){try{node.beginUpdate();for(var i=0,len=o.length;i<len;i++){var n=this.createNode(o[i]);if(n){node.appendChild(n);}}node.endUpdate();if(typeof callback=="function"){callback(this,node);}}catch(e){this.handleFailure(response);}},load:function(node,callback){if(this.clearOnLoad){while(node.firstChild){node.removeChild(node.firstChild);}}if(this.doPreload(node)){if(typeof callback=="function"){callback();}}else if(this.dataFn||this.fn){this.requestData(node,callback);}}});Ext.air.FileTreeLoader=Ext.extend(Ext.tree.LocalTreeLoader,{extensionFilter:false,dataFn:function(currNode){var currDir;if(currNode.attributes.url){currDir=this.directory.resolvePath(currNode.attributes.url);}else{currDir=this.directory;}var files=[];var c=currDir.getDirectoryListing();for(i=0;i<c.length;i++){if(c[i].isDirectory||this.extensionFilter===false||this.extensionFilter===c[i].extension)files.push({text:c[i].name,url:c[i].url,extension:c[i].extension,leaf:!c[i].isDirectory});}return files;}});Ext.air.VideoPanel=Ext.extend(Ext.Panel,{autoResize:true,initComponent:function(){var connection=new air.NetConnection();connection.connect(null);this.stream=new runtime.flash.net.NetStream(connection);this.stream.client={onMetaData:Ext.emptyFn};Ext.air.VideoPanel.superclass.initComponent.call(this);this.on('bodyresize',this.onVideoResize,this);},afterRender:function(){Ext.air.VideoPanel.superclass.afterRender.call(this);(function(){var box=this.body.getBox();this.video=new air.Video(this.getInnerWidth(),this.getInnerHeight());if(this.url){this.video.attachNetStream(this.stream);this.stream.play(this.url);}nativeWindow.stage.addChild(this.video);this.video.x=box.x;this.video.y=box.y;}).defer(500,this);},onVideoResize:function(pnl,w,h){if(this.video&&this.autoResize){var iw=this.getInnerWidth();var ih=this.getInnerHeight();this.video.width=iwthis.video.height=ih;var xy=this.body.getXY();if(xy[0]!==this.video.x){this.video.x=xy[0];}if(xy[1]!==this.video.y){this.video.y=xy[1];}}},loadVideo:function(url){this.stream.close();this.video.attachNetStream(this.stream);this.stream.play(url);}});Ext.reg('videopanel',Ext.air.VideoPanel);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲国产精品成人综合| 欧美日韩高清在线播放| 久久精品一级爱片| 99久久免费视频.com| 亚洲国产精品一区二区久久 | 日韩欧美在线影院| 色哟哟国产精品| 福利一区福利二区| 久久福利视频一区二区| 亚洲精品网站在线观看| 欧美激情在线观看视频免费| 日韩亚洲欧美综合| 日韩精品中午字幕| 欧美精品一卡两卡| 欧美日韩卡一卡二| 欧美综合久久久| 在线免费精品视频| 91蜜桃免费观看视频| 91蜜桃网址入口| 91精品国产一区二区三区蜜臀 | 欧美丰满高潮xxxx喷水动漫| 麻豆成人在线观看| 国产激情一区二区三区桃花岛亚洲| 成人激情av网| 91精品办公室少妇高潮对白| 国产成人在线看| 国产精品系列在线观看| 国产伦精品一区二区三区视频青涩 | 国产激情一区二区三区四区| 肉色丝袜一区二区| 日本特黄久久久高潮| 性欧美疯狂xxxxbbbb| 婷婷激情综合网| 日本aⅴ亚洲精品中文乱码| 亚洲sss视频在线视频| 福利视频网站一区二区三区| 偷窥少妇高潮呻吟av久久免费| 亚洲国产成人精品视频| 天天综合色天天| 国内精品在线播放| 成人激情动漫在线观看| 色呦呦日韩精品| 日韩欧美国产精品| 久久久三级国产网站| 国产视频一区二区在线| 国产精品久久久久久久久免费樱桃| 国产精品人人做人人爽人人添| 亚洲精品国产一区二区精华液 | 日韩精品一二区| 色综合婷婷久久| 91精品久久久久久久99蜜桃| 精品蜜桃在线看| 亚洲欧洲韩国日本视频| 美女视频网站久久| 色猫猫国产区一区二在线视频| 精品国产乱码久久久久久夜甘婷婷 | 亚洲精品国久久99热| 粉嫩av亚洲一区二区图片| 欧美一区在线视频| 一区二区三区成人| 91麻豆精品一区二区三区| 久久久精品免费免费| 国产又黄又大久久| 欧美大片一区二区| 精品一区二区三区视频在线观看 | 色老头久久综合| 尤物av一区二区| 91在线观看视频| 一区二区三区欧美在线观看| 欧美亚一区二区| 亚洲午夜羞羞片| 欧美三级视频在线观看| 日日骚欧美日韩| 欧美精品一区二区三区很污很色的| 亚洲动漫第一页| 欧美一区二区三区思思人| 久久69国产一区二区蜜臀| 国产欧美一区视频| 色美美综合视频| 美国十次了思思久久精品导航| 日韩视频一区二区| 欧美曰成人黄网| 国产最新精品免费| 一区二区三区 在线观看视频| 欧美狂野另类xxxxoooo| 激情欧美一区二区| 亚洲精品成人天堂一二三| 日韩一区二区三区三四区视频在线观看| 精品一区在线看| 亚洲免费av高清| 国产女主播在线一区二区| 精品视频资源站| 色婷婷av久久久久久久| 国产综合色在线视频区| 日本伊人色综合网| 亚洲不卡一区二区三区| 亚洲欧洲精品一区二区三区| 色婷婷亚洲精品| 国产欧美精品一区二区色综合 | 一区二区高清视频在线观看| 91精品国产高清一区二区三区蜜臀| 国产制服丝袜一区| 婷婷国产v国产偷v亚洲高清| 日本一区二区久久| 国产精品欧美精品| 国产精品二区一区二区aⅴ污介绍| 久久久精品人体av艺术| 精品1区2区在线观看| 日韩一级二级三级| 2020日本不卡一区二区视频| 精品国产乱码久久久久久图片| 久久青草国产手机看片福利盒子| 欧美一级理论片| 欧美一区二区三区在线视频| 欧美一区二区大片| 精品久久久影院| 国产欧美va欧美不卡在线| 亚洲乱码中文字幕| 国产精品99久久久久| 国产a视频精品免费观看| bt7086福利一区国产| 欧美视频中文字幕| 国产偷国产偷亚洲高清人白洁| 精品国产乱码久久久久久牛牛| 国产欧美精品一区aⅴ影院| 国产精品久久久久久亚洲毛片| 亚洲一区二区av在线| 极品少妇xxxx精品少妇偷拍| 91蜜桃婷婷狠狠久久综合9色| 欧美一区二区在线看| 久久久美女艺术照精彩视频福利播放| 久久久噜噜噜久噜久久综合| 亚洲欧美日韩国产另类专区 | 亚洲精品一二三四区| 天堂在线亚洲视频| 国产91精品精华液一区二区三区 | 欧美日韩精品一区二区| 日韩视频一区在线观看| 亚洲精品写真福利| 国产精品资源网站| 91精品国产色综合久久ai换脸 | 91亚洲男人天堂| 久久精品欧美一区二区三区不卡| 亚洲欧美另类久久久精品2019| 蜜桃久久精品一区二区| 精品久久久久久久人人人人传媒| 国产精品毛片大码女人| 成人一区在线观看| 久久精品水蜜桃av综合天堂| 国产一区二区视频在线播放| 欧美一区二区视频在线观看2022 | 日本三级韩国三级欧美三级| 欧美私模裸体表演在线观看| 一区二区视频在线看| 成人国产在线观看| 亚洲国产aⅴ天堂久久| 欧洲精品一区二区| 亚洲成人手机在线| 久久综合一区二区| 春色校园综合激情亚洲| 亚洲免费伊人电影| 欧美精品精品一区| 国产资源在线一区| 亚洲男人的天堂在线观看| 欧美日本韩国一区| 蜜臀91精品一区二区三区| 国产日本欧美一区二区| 欧美日韩情趣电影| 久久91精品国产91久久小草| 国产精品色婷婷| 91精品欧美综合在线观看最新| 精品中文字幕一区二区| 国产精品美女久久久久久久久久久 | 亚洲动漫第一页| 国产亚洲精品bt天堂精选| 91福利国产成人精品照片| 国产一二三精品| 亚洲一区二区三区四区五区黄 | 国产欧美综合在线观看第十页| 91蝌蚪porny| 韩国午夜理伦三级不卡影院| 亚洲制服丝袜av| 成人欧美一区二区三区白人 | 欧美不卡一区二区三区| 97se亚洲国产综合在线| 久久综合综合久久综合| 一区二区三区丝袜| 久久亚洲影视婷婷| 精品久久久久久亚洲综合网 | 国产精品成人一区二区艾草| 亚洲精品一区二区三区影院| 91福利在线播放| 欧美性videosxxxxx| 欧美精品vⅰdeose4hd| 在线亚洲免费视频| 欧美日韩aaaaaa| 欧美草草影院在线视频| 久久久亚洲午夜电影| 国产精品国产a级| 亚洲成av人片|