6fbc7aa25dffe236b91f76ed4266941a97020122.svn-base
9.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'colordialog', function( editor )
{
// Define some shorthands.
var $el = CKEDITOR.dom.element,
$doc = CKEDITOR.document,
lang = editor.lang.colordialog;
// Reference the dialog.
var dialog;
var spacer =
{
type : 'html',
html : ' '
};
var selected;
function clearSelected()
{
$doc.getById( selHiColorId ).removeStyle( 'background-color' );
dialog.getContentElement( 'picker', 'selectedColor' ).setValue( '' );
selected && selected.removeAttribute( 'aria-selected' );
selected = null;
}
function updateSelected( evt )
{
var target = evt.data.getTarget(),
color;
if ( target.getName() == 'td' &&
( color = target.getChild( 0 ).getHtml() ) )
{
selected = target;
selected.setAttribute( 'aria-selected', true );
dialog.getContentElement( 'picker', 'selectedColor' ).setValue( color );
}
}
// Basing black-white decision off of luma scheme using the Rec. 709 version
function whiteOrBlack( color )
{
color = color.replace( /^#/, '' );
for ( var i = 0, rgb = []; i <= 2; i++ )
rgb[i] = parseInt( color.substr( i * 2, 2 ), 16 );
var luma = (0.2126 * rgb[0]) + (0.7152 * rgb[1]) + (0.0722 * rgb[2]);
return '#' + ( luma >= 165 ? '000' : 'fff' );
}
// Distinguish focused and hover states.
var focused, hovered;
// Apply highlight style.
function updateHighlight( event )
{
// Convert to event.
!event.name && ( event = new CKEDITOR.event( event ) );
var isFocus = !(/mouse/).test( event.name ),
target = event.data.getTarget(),
color;
if ( target.getName() == 'td' && ( color = target.getChild( 0 ).getHtml() ) )
{
removeHighlight( event );
isFocus ? focused = target : hovered = target;
// Apply outline style to show focus.
if ( isFocus )
{
target.setStyle( 'border-color', whiteOrBlack( color ) );
target.setStyle( 'border-style', 'dotted' );
}
$doc.getById( hicolorId ).setStyle( 'background-color', color );
$doc.getById( hicolorTextId ).setHtml( color );
}
}
function clearHighlight()
{
var color = focused.getChild( 0 ).getHtml();
focused.setStyle( 'border-color', color );
focused.setStyle( 'border-style', 'solid' );
$doc.getById( hicolorId ).removeStyle( 'background-color' );
$doc.getById( hicolorTextId ).setHtml( ' ' );
focused = null;
}
// Remove previously focused style.
function removeHighlight( event )
{
var isFocus = !(/mouse/).test( event.name ),
target = isFocus && focused;
if ( target )
{
var color = target.getChild( 0 ).getHtml();
target.setStyle( 'border-color', color );
target.setStyle( 'border-style', 'solid' );
}
if ( ! ( focused || hovered ) )
{
$doc.getById( hicolorId ).removeStyle( 'background-color' );
$doc.getById( hicolorTextId ).setHtml( ' ' );
}
}
function onKeyStrokes( evt )
{
var domEvt = evt.data;
var element = domEvt.getTarget();
var relative, nodeToMove;
var keystroke = domEvt.getKeystroke(),
rtl = editor.lang.dir == 'rtl';
switch ( keystroke )
{
// UP-ARROW
case 38 :
// relative is TR
if ( ( relative = element.getParent().getPrevious() ) )
{
nodeToMove = relative.getChild( [ element.getIndex() ] );
nodeToMove.focus();
}
domEvt.preventDefault();
break;
// DOWN-ARROW
case 40 :
// relative is TR
if ( ( relative = element.getParent().getNext() ) )
{
nodeToMove = relative.getChild( [ element.getIndex() ] );
if ( nodeToMove && nodeToMove.type == 1 )
{
nodeToMove.focus();
}
}
domEvt.preventDefault();
break;
// SPACE
// ENTER
case 32 :
case 13 :
updateSelected( evt );
domEvt.preventDefault();
break;
// RIGHT-ARROW
case rtl ? 37 : 39 :
// relative is TD
if ( ( nodeToMove = element.getNext() ) )
{
if ( nodeToMove.type == 1 )
{
nodeToMove.focus();
domEvt.preventDefault( true );
}
}
// relative is TR
else if ( ( relative = element.getParent().getNext() ) )
{
nodeToMove = relative.getChild( [ 0 ] );
if ( nodeToMove && nodeToMove.type == 1 )
{
nodeToMove.focus();
domEvt.preventDefault( true );
}
}
break;
// LEFT-ARROW
case rtl ? 39 : 37 :
// relative is TD
if ( ( nodeToMove = element.getPrevious() ) )
{
nodeToMove.focus();
domEvt.preventDefault( true );
}
// relative is TR
else if ( ( relative = element.getParent().getPrevious() ) )
{
nodeToMove = relative.getLast();
nodeToMove.focus();
domEvt.preventDefault( true );
}
break;
default :
// Do not stop not handled events.
return;
}
}
function createColorTable()
{
table = CKEDITOR.dom.element.createFromHtml
(
'<table tabIndex="-1" aria-label="' + lang.options + '"' +
' role="grid" style="border-collapse:separate;" cellspacing="0">' +
'<caption class="cke_voice_label">' + lang.options + '</caption>' +
'<tbody role="presentation"></tbody></table>'
);
table.on( 'mouseover', updateHighlight );
table.on( 'mouseout', removeHighlight );
// Create the base colors array.
var aColors = [ '00', '33', '66', '99', 'cc', 'ff' ];
// This function combines two ranges of three values from the color array into a row.
function appendColorRow( rangeA, rangeB )
{
for ( var i = rangeA ; i < rangeA + 3 ; i++ )
{
var row = new $el( table.$.insertRow( -1 ) );
row.setAttribute( 'role', 'row' );
for ( var j = rangeB ; j < rangeB + 3 ; j++ )
{
for ( var n = 0 ; n < 6 ; n++ )
{
appendColorCell( row.$, '#' + aColors[j] + aColors[n] + aColors[i] );
}
}
}
}
// This function create a single color cell in the color table.
function appendColorCell( targetRow, color )
{
var cell = new $el( targetRow.insertCell( -1 ) );
cell.setAttribute( 'class', 'ColorCell' );
cell.setAttribute( 'tabIndex', -1 );
cell.setAttribute( 'role', 'gridcell' );
cell.on( 'keydown', onKeyStrokes );
cell.on( 'click', updateSelected );
cell.on( 'focus', updateHighlight );
cell.on( 'blur', removeHighlight );
cell.setStyle( 'background-color', color );
cell.setStyle( 'border', '1px solid ' + color );
cell.setStyle( 'width', '14px' );
cell.setStyle( 'height', '14px' );
var colorLabel = numbering( 'color_table_cell' );
cell.setAttribute( 'aria-labelledby',colorLabel );
cell.append( CKEDITOR.dom.element.createFromHtml( '<span id="' + colorLabel + '" class="cke_voice_label">' + color + '</span>', CKEDITOR.document ) );
}
appendColorRow( 0, 0 );
appendColorRow( 3, 0 );
appendColorRow( 0, 3 );
appendColorRow( 3, 3 );
// Create the last row.
var oRow = new $el( table.$.insertRow( -1 ) ) ;
oRow.setAttribute( 'role', 'row' );
// Create the gray scale colors cells.
for ( var n = 0 ; n < 6 ; n++ )
{
appendColorCell( oRow.$, '#' + aColors[n] + aColors[n] + aColors[n] ) ;
}
// Fill the row with black cells.
for ( var i = 0 ; i < 12 ; i++ )
{
appendColorCell( oRow.$, '#000000' ) ;
}
}
var numbering = function( id )
{
return CKEDITOR.tools.getNextId() + '_' + id;
},
hicolorId = numbering( 'hicolor' ),
hicolorTextId = numbering( 'hicolortext' ),
selHiColorId = numbering( 'selhicolor' ),
table;
createColorTable();
return {
title : lang.title,
minWidth : 360,
minHeight : 220,
onLoad : function()
{
// Update reference.
dialog = this;
},
onHide : function()
{
clearSelected();
clearHighlight();
},
contents : [
{
id : 'picker',
label : lang.title,
accessKey : 'I',
elements :
[
{
type : 'hbox',
padding : 0,
widths : [ '70%', '10%', '30%' ],
children :
[
{
type : 'html',
html : '<div></div>',
onLoad : function()
{
CKEDITOR.document.getById( this.domId ).append( table );
},
focus : function()
{
// Restore the previously focused cell,
// otherwise put the initial focus on the first table cell.
( focused || this.getElement().getElementsByTag( 'td' ).getItem( 0 ) ).focus();
}
},
spacer,
{
type : 'vbox',
padding : 0,
widths : [ '70%', '5%', '25%' ],
children :
[
{
type : 'html',
html : '<span>' + lang.highlight +'</span>\
<div id="' + hicolorId + '" style="border: 1px solid; height: 74px; width: 74px;"></div>\
<div id="' + hicolorTextId + '"> </div><span>' + lang.selected + '</span>\
<div id="' + selHiColorId + '" style="border: 1px solid; height: 20px; width: 74px;"></div>'
},
{
type : 'text',
label : lang.selected,
labelStyle: 'display:none',
id : 'selectedColor',
style : 'width: 74px',
onChange : function()
{
// Try to update color preview with new value. If fails, then set it no none.
try
{
$doc.getById( selHiColorId ).setStyle( 'background-color', this.getValue() );
}
catch ( e )
{
clearSelected();
}
}
},
spacer,
{
type : 'button',
id : 'clear',
style : 'margin-top: 5px',
label : lang.clear,
onClick : clearSelected
}
]
}
]
}
]
}
]
};
}
);