[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 tinyMCEPopup.requireLangPack(); 2 3 var defaultFonts = "" + 4 "Arial, Helvetica, sans-serif=Arial, Helvetica, sans-serif;" + 5 "Times New Roman, Times, serif=Times New Roman, Times, serif;" + 6 "Courier New, Courier, mono=Courier New, Courier, mono;" + 7 "Times New Roman, Times, serif=Times New Roman, Times, serif;" + 8 "Georgia, Times New Roman, Times, serif=Georgia, Times New Roman, Times, serif;" + 9 "Verdana, Arial, Helvetica, sans-serif=Verdana, Arial, Helvetica, sans-serif;" + 10 "Geneva, Arial, Helvetica, sans-serif=Geneva, Arial, Helvetica, sans-serif"; 11 12 var defaultSizes = "9;10;12;14;16;18;24;xx-small;x-small;small;medium;large;x-large;xx-large;smaller;larger"; 13 var defaultMeasurement = "+pixels=px;points=pt;inches=in;centimetres=cm;millimetres=mm;picas=pc;ems=em;exs=ex;%"; 14 var defaultSpacingMeasurement = "pixels=px;points=pt;inches=in;centimetres=cm;millimetres=mm;picas=pc;+ems=em;exs=ex;%"; 15 var defaultIndentMeasurement = "pixels=px;+points=pt;inches=in;centimetres=cm;millimetres=mm;picas=pc;ems=em;exs=ex;%"; 16 var defaultWeight = "normal;bold;bolder;lighter;100;200;300;400;500;600;700;800;900"; 17 var defaultTextStyle = "normal;italic;oblique"; 18 var defaultVariant = "normal;small-caps"; 19 var defaultLineHeight = "normal"; 20 var defaultAttachment = "fixed;scroll"; 21 var defaultRepeat = "no-repeat;repeat;repeat-x;repeat-y"; 22 var defaultPosH = "left;center;right"; 23 var defaultPosV = "top;center;bottom"; 24 var defaultVAlign = "baseline;sub;super;top;text-top;middle;bottom;text-bottom"; 25 var defaultDisplay = "inline;block;list-item;run-in;compact;marker;table;inline-table;table-row-group;table-header-group;table-footer-group;table-row;table-column-group;table-column;table-cell;table-caption;none"; 26 var defaultBorderStyle = "none;solid;dashed;dotted;double;groove;ridge;inset;outset"; 27 var defaultBorderWidth = "thin;medium;thick"; 28 var defaultListType = "disc;circle;square;decimal;lower-roman;upper-roman;lower-alpha;upper-alpha;none"; 29 30 function aggregateStyles(allStyles) { 31 var mergedStyles = {}; 32 33 tinymce.each(allStyles, function(style) { 34 if (style !== '') { 35 var parsedStyles = tinyMCEPopup.editor.dom.parseStyle(style); 36 for (var name in parsedStyles) { 37 if (parsedStyles.hasOwnProperty(name)) { 38 if (mergedStyles[name] === undefined) { 39 mergedStyles[name] = parsedStyles[name]; 40 } 41 else if (name === 'text-decoration') { 42 if (mergedStyles[name].indexOf(parsedStyles[name]) === -1) { 43 mergedStyles[name] = mergedStyles[name] +' '+ parsedStyles[name]; 44 } 45 } 46 } 47 } 48 } 49 }); 50 51 return mergedStyles; 52 } 53 54 var applyActionIsInsert; 55 var existingStyles; 56 57 function init(ed) { 58 var ce = document.getElementById('container'), h; 59 60 existingStyles = aggregateStyles(tinyMCEPopup.getWindowArg('styles')); 61 ce.style.cssText = tinyMCEPopup.editor.dom.serializeStyle(existingStyles); 62 63 applyActionIsInsert = ed.getParam("edit_css_style_insert_span", false); 64 document.getElementById('toggle_insert_span').checked = applyActionIsInsert; 65 66 h = getBrowserHTML('background_image_browser','background_image','image','advimage'); 67 document.getElementById("background_image_browser").innerHTML = h; 68 69 document.getElementById('text_color_pickcontainer').innerHTML = getColorPickerHTML('text_color_pick','text_color'); 70 document.getElementById('background_color_pickcontainer').innerHTML = getColorPickerHTML('background_color_pick','background_color'); 71 document.getElementById('border_color_top_pickcontainer').innerHTML = getColorPickerHTML('border_color_top_pick','border_color_top'); 72 document.getElementById('border_color_right_pickcontainer').innerHTML = getColorPickerHTML('border_color_right_pick','border_color_right'); 73 document.getElementById('border_color_bottom_pickcontainer').innerHTML = getColorPickerHTML('border_color_bottom_pick','border_color_bottom'); 74 document.getElementById('border_color_left_pickcontainer').innerHTML = getColorPickerHTML('border_color_left_pick','border_color_left'); 75 76 fillSelect(0, 'text_font', 'style_font', defaultFonts, ';', true); 77 fillSelect(0, 'text_size', 'style_font_size', defaultSizes, ';', true); 78 fillSelect(0, 'text_size_measurement', 'style_font_size_measurement', defaultMeasurement, ';', true); 79 fillSelect(0, 'text_case', 'style_text_case', "capitalize;uppercase;lowercase", ';', true); 80 fillSelect(0, 'text_weight', 'style_font_weight', defaultWeight, ';', true); 81 fillSelect(0, 'text_style', 'style_font_style', defaultTextStyle, ';', true); 82 fillSelect(0, 'text_variant', 'style_font_variant', defaultVariant, ';', true); 83 fillSelect(0, 'text_lineheight', 'style_font_line_height', defaultLineHeight, ';', true); 84 fillSelect(0, 'text_lineheight_measurement', 'style_font_line_height_measurement', defaultMeasurement, ';', true); 85 86 fillSelect(0, 'background_attachment', 'style_background_attachment', defaultAttachment, ';', true); 87 fillSelect(0, 'background_repeat', 'style_background_repeat', defaultRepeat, ';', true); 88 89 fillSelect(0, 'background_hpos_measurement', 'style_background_hpos_measurement', defaultMeasurement, ';', true); 90 fillSelect(0, 'background_vpos_measurement', 'style_background_vpos_measurement', defaultMeasurement, ';', true); 91 92 fillSelect(0, 'background_hpos', 'style_background_hpos', defaultPosH, ';', true); 93 fillSelect(0, 'background_vpos', 'style_background_vpos', defaultPosV, ';', true); 94 95 fillSelect(0, 'block_wordspacing', 'style_wordspacing', 'normal', ';', true); 96 fillSelect(0, 'block_wordspacing_measurement', 'style_wordspacing_measurement', defaultSpacingMeasurement, ';', true); 97 fillSelect(0, 'block_letterspacing', 'style_letterspacing', 'normal', ';', true); 98 fillSelect(0, 'block_letterspacing_measurement', 'style_letterspacing_measurement', defaultSpacingMeasurement, ';', true); 99 fillSelect(0, 'block_vertical_alignment', 'style_vertical_alignment', defaultVAlign, ';', true); 100 fillSelect(0, 'block_text_align', 'style_text_align', "left;right;center;justify", ';', true); 101 fillSelect(0, 'block_whitespace', 'style_whitespace', "normal;pre;nowrap", ';', true); 102 fillSelect(0, 'block_display', 'style_display', defaultDisplay, ';', true); 103 fillSelect(0, 'block_text_indent_measurement', 'style_text_indent_measurement', defaultIndentMeasurement, ';', true); 104 105 fillSelect(0, 'box_width_measurement', 'style_box_width_measurement', defaultMeasurement, ';', true); 106 fillSelect(0, 'box_height_measurement', 'style_box_height_measurement', defaultMeasurement, ';', true); 107 fillSelect(0, 'box_float', 'style_float', 'left;right;none', ';', true); 108 fillSelect(0, 'box_clear', 'style_clear', 'left;right;both;none', ';', true); 109 fillSelect(0, 'box_padding_left_measurement', 'style_padding_left_measurement', defaultMeasurement, ';', true); 110 fillSelect(0, 'box_padding_top_measurement', 'style_padding_top_measurement', defaultMeasurement, ';', true); 111 fillSelect(0, 'box_padding_bottom_measurement', 'style_padding_bottom_measurement', defaultMeasurement, ';', true); 112 fillSelect(0, 'box_padding_right_measurement', 'style_padding_right_measurement', defaultMeasurement, ';', true); 113 fillSelect(0, 'box_margin_left_measurement', 'style_margin_left_measurement', defaultMeasurement, ';', true); 114 fillSelect(0, 'box_margin_top_measurement', 'style_margin_top_measurement', defaultMeasurement, ';', true); 115 fillSelect(0, 'box_margin_bottom_measurement', 'style_margin_bottom_measurement', defaultMeasurement, ';', true); 116 fillSelect(0, 'box_margin_right_measurement', 'style_margin_right_measurement', defaultMeasurement, ';', true); 117 118 fillSelect(0, 'border_style_top', 'style_border_style_top', defaultBorderStyle, ';', true); 119 fillSelect(0, 'border_style_right', 'style_border_style_right', defaultBorderStyle, ';', true); 120 fillSelect(0, 'border_style_bottom', 'style_border_style_bottom', defaultBorderStyle, ';', true); 121 fillSelect(0, 'border_style_left', 'style_border_style_left', defaultBorderStyle, ';', true); 122 123 fillSelect(0, 'border_width_top', 'style_border_width_top', defaultBorderWidth, ';', true); 124 fillSelect(0, 'border_width_right', 'style_border_width_right', defaultBorderWidth, ';', true); 125 fillSelect(0, 'border_width_bottom', 'style_border_width_bottom', defaultBorderWidth, ';', true); 126 fillSelect(0, 'border_width_left', 'style_border_width_left', defaultBorderWidth, ';', true); 127 128 fillSelect(0, 'border_width_top_measurement', 'style_border_width_top_measurement', defaultMeasurement, ';', true); 129 fillSelect(0, 'border_width_right_measurement', 'style_border_width_right_measurement', defaultMeasurement, ';', true); 130 fillSelect(0, 'border_width_bottom_measurement', 'style_border_width_bottom_measurement', defaultMeasurement, ';', true); 131 fillSelect(0, 'border_width_left_measurement', 'style_border_width_left_measurement', defaultMeasurement, ';', true); 132 133 fillSelect(0, 'list_type', 'style_list_type', defaultListType, ';', true); 134 fillSelect(0, 'list_position', 'style_list_position', "inside;outside", ';', true); 135 136 fillSelect(0, 'positioning_type', 'style_positioning_type', "absolute;relative;static", ';', true); 137 fillSelect(0, 'positioning_visibility', 'style_positioning_visibility', "inherit;visible;hidden", ';', true); 138 139 fillSelect(0, 'positioning_width_measurement', 'style_positioning_width_measurement', defaultMeasurement, ';', true); 140 fillSelect(0, 'positioning_height_measurement', 'style_positioning_height_measurement', defaultMeasurement, ';', true); 141 fillSelect(0, 'positioning_overflow', 'style_positioning_overflow', "visible;hidden;scroll;auto", ';', true); 142 143 fillSelect(0, 'positioning_placement_top_measurement', 'style_positioning_placement_top_measurement', defaultMeasurement, ';', true); 144 fillSelect(0, 'positioning_placement_right_measurement', 'style_positioning_placement_right_measurement', defaultMeasurement, ';', true); 145 fillSelect(0, 'positioning_placement_bottom_measurement', 'style_positioning_placement_bottom_measurement', defaultMeasurement, ';', true); 146 fillSelect(0, 'positioning_placement_left_measurement', 'style_positioning_placement_left_measurement', defaultMeasurement, ';', true); 147 148 fillSelect(0, 'positioning_clip_top_measurement', 'style_positioning_clip_top_measurement', defaultMeasurement, ';', true); 149 fillSelect(0, 'positioning_clip_right_measurement', 'style_positioning_clip_right_measurement', defaultMeasurement, ';', true); 150 fillSelect(0, 'positioning_clip_bottom_measurement', 'style_positioning_clip_bottom_measurement', defaultMeasurement, ';', true); 151 fillSelect(0, 'positioning_clip_left_measurement', 'style_positioning_clip_left_measurement', defaultMeasurement, ';', true); 152 153 TinyMCE_EditableSelects.init(); 154 setupFormData(); 155 showDisabledControls(); 156 } 157 158 function setupFormData() { 159 var ce = document.getElementById('container'), f = document.forms[0], s, b, i; 160 161 // Setup text fields 162 163 selectByValue(f, 'text_font', ce.style.fontFamily, true, true); 164 selectByValue(f, 'text_size', getNum(ce.style.fontSize), true, true); 165 selectByValue(f, 'text_size_measurement', getMeasurement(ce.style.fontSize)); 166 selectByValue(f, 'text_weight', ce.style.fontWeight, true, true); 167 selectByValue(f, 'text_style', ce.style.fontStyle, true, true); 168 selectByValue(f, 'text_lineheight', getNum(ce.style.lineHeight), true, true); 169 selectByValue(f, 'text_lineheight_measurement', getMeasurement(ce.style.lineHeight)); 170 selectByValue(f, 'text_case', ce.style.textTransform, true, true); 171 selectByValue(f, 'text_variant', ce.style.fontVariant, true, true); 172 f.text_color.value = tinyMCEPopup.editor.dom.toHex(ce.style.color); 173 updateColor('text_color_pick', 'text_color'); 174 f.text_underline.checked = inStr(ce.style.textDecoration, 'underline'); 175 f.text_overline.checked = inStr(ce.style.textDecoration, 'overline'); 176 f.text_linethrough.checked = inStr(ce.style.textDecoration, 'line-through'); 177 f.text_blink.checked = inStr(ce.style.textDecoration, 'blink'); 178 f.text_none.checked = inStr(ce.style.textDecoration, 'none'); 179 updateTextDecorations(); 180 181 // Setup background fields 182 183 f.background_color.value = tinyMCEPopup.editor.dom.toHex(ce.style.backgroundColor); 184 updateColor('background_color_pick', 'background_color'); 185 f.background_image.value = ce.style.backgroundImage.replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1"); 186 selectByValue(f, 'background_repeat', ce.style.backgroundRepeat, true, true); 187 selectByValue(f, 'background_attachment', ce.style.backgroundAttachment, true, true); 188 selectByValue(f, 'background_hpos', getNum(getVal(ce.style.backgroundPosition, 0)), true, true); 189 selectByValue(f, 'background_hpos_measurement', getMeasurement(getVal(ce.style.backgroundPosition, 0))); 190 selectByValue(f, 'background_vpos', getNum(getVal(ce.style.backgroundPosition, 1)), true, true); 191 selectByValue(f, 'background_vpos_measurement', getMeasurement(getVal(ce.style.backgroundPosition, 1))); 192 193 // Setup block fields 194 195 selectByValue(f, 'block_wordspacing', getNum(ce.style.wordSpacing), true, true); 196 selectByValue(f, 'block_wordspacing_measurement', getMeasurement(ce.style.wordSpacing)); 197 selectByValue(f, 'block_letterspacing', getNum(ce.style.letterSpacing), true, true); 198 selectByValue(f, 'block_letterspacing_measurement', getMeasurement(ce.style.letterSpacing)); 199 selectByValue(f, 'block_vertical_alignment', ce.style.verticalAlign, true, true); 200 selectByValue(f, 'block_text_align', ce.style.textAlign, true, true); 201 f.block_text_indent.value = getNum(ce.style.textIndent); 202 selectByValue(f, 'block_text_indent_measurement', getMeasurement(ce.style.textIndent)); 203 selectByValue(f, 'block_whitespace', ce.style.whiteSpace, true, true); 204 selectByValue(f, 'block_display', ce.style.display, true, true); 205 206 // Setup box fields 207 208 f.box_width.value = getNum(ce.style.width); 209 selectByValue(f, 'box_width_measurement', getMeasurement(ce.style.width)); 210 211 f.box_height.value = getNum(ce.style.height); 212 selectByValue(f, 'box_height_measurement', getMeasurement(ce.style.height)); 213 selectByValue(f, 'box_float', ce.style.cssFloat || ce.style.styleFloat, true, true); 214 215 selectByValue(f, 'box_clear', ce.style.clear, true, true); 216 217 setupBox(f, ce, 'box_padding', 'padding', ''); 218 setupBox(f, ce, 'box_margin', 'margin', ''); 219 220 // Setup border fields 221 222 setupBox(f, ce, 'border_style', 'border', 'Style'); 223 setupBox(f, ce, 'border_width', 'border', 'Width'); 224 setupBox(f, ce, 'border_color', 'border', 'Color'); 225 226 updateColor('border_color_top_pick', 'border_color_top'); 227 updateColor('border_color_right_pick', 'border_color_right'); 228 updateColor('border_color_bottom_pick', 'border_color_bottom'); 229 updateColor('border_color_left_pick', 'border_color_left'); 230 231 f.elements.border_color_top.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_top.value); 232 f.elements.border_color_right.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_right.value); 233 f.elements.border_color_bottom.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_bottom.value); 234 f.elements.border_color_left.value = tinyMCEPopup.editor.dom.toHex(f.elements.border_color_left.value); 235 236 // Setup list fields 237 238 selectByValue(f, 'list_type', ce.style.listStyleType, true, true); 239 selectByValue(f, 'list_position', ce.style.listStylePosition, true, true); 240 f.list_bullet_image.value = ce.style.listStyleImage.replace(new RegExp("url\\('?([^']*)'?\\)", 'gi'), "$1"); 241 242 // Setup box fields 243 244 selectByValue(f, 'positioning_type', ce.style.position, true, true); 245 selectByValue(f, 'positioning_visibility', ce.style.visibility, true, true); 246 selectByValue(f, 'positioning_overflow', ce.style.overflow, true, true); 247 f.positioning_zindex.value = ce.style.zIndex ? ce.style.zIndex : ""; 248 249 f.positioning_width.value = getNum(ce.style.width); 250 selectByValue(f, 'positioning_width_measurement', getMeasurement(ce.style.width)); 251 252 f.positioning_height.value = getNum(ce.style.height); 253 selectByValue(f, 'positioning_height_measurement', getMeasurement(ce.style.height)); 254 255 setupBox(f, ce, 'positioning_placement', '', '', ['top', 'right', 'bottom', 'left']); 256 257 s = ce.style.clip.replace(new RegExp("rect\\('?([^']*)'?\\)", 'gi'), "$1"); 258 s = s.replace(/,/g, ' '); 259 260 if (!hasEqualValues([getVal(s, 0), getVal(s, 1), getVal(s, 2), getVal(s, 3)])) { 261 f.positioning_clip_top.value = getNum(getVal(s, 0)); 262 selectByValue(f, 'positioning_clip_top_measurement', getMeasurement(getVal(s, 0))); 263 f.positioning_clip_right.value = getNum(getVal(s, 1)); 264 selectByValue(f, 'positioning_clip_right_measurement', getMeasurement(getVal(s, 1))); 265 f.positioning_clip_bottom.value = getNum(getVal(s, 2)); 266 selectByValue(f, 'positioning_clip_bottom_measurement', getMeasurement(getVal(s, 2))); 267 f.positioning_clip_left.value = getNum(getVal(s, 3)); 268 selectByValue(f, 'positioning_clip_left_measurement', getMeasurement(getVal(s, 3))); 269 } else { 270 f.positioning_clip_top.value = getNum(getVal(s, 0)); 271 selectByValue(f, 'positioning_clip_top_measurement', getMeasurement(getVal(s, 0))); 272 f.positioning_clip_right.value = f.positioning_clip_bottom.value = f.positioning_clip_left.value; 273 } 274 275 // setupBox(f, ce, '', 'border', 'Color'); 276 } 277 278 function getMeasurement(s) { 279 return s.replace(/^([0-9.]+)(.*)$/, "$2"); 280 } 281 282 function getNum(s) { 283 if (new RegExp('^(?:[0-9.]+)(?:[a-z%]+)$', 'gi').test(s)) 284 return s.replace(/[^0-9.]/g, ''); 285 286 return s; 287 } 288 289 function inStr(s, n) { 290 return new RegExp(n, 'gi').test(s); 291 } 292 293 function getVal(s, i) { 294 var a = s.split(' '); 295 296 if (a.length > 1) 297 return a[i]; 298 299 return ""; 300 } 301 302 function setValue(f, n, v) { 303 if (f.elements[n].type == "text") 304 f.elements[n].value = v; 305 else 306 selectByValue(f, n, v, true, true); 307 } 308 309 function setupBox(f, ce, fp, pr, sf, b) { 310 if (typeof(b) == "undefined") 311 b = ['Top', 'Right', 'Bottom', 'Left']; 312 313 if (isSame(ce, pr, sf, b)) { 314 f.elements[fp + "_same"].checked = true; 315 316 setValue(f, fp + "_top", getNum(ce.style[pr + b[0] + sf])); 317 f.elements[fp + "_top"].disabled = false; 318 319 f.elements[fp + "_right"].value = ""; 320 f.elements[fp + "_right"].disabled = true; 321 f.elements[fp + "_bottom"].value = ""; 322 f.elements[fp + "_bottom"].disabled = true; 323 f.elements[fp + "_left"].value = ""; 324 f.elements[fp + "_left"].disabled = true; 325 326 if (f.elements[fp + "_top_measurement"]) { 327 selectByValue(f, fp + '_top_measurement', getMeasurement(ce.style[pr + b[0] + sf])); 328 f.elements[fp + "_left_measurement"].disabled = true; 329 f.elements[fp + "_bottom_measurement"].disabled = true; 330 f.elements[fp + "_right_measurement"].disabled = true; 331 } 332 } else { 333 f.elements[fp + "_same"].checked = false; 334 335 setValue(f, fp + "_top", getNum(ce.style[pr + b[0] + sf])); 336 f.elements[fp + "_top"].disabled = false; 337 338 setValue(f, fp + "_right", getNum(ce.style[pr + b[1] + sf])); 339 f.elements[fp + "_right"].disabled = false; 340 341 setValue(f, fp + "_bottom", getNum(ce.style[pr + b[2] + sf])); 342 f.elements[fp + "_bottom"].disabled = false; 343 344 setValue(f, fp + "_left", getNum(ce.style[pr + b[3] + sf])); 345 f.elements[fp + "_left"].disabled = false; 346 347 if (f.elements[fp + "_top_measurement"]) { 348 selectByValue(f, fp + '_top_measurement', getMeasurement(ce.style[pr + b[0] + sf])); 349 selectByValue(f, fp + '_right_measurement', getMeasurement(ce.style[pr + b[1] + sf])); 350 selectByValue(f, fp + '_bottom_measurement', getMeasurement(ce.style[pr + b[2] + sf])); 351 selectByValue(f, fp + '_left_measurement', getMeasurement(ce.style[pr + b[3] + sf])); 352 f.elements[fp + "_left_measurement"].disabled = false; 353 f.elements[fp + "_bottom_measurement"].disabled = false; 354 f.elements[fp + "_right_measurement"].disabled = false; 355 } 356 } 357 } 358 359 function isSame(e, pr, sf, b) { 360 var a = [], i, x; 361 362 if (typeof(b) == "undefined") 363 b = ['Top', 'Right', 'Bottom', 'Left']; 364 365 if (typeof(sf) == "undefined" || sf == null) 366 sf = ""; 367 368 a[0] = e.style[pr + b[0] + sf]; 369 a[1] = e.style[pr + b[1] + sf]; 370 a[2] = e.style[pr + b[2] + sf]; 371 a[3] = e.style[pr + b[3] + sf]; 372 373 for (i=0; i<a.length; i++) { 374 if (a[i] == null) 375 return false; 376 377 for (x=0; x<a.length; x++) { 378 if (a[x] != a[i]) 379 return false; 380 } 381 } 382 383 return true; 384 }; 385 386 function hasEqualValues(a) { 387 var i, x; 388 389 for (i=0; i<a.length; i++) { 390 if (a[i] == null) 391 return false; 392 393 for (x=0; x<a.length; x++) { 394 if (a[x] != a[i]) 395 return false; 396 } 397 } 398 399 return true; 400 } 401 402 function toggleApplyAction() { 403 applyActionIsInsert = ! applyActionIsInsert; 404 } 405 406 function applyAction() { 407 var ce = document.getElementById('container'), ed = tinyMCEPopup.editor; 408 409 generateCSS(); 410 411 tinyMCEPopup.restoreSelection(); 412 413 var newStyles = tinyMCEPopup.editor.dom.parseStyle(ce.style.cssText); 414 415 if (applyActionIsInsert) { 416 ed.formatter.register('plugin_style', { 417 inline: 'span', styles: existingStyles 418 }); 419 ed.formatter.remove('plugin_style'); 420 421 ed.formatter.register('plugin_style', { 422 inline: 'span', styles: newStyles 423 }); 424 ed.formatter.apply('plugin_style'); 425 } else { 426 var nodes; 427 428 if (tinyMCEPopup.getWindowArg('applyStyleToBlocks')) { 429 nodes = ed.selection.getSelectedBlocks(); 430 } 431 else { 432 nodes = ed.selection.getNode(); 433 } 434 435 ed.dom.setAttrib(nodes, 'style', tinyMCEPopup.editor.dom.serializeStyle(newStyles)); 436 } 437 } 438 439 function updateAction() { 440 applyAction(); 441 tinyMCEPopup.close(); 442 } 443 444 function generateCSS() { 445 var ce = document.getElementById('container'), f = document.forms[0], num = new RegExp('[0-9]+', 'g'), s, t; 446 447 ce.style.cssText = ""; 448 449 // Build text styles 450 ce.style.fontFamily = f.text_font.value; 451 ce.style.fontSize = f.text_size.value + (isNum(f.text_size.value) ? (f.text_size_measurement.value || 'px') : ""); 452 ce.style.fontStyle = f.text_style.value; 453 ce.style.lineHeight = f.text_lineheight.value + (isNum(f.text_lineheight.value) ? f.text_lineheight_measurement.value : ""); 454 ce.style.textTransform = f.text_case.value; 455 ce.style.fontWeight = f.text_weight.value; 456 ce.style.fontVariant = f.text_variant.value; 457 ce.style.color = f.text_color.value; 458 459 s = ""; 460 s += f.text_underline.checked ? " underline" : ""; 461 s += f.text_overline.checked ? " overline" : ""; 462 s += f.text_linethrough.checked ? " line-through" : ""; 463 s += f.text_blink.checked ? " blink" : ""; 464 s = s.length > 0 ? s.substring(1) : s; 465 466 if (f.text_none.checked) 467 s = "none"; 468 469 ce.style.textDecoration = s; 470 471 // Build background styles 472 473 ce.style.backgroundColor = f.background_color.value; 474 ce.style.backgroundImage = f.background_image.value != "" ? "url(" + f.background_image.value + ")" : ""; 475 ce.style.backgroundRepeat = f.background_repeat.value; 476 ce.style.backgroundAttachment = f.background_attachment.value; 477 478 if (f.background_hpos.value != "") { 479 s = ""; 480 s += f.background_hpos.value + (isNum(f.background_hpos.value) ? f.background_hpos_measurement.value : "") + " "; 481 s += f.background_vpos.value + (isNum(f.background_vpos.value) ? f.background_vpos_measurement.value : ""); 482 ce.style.backgroundPosition = s; 483 } 484 485 // Build block styles 486 487 ce.style.wordSpacing = f.block_wordspacing.value + (isNum(f.block_wordspacing.value) ? f.block_wordspacing_measurement.value : ""); 488 ce.style.letterSpacing = f.block_letterspacing.value + (isNum(f.block_letterspacing.value) ? f.block_letterspacing_measurement.value : ""); 489 ce.style.verticalAlign = f.block_vertical_alignment.value; 490 ce.style.textAlign = f.block_text_align.value; 491 ce.style.textIndent = f.block_text_indent.value + (isNum(f.block_text_indent.value) ? f.block_text_indent_measurement.value : ""); 492 ce.style.whiteSpace = f.block_whitespace.value; 493 ce.style.display = f.block_display.value; 494 495 // Build box styles 496 497 ce.style.width = f.box_width.value + (isNum(f.box_width.value) ? f.box_width_measurement.value : ""); 498 ce.style.height = f.box_height.value + (isNum(f.box_height.value) ? f.box_height_measurement.value : ""); 499 ce.style.styleFloat = f.box_float.value; 500 ce.style.cssFloat = f.box_float.value; 501 502 ce.style.clear = f.box_clear.value; 503 504 if (!f.box_padding_same.checked) { 505 ce.style.paddingTop = f.box_padding_top.value + (isNum(f.box_padding_top.value) ? f.box_padding_top_measurement.value : ""); 506 ce.style.paddingRight = f.box_padding_right.value + (isNum(f.box_padding_right.value) ? f.box_padding_right_measurement.value : ""); 507 ce.style.paddingBottom = f.box_padding_bottom.value + (isNum(f.box_padding_bottom.value) ? f.box_padding_bottom_measurement.value : ""); 508 ce.style.paddingLeft = f.box_padding_left.value + (isNum(f.box_padding_left.value) ? f.box_padding_left_measurement.value : ""); 509 } else 510 ce.style.padding = f.box_padding_top.value + (isNum(f.box_padding_top.value) ? f.box_padding_top_measurement.value : ""); 511 512 if (!f.box_margin_same.checked) { 513 ce.style.marginTop = f.box_margin_top.value + (isNum(f.box_margin_top.value) ? f.box_margin_top_measurement.value : ""); 514 ce.style.marginRight = f.box_margin_right.value + (isNum(f.box_margin_right.value) ? f.box_margin_right_measurement.value : ""); 515 ce.style.marginBottom = f.box_margin_bottom.value + (isNum(f.box_margin_bottom.value) ? f.box_margin_bottom_measurement.value : ""); 516 ce.style.marginLeft = f.box_margin_left.value + (isNum(f.box_margin_left.value) ? f.box_margin_left_measurement.value : ""); 517 } else 518 ce.style.margin = f.box_margin_top.value + (isNum(f.box_margin_top.value) ? f.box_margin_top_measurement.value : ""); 519 520 // Build border styles 521 522 if (!f.border_style_same.checked) { 523 ce.style.borderTopStyle = f.border_style_top.value; 524 ce.style.borderRightStyle = f.border_style_right.value; 525 ce.style.borderBottomStyle = f.border_style_bottom.value; 526 ce.style.borderLeftStyle = f.border_style_left.value; 527 } else 528 ce.style.borderStyle = f.border_style_top.value; 529 530 if (!f.border_width_same.checked) { 531 ce.style.borderTopWidth = f.border_width_top.value + (isNum(f.border_width_top.value) ? f.border_width_top_measurement.value : ""); 532 ce.style.borderRightWidth = f.border_width_right.value + (isNum(f.border_width_right.value) ? f.border_width_right_measurement.value : ""); 533 ce.style.borderBottomWidth = f.border_width_bottom.value + (isNum(f.border_width_bottom.value) ? f.border_width_bottom_measurement.value : ""); 534 ce.style.borderLeftWidth = f.border_width_left.value + (isNum(f.border_width_left.value) ? f.border_width_left_measurement.value : ""); 535 } else 536 ce.style.borderWidth = f.border_width_top.value + (isNum(f.border_width_top.value) ? f.border_width_top_measurement.value : ""); 537 538 if (!f.border_color_same.checked) { 539 ce.style.borderTopColor = f.border_color_top.value; 540 ce.style.borderRightColor = f.border_color_right.value; 541 ce.style.borderBottomColor = f.border_color_bottom.value; 542 ce.style.borderLeftColor = f.border_color_left.value; 543 } else 544 ce.style.borderColor = f.border_color_top.value; 545 546 // Build list styles 547 548 ce.style.listStyleType = f.list_type.value; 549 ce.style.listStylePosition = f.list_position.value; 550 ce.style.listStyleImage = f.list_bullet_image.value != "" ? "url(" + f.list_bullet_image.value + ")" : ""; 551 552 // Build positioning styles 553 554 ce.style.position = f.positioning_type.value; 555 ce.style.visibility = f.positioning_visibility.value; 556 557 if (ce.style.width == "") 558 ce.style.width = f.positioning_width.value + (isNum(f.positioning_width.value) ? f.positioning_width_measurement.value : ""); 559 560 if (ce.style.height == "") 561 ce.style.height = f.positioning_height.value + (isNum(f.positioning_height.value) ? f.positioning_height_measurement.value : ""); 562 563 ce.style.zIndex = f.positioning_zindex.value; 564 ce.style.overflow = f.positioning_overflow.value; 565 566 if (!f.positioning_placement_same.checked) { 567 ce.style.top = f.positioning_placement_top.value + (isNum(f.positioning_placement_top.value) ? f.positioning_placement_top_measurement.value : ""); 568 ce.style.right = f.positioning_placement_right.value + (isNum(f.positioning_placement_right.value) ? f.positioning_placement_right_measurement.value : ""); 569 ce.style.bottom = f.positioning_placement_bottom.value + (isNum(f.positioning_placement_bottom.value) ? f.positioning_placement_bottom_measurement.value : ""); 570 ce.style.left = f.positioning_placement_left.value + (isNum(f.positioning_placement_left.value) ? f.positioning_placement_left_measurement.value : ""); 571 } else { 572 s = f.positioning_placement_top.value + (isNum(f.positioning_placement_top.value) ? f.positioning_placement_top_measurement.value : ""); 573 ce.style.top = s; 574 ce.style.right = s; 575 ce.style.bottom = s; 576 ce.style.left = s; 577 } 578 579 if (!f.positioning_clip_same.checked) { 580 s = "rect("; 581 s += (isNum(f.positioning_clip_top.value) ? f.positioning_clip_top.value + f.positioning_clip_top_measurement.value : "auto") + " "; 582 s += (isNum(f.positioning_clip_right.value) ? f.positioning_clip_right.value + f.positioning_clip_right_measurement.value : "auto") + " "; 583 s += (isNum(f.positioning_clip_bottom.value) ? f.positioning_clip_bottom.value + f.positioning_clip_bottom_measurement.value : "auto") + " "; 584 s += (isNum(f.positioning_clip_left.value) ? f.positioning_clip_left.value + f.positioning_clip_left_measurement.value : "auto"); 585 s += ")"; 586 587 if (s != "rect(auto auto auto auto)") 588 ce.style.clip = s; 589 } else { 590 s = "rect("; 591 t = isNum(f.positioning_clip_top.value) ? f.positioning_clip_top.value + f.positioning_clip_top_measurement.value : "auto"; 592 s += t + " "; 593 s += t + " "; 594 s += t + " "; 595 s += t + ")"; 596 597 if (s != "rect(auto auto auto auto)") 598 ce.style.clip = s; 599 } 600 601 ce.style.cssText = ce.style.cssText; 602 } 603 604 function isNum(s) { 605 return new RegExp('[0-9]+', 'g').test(s); 606 } 607 608 function showDisabledControls() { 609 var f = document.forms, i, a; 610 611 for (i=0; i<f.length; i++) { 612 for (a=0; a<f[i].elements.length; a++) { 613 if (f[i].elements[a].disabled) 614 tinyMCEPopup.editor.dom.addClass(f[i].elements[a], "disabled"); 615 else 616 tinyMCEPopup.editor.dom.removeClass(f[i].elements[a], "disabled"); 617 } 618 } 619 } 620 621 function fillSelect(f, s, param, dval, sep, em) { 622 var i, ar, p, se; 623 624 f = document.forms[f]; 625 sep = typeof(sep) == "undefined" ? ";" : sep; 626 627 if (em) 628 addSelectValue(f, s, "", ""); 629 630 ar = tinyMCEPopup.getParam(param, dval).split(sep); 631 for (i=0; i<ar.length; i++) { 632 se = false; 633 634 if (ar[i].charAt(0) == '+') { 635 ar[i] = ar[i].substring(1); 636 se = true; 637 } 638 639 p = ar[i].split('='); 640 641 if (p.length > 1) { 642 addSelectValue(f, s, p[0], p[1]); 643 644 if (se) 645 selectByValue(f, s, p[1]); 646 } else { 647 addSelectValue(f, s, p[0], p[0]); 648 649 if (se) 650 selectByValue(f, s, p[0]); 651 } 652 } 653 } 654 655 function toggleSame(ce, pre) { 656 var el = document.forms[0].elements, i; 657 658 if (ce.checked) { 659 el[pre + "_top"].disabled = false; 660 el[pre + "_right"].disabled = true; 661 el[pre + "_bottom"].disabled = true; 662 el[pre + "_left"].disabled = true; 663 664 if (el[pre + "_top_measurement"]) { 665 el[pre + "_top_measurement"].disabled = false; 666 el[pre + "_right_measurement"].disabled = true; 667 el[pre + "_bottom_measurement"].disabled = true; 668 el[pre + "_left_measurement"].disabled = true; 669 } 670 } else { 671 el[pre + "_top"].disabled = false; 672 el[pre + "_right"].disabled = false; 673 el[pre + "_bottom"].disabled = false; 674 el[pre + "_left"].disabled = false; 675 676 if (el[pre + "_top_measurement"]) { 677 el[pre + "_top_measurement"].disabled = false; 678 el[pre + "_right_measurement"].disabled = false; 679 el[pre + "_bottom_measurement"].disabled = false; 680 el[pre + "_left_measurement"].disabled = false; 681 } 682 } 683 684 showDisabledControls(); 685 } 686 687 function synch(fr, to) { 688 var f = document.forms[0]; 689 690 f.elements[to].value = f.elements[fr].value; 691 692 if (f.elements[fr + "_measurement"]) 693 selectByValue(f, to + "_measurement", f.elements[fr + "_measurement"].value); 694 } 695 696 function updateTextDecorations(){ 697 var el = document.forms[0].elements; 698 699 var textDecorations = ["text_underline", "text_overline", "text_linethrough", "text_blink"]; 700 var noneChecked = el["text_none"].checked; 701 tinymce.each(textDecorations, function(id) { 702 el[id].disabled = noneChecked; 703 if (noneChecked) { 704 el[id].checked = false; 705 } 706 }); 707 } 708 709 tinyMCEPopup.onInit.add(init);
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Aug 11 10:00:09 2016 | Cross-referenced by PHPXref 0.7.1 |