123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798 |
- /**
- * @license Copyright (c) 2003-2013, webmote - codeex.cn. All rights reserved.
- * For licensing, see http://codeex.cn/
- * 2013-2-18 v1.0
- */
- (function() {
- // It is possible to set things in three different places.
- // 1. As attributes in the object tag.
- // 2. As param tags under the object tag.
- // 3. As attributes in the embed tag.
- // It is possible for a single attribute to be present in more than one place.
- // So let's define a mapping between a sementic attribute and its syntactic
- // equivalents.
- // Then we'll set and retrieve attribute values according to the mapping,
- // instead of having to check and set each syntactic attribute every time.
- //
- // Reference: http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_12701
- var ATTRTYPE_OBJECT = 1,
- ATTRTYPE_PARAM = 2,
- ATTRTYPE_EMBED = 4;
- // object 与界面映射词典
- var attributesMap = {
- allowScriptAccess: [ {type: ATTRTYPE_PARAM, name: 'allowScriptAccess'}, {type: ATTRTYPE_EMBED, name: 'allowScriptAccess'}],
- allowFullScreen: [ {type: ATTRTYPE_PARAM, name: 'allowFullScreen'}, {type: ATTRTYPE_EMBED, name: 'allowFullScreen'}],
- align: [ {type: ATTRTYPE_OBJECT, name: 'align'}],
- bgcolor: [ {type: ATTRTYPE_PARAM, name: 'bgcolor'}, {type: ATTRTYPE_EMBED, name: 'bgcolor'}],
- base: [ {type: ATTRTYPE_PARAM, name: 'base'}, {type: ATTRTYPE_EMBED, name: 'base'}],
- 'class': [ {type: ATTRTYPE_OBJECT, name: 'class'}, {type: ATTRTYPE_EMBED, name: 'class'}],
- classid: [ {type: ATTRTYPE_OBJECT, name: 'classid'}],
- codebase: [ {type: ATTRTYPE_OBJECT, name: 'codebase'}],
- flashvars: [ {type: ATTRTYPE_PARAM, name: 'flashvars'}, {type: ATTRTYPE_EMBED, name: 'flashvars'}], //add by webmote
- height: [ {type: ATTRTYPE_OBJECT, name: 'height'}, {type: ATTRTYPE_EMBED, name: 'height'}],
- hSpace: [ {type: ATTRTYPE_OBJECT, name: 'hSpace'}, {type: ATTRTYPE_EMBED, name: 'hSpace'}],
- id: [ {type: ATTRTYPE_OBJECT, name: 'id'}],
- loop: [ {type: ATTRTYPE_PARAM, name: 'loop'}, {type: ATTRTYPE_EMBED, name: 'loop'}],
- mtype: [ {type: ATTRTYPE_OBJECT, name: 'mtype'}, {type: ATTRTYPE_EMBED, name: 'mtype'}], //add by webmote
- menu: [ {type: ATTRTYPE_PARAM, name: 'menu'}, {type: ATTRTYPE_EMBED, name: 'menu'}],
- name: [ {type: ATTRTYPE_EMBED, name: 'name'}],
- pluginspage: [ {type: ATTRTYPE_EMBED, name: 'pluginspage'}],
- play: [ {type: ATTRTYPE_PARAM, name: 'play'}, {type: ATTRTYPE_EMBED, name: 'autostart'}],
- quality: [ {type: ATTRTYPE_PARAM, name: 'quality'}, {type: ATTRTYPE_EMBED, name: 'quality'}],
- src: [ {type: ATTRTYPE_PARAM, name: 'movie'}, {type: ATTRTYPE_EMBED, name: 'rsrc'}, {type: ATTRTYPE_OBJECT, name: 'data'}],
- scale: [ {type: ATTRTYPE_PARAM, name: 'scale'}, {type: ATTRTYPE_EMBED, name: 'scale'}],
- style: [ {type: ATTRTYPE_OBJECT, name: 'style'}, {type: ATTRTYPE_EMBED, name: 'style'}],
- salign: [ {type: ATTRTYPE_PARAM, name: 'salign'}, {type: ATTRTYPE_EMBED, name: 'salign'}],
- seamlesstabbing: [ {type: ATTRTYPE_PARAM, name: 'seamlesstabbing'}, {type: ATTRTYPE_EMBED, name: 'seamlesstabbing'}],
- type: [ {type: ATTRTYPE_OBJECT, name: 'type'},{type: ATTRTYPE_EMBED, name: 'type'}],
- vSpace: [ {type: ATTRTYPE_OBJECT, name: 'vSpace'}, {type: ATTRTYPE_EMBED, name: 'vSpace'}],
- width: [ {type: ATTRTYPE_OBJECT, name: 'width'}, {type: ATTRTYPE_EMBED, name: 'width'}],
- wmode: [ {type: ATTRTYPE_PARAM, name: 'wmode'}, {type: ATTRTYPE_EMBED, name: 'wmode'}],
- };
- //赋默认值
- attributesMap[ 'mtype' ][ 0 ][ 'default' ] = attributesMap[ 'mtype' ][ 1 ][ 'default' ] = "allmedias";
- var names = [ 'allowFullScreen', 'play', 'loop', 'menu' ];
- for ( i = 0; i < names.length; i++ )
- attributesMap[ names[ i ] ][ 0 ][ 'default' ] = attributesMap[ names[ i ] ][ 1 ][ 'default' ] = true;
- attributesMap['seamlesstabbing'][0]['default'] = attributesMap['seamlesstabbing'][ 1 ][ 'default' ] = true;
- var mediaTypes = [ //video/x-ms-asf-plugin application/x-mplayer2
- {player:'wmpvideo',idx:0,
- types: ['video/x-ms-asf-plugin','video/x-ms-asf-plugin','video/x-ms-asf-plugin','video/x-ms-asf-plugin'],
- classid: 'clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6',
- codebase: 'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701',
- pluginspage: 'http://activex.microsoft.com/',
- exts:['wmv','mpeg','asf','avi']
- },
- {player:'wmpaudio',idx:0,
- types: ['video/x-ms-asf-plugin','video/x-ms-asf-plugin','video/x-ms-asf-plugin','video/x-ms-asf-plugin','video/x-ms-asf-plugin','video/x-ms-asf-plugin'],
- classid: 'clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6',
- codebase: 'http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701',
- pluginspage: 'http://activex.microsoft.com/',
- exts:['wma','m4a','wav','mpg','mid','mp3']
- },
- {player:'rpvideo',idx:0,
- types: ['audio/x-pn-realaudio-plugin','audio/x-pn-realaudio-plugin','audio/x-pn-realaudio-plugin'],
- classid: 'clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA',
- codebase: 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0',
- pluginspage: 'http://download.macromedia.com',
- exts:['rm','rmvb','ra']
- },
- {player:'qmvideo',idx:0,types: ['video/quicktime'],
- classid: 'clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B',
- codebase: 'http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0',
- pluginspage: 'http://www.apple.com/qtactivex',
- exts:['qt']
- },
- {player:'flashvideo',idx:0,types: ['application/x-shockwave-flash','application/x-shockwave-flash','application/x-shockwave-flash', 'application/x-shockwave-flash','application/x-shockwave-flash'],
- classid: 'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000',
- codebase: 'http://download.macroallMedias.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0',
- pluginspage: 'http://www.macroallMedias.com/go/getflashplayer',
- src: 'plugins/allmedias/jwplayer.swf', //相对插件路径
- exts:['flv','mov','mp4','m4v','f4v']
- },/*
- {player:'flashaudio',idx:0,types: ['application/x-shockwave-flash'],
- classid: 'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000',
- codebase: 'http://download.macroallMedias.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0',
- pluginspage: 'http://www.macroallMedias.com/go/getflashplayer',
- src: 'plugins/allmedias/player.swf', //相对插件路径
- exts:['mp3']
- },*/
- {player:'pdfReader',idx:0,types: ['application/pdf'],
- classid: 'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000',
- codebase: 'http://download.macroallMedias.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0',
- pluginspage: 'http://www.macroallMedias.com/go/getflashplayer',
- exts:['pdf']
- },
- ];
- function getUriExt(uri){
- if(!uri)return "";
- return uri.substring(uri.lastIndexOf(".") + 1, uri.length).toLowerCase();
- }
- function getMediaType(ext) {
- var i,
- k,
- mediaPlayer,
- mp;
- if(!ext){return mediaTypes[0];}
- for (i=0; i<mediaTypes.length; i++) {
- mediaPlayer = mediaTypes[i];
- //0-video 1-audio
- if (mediaPlayer) {
- for(k=0; k<mediaPlayer.exts.length; k++)
- {
- if(ext == mediaPlayer.exts[k]){
- mediaPlayer.idx = k;
- return mediaPlayer;
- }
- }
- }
- }
- return mediaTypes[0];
- }
- //var names = [ 'play', 'loop', 'menu', 'quality', 'scale', 'salign', 'wmode', 'bgcolor', 'base', 'flashvars', 'allowScriptAccess', 'allowFullScreen','seamlesstabbing' ];
- //for ( var i = 0; i < names.length; i++ )
- // attributesMap[ names[ i ] ] = [ {
- // type: ATTRTYPE_EMBED, name: names[ i ]
- //}, {
- // type: ATTRTYPE_PARAM, name: names[ i ]
- //}];
- var defaultToPixel = CKEDITOR.tools.cssLength;
- function loadValue( objectNode, embedNode, paramMap ) {
- var attributes = attributesMap[ this.id ];
- if ( !attributes )
- return;
- var isCheckbox = ( this instanceof CKEDITOR.ui.dialog.checkbox );
- for ( var i = 0; i < attributes.length; i++ ) {
- var attrDef = attributes[ i ];
- switch ( attrDef.type ) {
- case ATTRTYPE_OBJECT:
- if ( !objectNode )
- continue;
- if ( objectNode.getAttribute( attrDef.name ) !== null ) {
- var value = objectNode.getAttribute( attrDef.name );
- if ( isCheckbox )
- this.setValue( value.toLowerCase() == 'true' );
- else
- this.setValue( value );
- return;
- } else if ( isCheckbox )
- this.setValue( !!attrDef[ 'default' ] );
- break;
- case ATTRTYPE_PARAM:
- if ( !objectNode )
- continue;
- if ( attrDef.name in paramMap ) {
- value = paramMap[ attrDef.name ];
- if ( isCheckbox )
- this.setValue( value.toLowerCase() == 'true' );
- else
- this.setValue( value );
- return;
- } else if ( isCheckbox )
- this.setValue( !!attrDef[ 'default' ] );
- break;
- case ATTRTYPE_EMBED:
- if ( !embedNode )
- continue;
- if ( embedNode.getAttribute( attrDef.name ) ) {
- value = embedNode.getAttribute( attrDef.name );
- if ( isCheckbox )
- this.setValue( value.toLowerCase() == 'true' );
- else
- this.setValue( value );
- return;
- } else if ( isCheckbox )
- this.setValue( !!attrDef[ 'default' ] );
- }
- }
- }
- function commitValue( objectNode, embedNode, paramMap ) {
- var attributes = attributesMap[ this.id ];
- if ( !attributes )
- return;
- var isRemove = ( this.getValue() === '' ),
- isCheckbox = ( this instanceof CKEDITOR.ui.dialog.checkbox );
- for ( var i = 0; i < attributes.length; i++ ) {
- var attrDef = attributes[ i ];
- switch ( attrDef.type ) {
- case ATTRTYPE_OBJECT:
- // Avoid applying the data attribute when not needed (#7733)
- if ( !objectNode || ( attrDef.name == 'data' && embedNode && !objectNode.hasAttribute( 'data' ) ) )
- continue;
- var value = this.getValue();
- if ( isRemove )
- objectNode.removeAttribute( attrDef.name );
- else
- objectNode.setAttribute( attrDef.name, value );
- break;
- case ATTRTYPE_PARAM:
- if ( !objectNode )
- continue;
- value = this.getValue();
- if ( isRemove ) {
- if ( attrDef.name in paramMap )
- paramMap[ attrDef.name ].remove();
- } else {
- if ( attrDef.name in paramMap )
- paramMap[ attrDef.name ].setAttribute( 'value', value );
- else {
- var param = CKEDITOR.dom.element.createFromHtml( '<cke:param></cke:param>', objectNode.getDocument() );
- param.setAttributes({ name: attrDef.name, value: value } );
- if ( objectNode.getChildCount() < 1 )
- param.appendTo( objectNode );
- else
- param.insertBefore( objectNode.getFirst() );
- }
- }
- break;
- case ATTRTYPE_EMBED:
- if ( !embedNode )
- continue;
- value = this.getValue();
- if ( isRemove )
- embedNode.removeAttribute( attrDef.name );
- else
- embedNode.setAttribute( attrDef.name, value );
- }
- }
- }
- CKEDITOR.dialog.add( 'allmedias', function( editor ) {
- //此处更改为仅支持embed标签,简单跨浏览器
- //var makeObjectTag = !editor.config.allMediasEmbedTagOnly,
- // makeEmbedTag = editor.config.allMediasAddEmbedTag || editor.config.allMediasEmbedTagOnly;
- var makeObjectTag = false,
- makeEmbedTag = true;
- var previewPreloader,
- previewAreaHtml = '<div>' + CKEDITOR.tools.htmlEncode( editor.lang.common.preview ) + '<br>' +
- '<div id="cke_FlashPreviewLoader' + CKEDITOR.tools.getNextNumber() + '" style="display:none"><div class="loading"> </div></div>' +
- '<div id="cke_FlashPreviewBox' + CKEDITOR.tools.getNextNumber() + '" class="FlashPreviewBox" style="width:100%;"></div></div>';
- return {
- title: editor.lang.allmedias.title,
- minWidth: 420,
- minHeight: 310,
- onShow: function() {
- // Clear previously saved elements.
- this.fakeImage = this.objectNode = this.embedNode = null;
- previewPreloader = new CKEDITOR.dom.element( 'embed', editor.document );
- // Try to detect any embed or object tag that has allMedias parameters.
- var fakeImage = this.getSelectedElement();
- if ( fakeImage && fakeImage.data( 'cke-real-element-type' ) && fakeImage.data( 'cke-real-element-type' ) == 'allmedias' ) {
- this.fakeImage = fakeImage;
- var realElement = editor.restoreRealElement( fakeImage ),
- objectNode = null,
- embedNode = null,
- paramMap = {};
- if ( realElement.getName() == 'cke:object' ) {
- objectNode = realElement;
- var embedList = objectNode.getElementsByTag( 'embed', 'cke' );
- if ( embedList.count() > 0 )
- embedNode = embedList.getItem( 0 );
- var paramList = objectNode.getElementsByTag( 'param', 'cke' );
- for ( var i = 0, length = paramList.count(); i < length; i++ ) {
- var item = paramList.getItem( i ),
- name = item.getAttribute( 'name' ),
- value = item.getAttribute( 'value' );
- paramMap[ name ] = value;
- }
- } else if ( realElement.getName() == 'cke:embed' )
- embedNode = realElement;
- this.objectNode = objectNode;
- this.embedNode = embedNode;
- this.setupContent( objectNode, embedNode, paramMap, fakeImage );
- }
- },
- onOk: function() {
- // If there's no selected object or embed, create one. Otherwise, reuse the
- // selected object and embed nodes.
- var objectNode = null,
- embedNode = null,
- paramMap = null,
- myExtPlayer;
- myExtPlayer = getMediaType(getUriExt(this.getValueOf('info', 'src')));
- if ( !this.fakeImage ) {
- if ( makeObjectTag ) {
- objectNode = CKEDITOR.dom.element.createFromHtml( '<cke:object></cke:object>', editor.document );
- var attributes = {
- classid: myExtPlayer.classid,
- type: myExtPlayer.types[myExtPlayer.idx],
- mtype: 'allmedias',
- codebase: myExtPlayer.codebase
- };
- objectNode.setAttributes( attributes );
- }
- if ( makeEmbedTag ) {
- embedNode = CKEDITOR.dom.element.createFromHtml( '<cke:embed></cke:embed>', editor.document );
- embedNode.setAttributes({
- type: myExtPlayer.types[myExtPlayer.idx],
- mtype: 'allmedias',
- pluginspage: myExtPlayer.pluginspage
- });
- if ( objectNode )
- embedNode.appendTo( objectNode );
- }
- } else {
- objectNode = this.objectNode;
- embedNode = this.embedNode;
- //如果更改文件,则有可能需要更改type
- embedNode.setAttributes({
- type: myExtPlayer.types[myExtPlayer.idx],
- pluginspage: myExtPlayer.pluginspage
- });
- }
- // Produce the paramMap if there's an object tag.
- if ( objectNode ) {
- paramMap = {};
- var paramList = objectNode.getElementsByTag( 'param', 'cke' );
- for ( var i = 0, length = paramList.count(); i < length; i++ )
- paramMap[ paramList.getItem( i ).getAttribute( 'name' ) ] = paramList.getItem( i );
- }
- // A subset of the specified attributes/styles
- // should also be applied on the fake element to
- // have better visual effect. (#5240)
- var extraStyles = {},
- extraAttributes = {};
- this.commitContent( objectNode, embedNode, paramMap, extraStyles, extraAttributes );
- //处理不同的文件类型
- var attributes = {};
- if(myExtPlayer.player == 'flashvideo'){
- attributes = {
- flashvars: 'file=' + CKEDITOR.tools.htmlEncode( this.getValueOf('info', 'src') || '') ,
- src: CKEDITOR.getUrl(myExtPlayer.src || '')
- };
- }else if(myExtPlayer.player =='wmpaudio'){
- attributes = {
- src: CKEDITOR.tools.htmlEncode( this.getValueOf('info', 'src') || ''),
- width: (this.getValueOf('info', 'width') || 400),
- height: 45
- };
- }/*else if(myExtPlayer.player == 'flashaudio'){
- attributes = {
- flashvars: 'soundFile=' + CKEDITOR.tools.htmlEncode( this.getValueOf('info', 'src') || '') ,
- src: CKEDITOR.getUrl(myExtPlayer.src || '') ,
- width: (this.getValueOf('info', 'width') || 50),
- height: 25
- };
- }*/
- else{
- attributes = {
- src: CKEDITOR.tools.htmlEncode( this.getValueOf('info', 'src') || '')
- };
- }
- embedNode.setAttributes(attributes);
- // Refresh the fake image.
- var newFakeImage = editor.createFakeElement( objectNode || embedNode, 'cke_allmedias', 'allmedias', true );
- newFakeImage.setAttributes( extraAttributes );
- newFakeImage.setStyles( extraStyles );
- if ( this.fakeImage ) {
- newFakeImage.replace( this.fakeImage );
- editor.getSelection().selectElement( newFakeImage );
- } else
- editor.insertElement( newFakeImage );
- },
- onHide: function() {
- if ( this.preview )
- this.preview.setHtml( '' );
- },
- contents: [
- {
- id: 'info',
- label: editor.lang.common.generalTab,
- accessKey: 'I',
- elements: [
- {
- type: 'vbox',
- padding: 0,
- children: [
- {
- type: 'hbox',
- widths: [ '280px', '110px' ],
- align: 'right',
- children: [
- {
- id: 'src',
- type: 'text',
- label: editor.lang.common.url,
- required: true,
- validate: CKEDITOR.dialog.validate.notEmpty( editor.lang.allmedias.validateSrc ),
- setup: loadValue,
- commit: commitValue,
- onLoad: function() {
- var dialog = this.getDialog(),
- updatePreview = function( src ) {
- var width = dialog.getValueOf('info', 'width');
- var height = dialog.getValueOf('info', 'height') ;
- // Query the preloader to figure out the url impacted by based href.
- previewPreloader.setAttribute( 'src', src );
- var mp = getMediaType(getUriExt(previewPreloader.getAttribute('src') ));
- var objsrc ;
- if(mp.player == 'flashvideo')
- {
- width = (dialog.getValueOf('info', 'width') || 400);
- height = (dialog.getValueOf('info', 'height') || 300);
- objsrc = ' flashvars="autostart=true&file=' + CKEDITOR.tools.htmlEncode( previewPreloader.getAttribute( 'src' )) +'" '
- +' style="height:' + height + 'px;width:'+ width +'px"'
- + 'pluginspage ="' + (mp.pluginspage || '') +'" '
- + 'src ="' + CKEDITOR.getUrl((mp.src || '')) +'" ';
- }
- else if (mp.player == 'wmpaudio'){
- width = (dialog.getValueOf('info', 'width') || 350);
- height = 45;
- objsrc = ' src="' + CKEDITOR.tools.htmlEncode( previewPreloader.getAttribute( 'src' )) +'" '
- + 'pluginspage ="' + (mp.pluginspage || '') +'" '
- +' style="height:' + height + 'px;width:'+ width +'px"';
- }
- /*else if(mp.player == 'flashaudio'){
- width = (dialog.getValueOf('info', 'width') || 25);
- height = (dialog.getValueOf('info', 'height') || 100);
- objsrc = ' flashvars="autostart=true&soundFile=' + CKEDITOR.tools.htmlEncode( previewPreloader.getAttribute( 'src' )) +'" '
- //+'width="' + width +'" height="' + height +'" '
- + 'soundFile="' + CKEDITOR.tools.htmlEncode( CKEDITOR.getUrl(previewPreloader.getAttribute( 'src' ))) + '" '
- + 'src ="' + CKEDITOR.getUrl((mp.src || '')) +'" ';
- }*/
- else
- {
- width = (dialog.getValueOf('info', 'width') || 400);
- height = (dialog.getValueOf('info', 'height') || 300);
- objsrc = ' src="' + CKEDITOR.tools.htmlEncode( previewPreloader.getAttribute( 'src' )) +'" '
- + 'pluginspage ="' + (mp.pluginspage || '') +'" '
- +' style="height:' + height + 'px;width:'+ width +'px"';
- }
- dialog.preview.setHtml( '<embed ' + objsrc
- + ' autostart="true'
- + '" type="'+ mp.types[mp.idx] +'"></embed>' );
- };
- // Preview element
- dialog.preview = dialog.getContentElement( 'info', 'preview' ).getElement().getChild( 3 );
- // Sync on inital value loaded.
- this.on( 'change', function( evt ) {
- if ( evt.data && evt.data.value )
- updatePreview( evt.data.value );
- });
- // Sync when input value changed.
- this.getInputElement().on( 'change', function( evt ) {
- updatePreview( this.getValue() );
- }, this );
- }
- },
- {
- type: 'button',
- id: 'browse',
- filebrowser: {target:'info:src', //update span area
- action : 'Browse', //QuickUpload ,Upload,Browse
- //url : '/ckfinder/ckfinder.html&type=Images',
- params : // optional
- {
- mediaType : 'allmedias',
- by : 'ck'
- }
- },
- hidden: true,
- // v-align with the 'src' field.
- // TODO: We need something better than a fixed size here.
- style: 'display:inline-block;margin-top:15px;',
- label: editor.lang.common.browseServer
- }
- ]
- }
- ]
- },
- {
- type: 'hbox',
- widths: [ '25%', '25%', '25%', '25%', '25%' ],
- children: [
- {
- type: 'text',
- id: 'width',
- style: 'width:95px',
- label: editor.lang.common.width,
- validate: CKEDITOR.dialog.validate.htmlLength( editor.lang.common.invalidHtmlLength.replace( '%1', editor.lang.common.width ) ),
- setup: loadValue,
- commit: commitValue
- },
- {
- type: 'text',
- id: 'height',
- style: 'width:95px',
- label: editor.lang.common.height,
- validate: CKEDITOR.dialog.validate.htmlLength( editor.lang.common.invalidHtmlLength.replace( '%1', editor.lang.common.height ) ),
- setup: loadValue,
- commit: commitValue
- },
- {
- type: 'text',
- id: 'hSpace',
- style: 'width:95px',
- label: editor.lang.allmedias.hSpace,
- validate: CKEDITOR.dialog.validate.integer( editor.lang.allmedias.validateHSpace ),
- setup: loadValue,
- commit: commitValue
- },
- {
- type: 'text',
- id: 'vSpace',
- style: 'width:95px',
- label: editor.lang.allmedias.vSpace,
- validate: CKEDITOR.dialog.validate.integer( editor.lang.allmedias.validateVSpace ),
- setup: loadValue,
- commit: commitValue
- }
- ]
- },
- {
- type: 'vbox',
- children: [
- {
- type: 'html',
- id: 'preview',
- style: 'width:95%;',
- html: previewAreaHtml
- },
- {
- type: 'text',
- id: 'flashuri',
- label: 'hid1',
- 'default': 'plugins/allmedias/jwplayer.swf',
- style: 'display : none;',
- setup: loadValue,
- commit: commitValue
- }
- ]
- }
- ]
- },
- {
- id: 'Upload',
- hidden: true,
- filebrowser: 'uploadButton',
- label: editor.lang.common.upload,
- elements: [
- {
- type: 'file',
- id: 'upload',
- label: editor.lang.common.upload,
- size: 38
- },
- {
- type: 'fileButton',
- id: 'uploadButton',
- label: editor.lang.common.uploadSubmit,
- filebrowser: 'info:src',
- 'for': [ 'Upload', 'upload' ]
- }
- ]
- },
- {
- id: 'properties',
- label: editor.lang.allmedias.propertiesTab,
- elements: [
- {
- type: 'hbox',
- widths: [ '50%', '50%' ],
- children: [
- {
- id: 'scale',
- type: 'select',
- label: editor.lang.allmedias.scale,
- 'default': '',
- style: 'width : 100%;',
- items: [
- [ editor.lang.common.notSet, '' ],
- [ editor.lang.allmedias.scaleAll, 'showall' ],
- [ editor.lang.allmedias.scaleNoBorder, 'noborder' ],
- [ editor.lang.allmedias.scaleFit, 'exactfit' ]
- ],
- setup: loadValue,
- commit: commitValue
- },
- {
- id: 'allowScriptAccess',
- type: 'select',
- label: editor.lang.allmedias.access,
- 'default': '',
- style: 'width : 100%;',
- items: [
- [ editor.lang.common.notSet, '' ],
- [ editor.lang.allmedias.accessAlways, 'always' ],
- [ editor.lang.allmedias.accessSameDomain, 'samedomain' ],
- [ editor.lang.allmedias.accessNever, 'never' ]
- ],
- setup: loadValue,
- commit: commitValue
- }
- ]
- },
- {
- type: 'hbox',
- widths: [ '50%', '50%' ],
- children: [
- {
- id: 'wmode',
- type: 'select',
- label: editor.lang.allmedias.windowMode,
- 'default': '',
- style: 'width : 100%;',
- items: [
- [ editor.lang.common.notSet, '' ],
- [ editor.lang.allmedias.windowModeWindow, 'window' ],
- [ editor.lang.allmedias.windowModeOpaque, 'opaque' ],
- [ editor.lang.allmedias.windowModeTransparent, 'transparent' ]
- ],
- setup: loadValue,
- commit: commitValue
- },
- {
- id: 'quality',
- type: 'select',
- label: editor.lang.allmedias.quality,
- 'default': 'high',
- style: 'width : 100%;',
- items: [
- [ editor.lang.common.notSet, '' ],
- [ editor.lang.allmedias.qualityBest, 'best' ],
- [ editor.lang.allmedias.qualityHigh, 'high' ],
- [ editor.lang.allmedias.qualityAutoHigh, 'autohigh' ],
- [ editor.lang.allmedias.qualityMedium, 'medium' ],
- [ editor.lang.allmedias.qualityAutoLow, 'autolow' ],
- [ editor.lang.allmedias.qualityLow, 'low' ]
- ],
- setup: loadValue,
- commit: commitValue
- }
- ]
- },
- {
- type: 'hbox',
- widths: [ '50%', '50%' ],
- children: [
- {
- id: 'align',
- type: 'select',
- label: editor.lang.common.align,
- 'default': '',
- style: 'width : 100%;',
- items: [
- [ editor.lang.common.notSet, '' ],
- [ editor.lang.common.alignLeft, 'left' ],
- [ editor.lang.allmedias.alignAbsBottom, 'absBottom' ],
- [ editor.lang.allmedias.alignAbsMiddle, 'absMiddle' ],
- [ editor.lang.allmedias.alignBaseline, 'baseline' ],
- [ editor.lang.common.alignBottom, 'bottom' ],
- [ editor.lang.common.alignMiddle, 'middle' ],
- [ editor.lang.common.alignRight, 'right' ],
- [ editor.lang.allmedias.alignTextTop, 'textTop' ],
- [ editor.lang.common.alignTop, 'top' ]
- ],
- setup: loadValue,
- commit: function( objectNode, embedNode, paramMap, extraStyles, extraAttributes ) {
- var value = this.getValue();
- commitValue.apply( this, arguments );
- value && ( extraAttributes.align = value );
- }
- },
- {
- type: 'html',
- html: '<div></div>'
- }
- ]
- },
- {
- type: 'fieldset',
- label: CKEDITOR.tools.htmlEncode( editor.lang.allmedias.flashvars ),
- children: [
- {
- type: 'vbox',
- padding: 0,
- children: [
- /*{
- type: 'checkbox',
- id: 'menu',
- label: editor.lang.allMedias.chkMenu,
- 'default': true,
- setup: loadValue,
- commit: commitValue
- },*/
- {
- type: 'checkbox',
- id: 'loop',
- label: editor.lang.allmedias.chkLoop,
- 'default': true,
- setup: loadValue,
- commit: commitValue
- },
- {
- type: 'checkbox',
- id: 'play',
- label: editor.lang.allmedias.chkPlay,
- 'default': true,
- setup: loadValue,
- commit: commitValue
- },
- {
- type: 'checkbox',
- id: 'allowFullScreen',
- label: editor.lang.allmedias.chkFull,
- 'default': true,
- setup: loadValue,
- commit: commitValue
- }
- ]
- }
- ]
- }
- ]
- } ,
- {
- id: 'advanced',
- label: editor.lang.common.advancedTab,
- elements: [
- {
- type: 'hbox',
- children: [
- {
- type: 'text',
- id: 'id',
- label: editor.lang.common.id,
- setup: loadValue,
- commit: commitValue
- }
- ]
- },
- {
- type: 'hbox',
- widths: [ '45%', '55%' ],
- children: [
- {
- type: 'text',
- id: 'bgcolor',
- label: editor.lang.allmedias.bgcolor,
- setup: loadValue,
- commit: commitValue
- },
- {
- type: 'text',
- id: 'class',
- label: editor.lang.common.cssClass,
- setup: loadValue,
- commit: commitValue
- }
- ]
- },
- {
- type: 'text',
- id: 'style',
- validate: CKEDITOR.dialog.validate.inlineStyle( editor.lang.common.invalidInlineStyle ),
- label: editor.lang.common.cssStyle,
- setup: loadValue,
- commit: commitValue
- }
- ]
- }
- ]
- };
- });
- })();
|