2 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license
\r
6 CKEDITOR.plugins.add( 'richcombo',
\r
8 requires : [ 'floatpanel', 'listblock', 'button' ],
\r
10 beforeInit : function( editor )
\r
12 editor.ui.addHandler( CKEDITOR.UI_RICHCOMBO, CKEDITOR.ui.richCombo.handler );
\r
17 * Button UI element.
\r
21 CKEDITOR.UI_RICHCOMBO = 3;
\r
23 CKEDITOR.ui.richCombo = CKEDITOR.tools.createClass(
\r
25 $ : function( definition )
\r
27 // Copy all definition properties to this object.
\r
28 CKEDITOR.tools.extend( this, definition,
\r
31 title : definition.label,
\r
32 modes : { wysiwyg : 1 }
\r
35 // We don't want the panel definition in this object.
\r
36 var panelDefinition = this.panel || {};
\r
39 this.id = CKEDITOR.tools.getNextNumber();
\r
41 this.document = ( panelDefinition
\r
42 && panelDefinition.parent
\r
43 && panelDefinition.parent.getDocument() )
\r
44 || CKEDITOR.document;
\r
46 panelDefinition.className = ( panelDefinition.className || '' ) + ' cke_rcombopanel';
\r
47 panelDefinition.block =
\r
49 multiSelect : panelDefinition.multiSelect,
\r
50 attributes : panelDefinition.attributes
\r
55 panelDefinition : panelDefinition,
\r
57 state : CKEDITOR.TRISTATE_OFF
\r
65 create : function( definition )
\r
67 return new CKEDITOR.ui.richCombo( definition );
\r
74 renderHtml : function( editor )
\r
77 this.render( editor, output );
\r
78 return output.join( '' );
\r
82 * Renders the combo.
\r
83 * @param {CKEDITOR.editor} editor The editor instance which this button is
\r
85 * @param {Array} output The output array to which append the HTML relative
\r
89 render : function( editor, output )
\r
91 var env = CKEDITOR.env;
\r
93 var id = 'cke_' + this.id;
\r
94 var clickFn = CKEDITOR.tools.addFunction( function( $element )
\r
98 if ( _.state == CKEDITOR.TRISTATE_DISABLED )
\r
101 this.createPanel( editor );
\r
110 var value = this.getValue();
\r
112 _.list.mark( value );
\r
114 _.list.unmarkAll();
\r
116 _.panel.showBlock( this.id, new CKEDITOR.dom.element( $element ), 4 );
\r
125 var element = CKEDITOR.document.getById( id ).getChild( 1 );
\r
131 editor.on( 'mode', function()
\r
133 this.setState( this.modes[ editor.mode ] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED );
\r
134 this.setValue( '' );
\r
138 var keyDownFn = CKEDITOR.tools.addFunction( function( ev, element )
\r
140 ev = new CKEDITOR.dom.event( ev );
\r
142 var keystroke = ev.getKeystroke();
\r
143 switch ( keystroke )
\r
147 case 40 : // ARROW-DOWN
\r
149 CKEDITOR.tools.callFunction( clickFn, element );
\r
152 // Delegate the default behavior to toolbar button key handling.
\r
153 instance.onkey( instance, keystroke );
\r
156 // Avoid subsequent focus grab on editor document.
\r
157 ev.preventDefault();
\r
161 instance.keyDownFn = keyDownFn;
\r
164 '<span class="cke_rcombo">',
\r
167 if ( this.className )
\r
168 output.push( ' class="', this.className, ' cke_off"');
\r
172 '<span id="' + id+ '_label" class=cke_label>', this.label, '</span>',
\r
173 '<a hidefocus=true title="', this.title, '" tabindex="-1"',
\r
174 env.gecko && env.version >= 10900 && !env.hc ? '' : ' href="javascript:void(\'' + this.label + '\')"',
\r
175 ' role="button" aria-labelledby="', id , '_label" aria-describedby="', id, '_text" aria-haspopup="true"' );
\r
177 // Some browsers don't cancel key events in the keydown but in the
\r
179 // TODO: Check if really needed for Gecko+Mac.
\r
180 if ( CKEDITOR.env.opera || ( CKEDITOR.env.gecko && CKEDITOR.env.mac ) )
\r
183 ' onkeypress="return false;"' );
\r
186 // With Firefox, we need to force it to redraw, otherwise it
\r
187 // will remain in the focus state.
\r
188 if ( CKEDITOR.env.gecko )
\r
191 ' onblur="this.style.cssText = this.style.cssText;"' );
\r
195 ' onkeydown="CKEDITOR.tools.callFunction( ', keyDownFn, ', event, this );"' +
\r
196 ' onclick="CKEDITOR.tools.callFunction(', clickFn, ', this); return false;">' +
\r
198 '<span id="' + id + '_text" class="cke_text cke_inline_label">' + this.label + '</span>' +
\r
200 '<span class=cke_openbutton><span class=cke_icon>' + ( CKEDITOR.env.hc ? '▼' : CKEDITOR.env.air ? ' ' : '' ) + '</span></span>' + // BLACK DOWN-POINTING TRIANGLE
\r
205 if ( this.onRender )
\r
211 createPanel : function( editor )
\r
213 if ( this._.panel )
\r
216 var panelDefinition = this._.panelDefinition,
\r
217 panelBlockDefinition = this._.panelDefinition.block,
\r
218 panelParentElement = panelDefinition.parent || CKEDITOR.document.getBody(),
\r
219 panel = new CKEDITOR.ui.floatPanel( editor, panelParentElement, panelDefinition ),
\r
220 list = panel.addListBlock( this.id, panelBlockDefinition ),
\r
223 panel.onShow = function()
\r
225 if ( me.className )
\r
226 this.element.getFirst().addClass( me.className + '_panel' );
\r
228 me.setState( CKEDITOR.TRISTATE_ON );
\r
230 list.focus( !me.multiSelect && me.getValue() );
\r
238 panel.onHide = function( preventOnClose )
\r
240 if ( me.className )
\r
241 this.element.getFirst().removeClass( me.className + '_panel' );
\r
243 me.setState( me.modes && me.modes[ editor.mode ] ? CKEDITOR.TRISTATE_OFF : CKEDITOR.TRISTATE_DISABLED );
\r
247 if ( !preventOnClose && me.onClose )
\r
251 panel.onEscape = function()
\r
254 me.document.getById( 'cke_' + me.id ).getFirst().getNext().focus();
\r
257 list.onClick = function( value, marked )
\r
259 // Move the focus to the main windows, otherwise it will stay
\r
260 // into the floating panel, even if invisible, and Safari and
\r
261 // Opera will go a bit crazy.
\r
262 me.document.getWindow().focus();
\r
265 me.onClick.call( me, value, marked );
\r
268 me.setValue( value, me._.items[ value ] );
\r
275 this._.panel = panel;
\r
276 this._.list = list;
\r
278 panel.getBlock( this.id ).onHide = function()
\r
281 me.setState( CKEDITOR.TRISTATE_OFF );
\r
288 setValue : function( value, text )
\r
290 this._.value = value;
\r
292 var textElement = this.document.getById( 'cke_' + this.id + '_text' );
\r
295 if ( !( value || text ) )
\r
298 textElement.addClass( 'cke_inline_label' );
\r
301 textElement.removeClass( 'cke_inline_label' );
\r
303 textElement.setHtml( typeof text != 'undefined' ? text : value );
\r
307 getValue : function()
\r
309 return this._.value || '';
\r
312 unmarkAll : function()
\r
314 this._.list.unmarkAll();
\r
317 mark : function( value )
\r
319 this._.list.mark( value );
\r
322 hideItem : function( value )
\r
324 this._.list.hideItem( value );
\r
327 hideGroup : function( groupTitle )
\r
329 this._.list.hideGroup( groupTitle );
\r
332 showAll : function()
\r
334 this._.list.showAll();
\r
337 add : function( value, html, text )
\r
339 this._.items[ value ] = text || value;
\r
340 this._.list.add( value, html, text );
\r
343 startGroup : function( title )
\r
345 this._.list.startGroup( title );
\r
348 commit : function()
\r
350 if ( !this._.committed )
\r
352 this._.list.commit();
\r
353 this._.committed = 1;
\r
354 CKEDITOR.ui.fire( 'ready', this );
\r
356 this._.committed = 1;
\r
359 setState : function( state )
\r
361 if ( this._.state == state )
\r
364 this.document.getById( 'cke_' + this.id ).setState( state );
\r
366 this._.state = state;
\r
371 CKEDITOR.ui.prototype.addRichCombo = function( name, definition )
\r
373 this.add( name, CKEDITOR.UI_RICHCOMBO, definition );
\r