props.js
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:29k
源码类别:

OA系统

开发平台:

Java

  1. var defaultFonts = "" + 
  2. "Arial, Helvetica, sans-serif=Arial, Helvetica, sans-serif;" + 
  3. "Times New Roman, Times, serif=Times New Roman, Times, serif;" + 
  4. "Courier New, Courier, mono=Courier New, Courier, mono;" + 
  5. "Times New Roman, Times, serif=Times New Roman, Times, serif;" + 
  6. "Georgia, Times New Roman, Times, serif=Georgia, Times New Roman, Times, serif;" + 
  7. "Verdana, Arial, Helvetica, sans-serif=Verdana, Arial, Helvetica, sans-serif;" + 
  8. "Geneva, Arial, Helvetica, sans-serif=Geneva, Arial, Helvetica, sans-serif";
  9. var defaultSizes = "9;10;12;14;16;18;24;xx-small;x-small;small;medium;large;x-large;xx-large;smaller;larger";
  10. var defaultMeasurement = "+pixels=px;points=pt;in;cm;mm;picas;ems;exs;%";
  11. var defaultSpacingMeasurement = "pixels=px;points=pt;in;cm;mm;picas;+ems;exs;%";
  12. var defaultIndentMeasurement = "pixels=px;+points=pt;in;cm;mm;picas;ems;exs;%";
  13. var defaultWeight = "normal;bold;bolder;lighter;100;200;300;400;500;600;700;800;900";
  14. var defaultTextStyle = "normal;italic;oblique";
  15. var defaultVariant = "normal;small-caps";
  16. var defaultLineHeight = "normal";
  17. var defaultAttachment = "fixed;scroll";
  18. var defaultRepeat = "no-repeat;repeat;repeat-x;repeat-y";
  19. var defaultPosH = "left;center;right";
  20. var defaultPosV = "top;center;bottom";
  21. var defaultVAlign = "baseline;sub;super;top;text-top;middle;bottom;text-bottom";
  22. 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";
  23. var defaultBorderStyle = "none;solid;dashed;dotted;double;groove;ridge;inset;outset";
  24. var defaultBorderWidth = "thin;medium;thick";
  25. var defaultListType = "disc;circle;square;decimal;lower-roman;upper-roman;lower-alpha;upper-alpha;none";
  26. function init() {
  27. var ce = document.getElementById('container'), h;
  28. ce.style.cssText = tinyMCEPopup.getWindowArg('style_text');
  29. h = getBrowserHTML('background_image_browser','background_image','image','advimage');
  30. document.getElementById("background_image_browser").innerHTML = h;
  31. tinyMCEPopup.resizeToInnerSize();
  32. document.getElementById('text_color_pickcontainer').innerHTML = getColorPickerHTML('text_color_pick','text_color');
  33. document.getElementById('background_color_pickcontainer').innerHTML = getColorPickerHTML('background_color_pick','background_color');
  34. document.getElementById('border_color_top_pickcontainer').innerHTML = getColorPickerHTML('border_color_top_pick','border_color_top');
  35. document.getElementById('border_color_right_pickcontainer').innerHTML = getColorPickerHTML('border_color_right_pick','border_color_right');
  36. document.getElementById('border_color_bottom_pickcontainer').innerHTML = getColorPickerHTML('border_color_bottom_pick','border_color_bottom');
  37. document.getElementById('border_color_left_pickcontainer').innerHTML = getColorPickerHTML('border_color_left_pick','border_color_left');
  38. fillSelect(0, 'text_font', 'style_font', defaultFonts, ';', true);
  39. fillSelect(0, 'text_size', 'style_font_size', defaultSizes, ';', true);
  40. fillSelect(0, 'text_size_measurement', 'style_font_size_measurement', defaultMeasurement, ';', true);
  41. fillSelect(0, 'text_case', 'style_text_case', "capitalize;uppercase;lowercase", ';', true);
  42. fillSelect(0, 'text_weight', 'style_font_weight', defaultWeight, ';', true);
  43. fillSelect(0, 'text_style', 'style_font_style', defaultTextStyle, ';', true);
  44. fillSelect(0, 'text_variant', 'style_font_variant', defaultVariant, ';', true);
  45. fillSelect(0, 'text_lineheight', 'style_font_line_height', defaultLineHeight, ';', true);
  46. fillSelect(0, 'text_lineheight_measurement', 'style_font_line_height_measurement', defaultMeasurement, ';', true);
  47. fillSelect(0, 'background_attachment', 'style_background_attachment', defaultAttachment, ';', true);
  48. fillSelect(0, 'background_repeat', 'style_background_repeat', defaultRepeat, ';', true);
  49. fillSelect(0, 'background_hpos_measurement', 'style_background_hpos_measurement', defaultMeasurement, ';', true);
  50. fillSelect(0, 'background_vpos_measurement', 'style_background_vpos_measurement', defaultMeasurement, ';', true);
  51. fillSelect(0, 'background_hpos', 'style_background_hpos', defaultPosH, ';', true);
  52. fillSelect(0, 'background_vpos', 'style_background_vpos', defaultPosV, ';', true);
  53. fillSelect(0, 'block_wordspacing', 'style_wordspacing', 'normal', ';', true);
  54. fillSelect(0, 'block_wordspacing_measurement', 'style_wordspacing_measurement', defaultSpacingMeasurement, ';', true);
  55. fillSelect(0, 'block_letterspacing', 'style_letterspacing', 'normal', ';', true);
  56. fillSelect(0, 'block_letterspacing_measurement', 'style_letterspacing_measurement', defaultSpacingMeasurement, ';', true);
  57. fillSelect(0, 'block_vertical_alignment', 'style_vertical_alignment', defaultVAlign, ';', true);
  58. fillSelect(0, 'block_text_align', 'style_text_align', "left;right;center;justify", ';', true);
  59. fillSelect(0, 'block_whitespace', 'style_whitespace', "normal;pre;nowrap", ';', true);
  60. fillSelect(0, 'block_display', 'style_display', defaultDisplay, ';', true);
  61. fillSelect(0, 'block_text_indent_measurement', 'style_text_indent_measurement', defaultIndentMeasurement, ';', true);
  62. fillSelect(0, 'box_width_measurement', 'style_box_width_measurement', defaultMeasurement, ';', true);
  63. fillSelect(0, 'box_height_measurement', 'style_box_height_measurement', defaultMeasurement, ';', true);
  64. fillSelect(0, 'box_float', 'style_float', 'left;right;none', ';', true);
  65. fillSelect(0, 'box_clear', 'style_clear', 'left;right;both;none', ';', true);
  66. fillSelect(0, 'box_padding_left_measurement', 'style_padding_left_measurement', defaultMeasurement, ';', true);
  67. fillSelect(0, 'box_padding_top_measurement', 'style_padding_top_measurement', defaultMeasurement, ';', true);
  68. fillSelect(0, 'box_padding_bottom_measurement', 'style_padding_bottom_measurement', defaultMeasurement, ';', true);
  69. fillSelect(0, 'box_padding_right_measurement', 'style_padding_right_measurement', defaultMeasurement, ';', true);
  70. fillSelect(0, 'box_margin_left_measurement', 'style_margin_left_measurement', defaultMeasurement, ';', true);
  71. fillSelect(0, 'box_margin_top_measurement', 'style_margin_top_measurement', defaultMeasurement, ';', true);
  72. fillSelect(0, 'box_margin_bottom_measurement', 'style_margin_bottom_measurement', defaultMeasurement, ';', true);
  73. fillSelect(0, 'box_margin_right_measurement', 'style_margin_right_measurement', defaultMeasurement, ';', true);
  74. fillSelect(0, 'border_style_top', 'style_border_style_top', defaultBorderStyle, ';', true);
  75. fillSelect(0, 'border_style_right', 'style_border_style_right', defaultBorderStyle, ';', true);
  76. fillSelect(0, 'border_style_bottom', 'style_border_style_bottom', defaultBorderStyle, ';', true);
  77. fillSelect(0, 'border_style_left', 'style_border_style_left', defaultBorderStyle, ';', true);
  78. fillSelect(0, 'border_width_top', 'style_border_width_top', defaultBorderWidth, ';', true);
  79. fillSelect(0, 'border_width_right', 'style_border_width_right', defaultBorderWidth, ';', true);
  80. fillSelect(0, 'border_width_bottom', 'style_border_width_bottom', defaultBorderWidth, ';', true);
  81. fillSelect(0, 'border_width_left', 'style_border_width_left', defaultBorderWidth, ';', true);
  82. fillSelect(0, 'border_width_top_measurement', 'style_border_width_top_measurement', defaultMeasurement, ';', true);
  83. fillSelect(0, 'border_width_right_measurement', 'style_border_width_right_measurement', defaultMeasurement, ';', true);
  84. fillSelect(0, 'border_width_bottom_measurement', 'style_border_width_bottom_measurement', defaultMeasurement, ';', true);
  85. fillSelect(0, 'border_width_left_measurement', 'style_border_width_left_measurement', defaultMeasurement, ';', true);
  86. fillSelect(0, 'list_type', 'style_list_type', defaultListType, ';', true);
  87. fillSelect(0, 'list_position', 'style_list_position', "inside;outside", ';', true);
  88. fillSelect(0, 'positioning_type', 'style_positioning_type', "absolute;relative;static", ';', true);
  89. fillSelect(0, 'positioning_visibility', 'style_positioning_visibility', "inherit;visible;hidden", ';', true);
  90. fillSelect(0, 'positioning_width_measurement', 'style_positioning_width_measurement', defaultMeasurement, ';', true);
  91. fillSelect(0, 'positioning_height_measurement', 'style_positioning_height_measurement', defaultMeasurement, ';', true);
  92. fillSelect(0, 'positioning_overflow', 'style_positioning_overflow', "visible;hidden;scroll;auto", ';', true);
  93. fillSelect(0, 'positioning_placement_top_measurement', 'style_positioning_placement_top_measurement', defaultMeasurement, ';', true);
  94. fillSelect(0, 'positioning_placement_right_measurement', 'style_positioning_placement_right_measurement', defaultMeasurement, ';', true);
  95. fillSelect(0, 'positioning_placement_bottom_measurement', 'style_positioning_placement_bottom_measurement', defaultMeasurement, ';', true);
  96. fillSelect(0, 'positioning_placement_left_measurement', 'style_positioning_placement_left_measurement', defaultMeasurement, ';', true);
  97. fillSelect(0, 'positioning_clip_top_measurement', 'style_positioning_clip_top_measurement', defaultMeasurement, ';', true);
  98. fillSelect(0, 'positioning_clip_right_measurement', 'style_positioning_clip_right_measurement', defaultMeasurement, ';', true);
  99. fillSelect(0, 'positioning_clip_bottom_measurement', 'style_positioning_clip_bottom_measurement', defaultMeasurement, ';', true);
  100. fillSelect(0, 'positioning_clip_left_measurement', 'style_positioning_clip_left_measurement', defaultMeasurement, ';', true);
  101. TinyMCE_EditableSelects.init();
  102. setupFormData();
  103. showDisabledControls();
  104. }
  105. function setupFormData() {
  106. var ce = document.getElementById('container'), f = document.forms[0], s, b, i;
  107. // Setup text fields
  108. selectByValue(f, 'text_font', ce.style.fontFamily, true, true);
  109. selectByValue(f, 'text_size', getNum(ce.style.fontSize), true, true);
  110. selectByValue(f, 'text_size_measurement', getMeasurement(ce.style.fontSize));
  111. selectByValue(f, 'text_weight', ce.style.fontWeight, true, true);
  112. selectByValue(f, 'text_style', ce.style.fontStyle, true, true);
  113. selectByValue(f, 'text_lineheight', getNum(ce.style.lineHeight), true, true);
  114. selectByValue(f, 'text_lineheight_measurement', getMeasurement(ce.style.lineHeight));
  115. selectByValue(f, 'text_case', ce.style.textTransform, true, true);
  116. selectByValue(f, 'text_variant', ce.style.fontVariant, true, true);
  117. f.text_color.value = ce.style.color;
  118. updateColor('text_color_pick', 'text_color');
  119. f.text_underline.checked = inStr(ce.style.textDecoration, 'underline');
  120. f.text_overline.checked = inStr(ce.style.textDecoration, 'overline');
  121. f.text_linethrough.checked = inStr(ce.style.textDecoration, 'line-through');
  122. f.text_blink.checked = inStr(ce.style.textDecoration, 'blink');
  123. // Setup background fields
  124. f.background_color.value = ce.style.backgroundColor;
  125. updateColor('background_color_pick', 'background_color');
  126. f.background_image.value = ce.style.backgroundImage.replace(new RegExp("url\('?([^']*)'?\)", 'gi'), "$1");
  127. selectByValue(f, 'background_repeat', ce.style.backgroundRepeat, true, true);
  128. selectByValue(f, 'background_attachment', ce.style.backgroundAttachment, true, true);
  129. selectByValue(f, 'background_hpos', getNum(getVal(ce.style.backgroundPosition, 0)), true, true);
  130. selectByValue(f, 'background_hpos_measurement', getMeasurement(getVal(ce.style.backgroundPosition, 0)));
  131. selectByValue(f, 'background_vpos', getNum(getVal(ce.style.backgroundPosition, 1)), true, true);
  132. selectByValue(f, 'background_vpos_measurement', getMeasurement(getVal(ce.style.backgroundPosition, 1)));
  133. // Setup block fields
  134. selectByValue(f, 'block_wordspacing', getNum(ce.style.wordSpacing), true, true);
  135. selectByValue(f, 'block_wordspacing_measurement', getMeasurement(ce.style.wordSpacing));
  136. selectByValue(f, 'block_letterspacing', getNum(ce.style.letterSpacing), true, true);
  137. selectByValue(f, 'block_letterspacing_measurement', getMeasurement(ce.style.letterSpacing));
  138. selectByValue(f, 'block_vertical_alignment', ce.style.verticalAlign, true, true);
  139. selectByValue(f, 'block_text_align', ce.style.textAlign, true, true);
  140. f.block_text_indent.value = getNum(ce.style.textIndent);
  141. selectByValue(f, 'block_text_indent_measurement', getMeasurement(ce.style.textIndent));
  142. selectByValue(f, 'block_whitespace', ce.style.whiteSpace, true, true);
  143. selectByValue(f, 'block_display', ce.style.display, true, true);
  144. // Setup box fields
  145. f.box_width.value = getNum(ce.style.width);
  146. selectByValue(f, 'box_width_measurement', getMeasurement(ce.style.width));
  147. f.box_height.value = getNum(ce.style.height);
  148. selectByValue(f, 'box_height_measurement', getMeasurement(ce.style.height));
  149. if (tinyMCE.isGecko)
  150. selectByValue(f, 'box_float', ce.style.cssFloat, true, true);
  151. else
  152. selectByValue(f, 'box_float', ce.style.styleFloat, true, true);
  153. selectByValue(f, 'box_clear', ce.style.clear, true, true);
  154. setupBox(f, ce, 'box_padding', 'padding', '');
  155. setupBox(f, ce, 'box_margin', 'margin', '');
  156. // Setup border fields
  157. setupBox(f, ce, 'border_style', 'border', 'Style');
  158. setupBox(f, ce, 'border_width', 'border', 'Width');
  159. setupBox(f, ce, 'border_color', 'border', 'Color');
  160. updateColor('border_color_top_pick', 'border_color_top');
  161. updateColor('border_color_right_pick', 'border_color_right');
  162. updateColor('border_color_bottom_pick', 'border_color_bottom');
  163. updateColor('border_color_left_pick', 'border_color_left');
  164. // Setup list fields
  165. selectByValue(f, 'list_type', ce.style.listStyleType, true, true);
  166. selectByValue(f, 'list_position', ce.style.listStylePosition, true, true);
  167. f.list_bullet_image.value = ce.style.listStyleImage.replace(new RegExp("url\('?([^']*)'?\)", 'gi'), "$1");
  168. // Setup box fields
  169. selectByValue(f, 'positioning_type', ce.style.position, true, true);
  170. selectByValue(f, 'positioning_visibility', ce.style.visibility, true, true);
  171. selectByValue(f, 'positioning_overflow', ce.style.overflow, true, true);
  172. f.positioning_zindex.value = ce.style.zIndex ? ce.style.zIndex : "";
  173. f.positioning_width.value = getNum(ce.style.width);
  174. selectByValue(f, 'positioning_width_measurement', getMeasurement(ce.style.width));
  175. f.positioning_height.value = getNum(ce.style.height);
  176. selectByValue(f, 'positioning_height_measurement', getMeasurement(ce.style.height));
  177. setupBox(f, ce, 'positioning_placement', '', '', new Array('top', 'right', 'bottom', 'left'));
  178. s = ce.style.clip.replace(new RegExp("rect\('?([^']*)'?\)", 'gi'), "$1");
  179. s = s.replace(/,/g, ' ');
  180. if (!hasEqualValues(new Array(getVal(s, 0), getVal(s, 1), getVal(s, 2), getVal(s, 3)))) {
  181. f.positioning_clip_top.value = getNum(getVal(s, 0));
  182. selectByValue(f, 'positioning_clip_top_measurement', getMeasurement(getVal(s, 0)));
  183. f.positioning_clip_right.value = getNum(getVal(s, 1));
  184. selectByValue(f, 'positioning_clip_right_measurement', getMeasurement(getVal(s, 1)));
  185. f.positioning_clip_bottom.value = getNum(getVal(s, 2));
  186. selectByValue(f, 'positioning_clip_bottom_measurement', getMeasurement(getVal(s, 2)));
  187. f.positioning_clip_left.value = getNum(getVal(s, 3));
  188. selectByValue(f, 'positioning_clip_left_measurement', getMeasurement(getVal(s, 3)));
  189. } else {
  190. f.positioning_clip_top.value = getNum(getVal(s, 0));
  191. selectByValue(f, 'positioning_clip_top_measurement', getMeasurement(getVal(s, 0)));
  192. f.positioning_clip_right.value = f.positioning_clip_bottom.value = f.positioning_clip_left.value;
  193. }
  194. // setupBox(f, ce, '', 'border', 'Color');
  195. }
  196. function getMeasurement(s) {
  197. return s.replace(/^([0-9]+)(.*)$/, "$2");
  198. }
  199. function getNum(s) {
  200. if (new RegExp('^[0-9]+[a-z%]+$', 'gi').test(s))
  201. return s.replace(/[^0-9]/g, '');
  202. return s;
  203. }
  204. function inStr(s, n) {
  205. return new RegExp(n, 'gi').test(s);
  206. }
  207. function getVal(s, i) {
  208. var a = tinyMCE.explode(' ', s);
  209. if (a.length > 1)
  210. return a[i];
  211. return "";
  212. }
  213. function setValue(f, n, v) {
  214. if (f.elements[n].type == "text")
  215. f.elements[n].value = v;
  216. else
  217. selectByValue(f, n, v, true, true);
  218. }
  219. function setupBox(f, ce, fp, pr, sf, b) {
  220. if (typeof(b) == "undefined")
  221. b = new Array('Top', 'Right', 'Bottom', 'Left');
  222. if (isSame(ce, pr, sf, b)) {
  223. f.elements[fp + "_same"].checked = true;
  224. setValue(f, fp + "_top", getNum(ce.style[pr + b[0] + sf]));
  225. f.elements[fp + "_top"].disabled = false;
  226. f.elements[fp + "_right"].value = "";
  227. f.elements[fp + "_right"].disabled = true;
  228. f.elements[fp + "_bottom"].value = "";
  229. f.elements[fp + "_bottom"].disabled = true;
  230. f.elements[fp + "_left"].value = "";
  231. f.elements[fp + "_left"].disabled = true;
  232. if (f.elements[fp + "_top_measurement"]) {
  233. selectByValue(f, fp + '_top_measurement', getMeasurement(ce.style[pr + b[0] + sf]));
  234. f.elements[fp + "_left_measurement"].disabled = true;
  235. f.elements[fp + "_bottom_measurement"].disabled = true;
  236. f.elements[fp + "_right_measurement"].disabled = true;
  237. }
  238. } else {
  239. f.elements[fp + "_same"].checked = false;
  240. setValue(f, fp + "_top", getNum(ce.style[pr + b[0] + sf]));
  241. f.elements[fp + "_top"].disabled = false;
  242. setValue(f, fp + "_right", getNum(ce.style[pr + b[1] + sf]));
  243. f.elements[fp + "_right"].disabled = false;
  244. setValue(f, fp + "_bottom", getNum(ce.style[pr + b[2] + sf]));
  245. f.elements[fp + "_bottom"].disabled = false;
  246. setValue(f, fp + "_left", getNum(ce.style[pr + b[3] + sf]));
  247. f.elements[fp + "_left"].disabled = false;
  248. if (f.elements[fp + "_top_measurement"]) {
  249. selectByValue(f, fp + '_top_measurement', getMeasurement(ce.style[pr + b[0] + sf]));
  250. selectByValue(f, fp + '_right_measurement', getMeasurement(ce.style[pr + b[1] + sf]));
  251. selectByValue(f, fp + '_bottom_measurement', getMeasurement(ce.style[pr + b[2] + sf]));
  252. selectByValue(f, fp + '_left_measurement', getMeasurement(ce.style[pr + b[3] + sf]));
  253. f.elements[fp + "_left_measurement"].disabled = false;
  254. f.elements[fp + "_bottom_measurement"].disabled = false;
  255. f.elements[fp + "_right_measurement"].disabled = false;
  256. }
  257. }
  258. }
  259. function isSame(e, pr, sf, b) {
  260. var a = new Array(), i, x;
  261. if (typeof(b) == "undefined")
  262. b = new Array('Top', 'Right', 'Bottom', 'Left');
  263. if (typeof(sf) == "undefined" || sf == null)
  264. sf = "";
  265. a[0] = e.style[pr + b[0] + sf];
  266. a[1] = e.style[pr + b[1] + sf];
  267. a[2] = e.style[pr + b[2] + sf];
  268. a[3] = e.style[pr + b[3] + sf];
  269. for (i=0; i<a.length; i++) {
  270. if (a[i] == null)
  271. return false;
  272. for (x=0; x<a.length; x++) {
  273. if (a[x] != a[i])
  274. return false;
  275. }
  276. }
  277. return true;
  278. };
  279. function hasEqualValues(a) {
  280. var i, x;
  281. for (i=0; i<a.length; i++) {
  282. if (a[i] == null)
  283. return false;
  284. for (x=0; x<a.length; x++) {
  285. if (a[x] != a[i])
  286. return false;
  287. }
  288. }
  289. return true;
  290. }
  291. function applyAction() {
  292. var ce = document.getElementById('container');
  293. generateCSS();
  294. tinyMCEPopup.execCommand('mceSetElementStyle', false, tinyMCE.serializeStyle(tinyMCE.parseStyle(ce.style.cssText)));
  295. }
  296. function updateAction() {
  297. applyAction();
  298. tinyMCEPopup.close();
  299. }
  300. function generateCSS() {
  301. var ce = document.getElementById('container'), f = document.forms[0], num = new RegExp('[0-9]+', 'g'), s, t;
  302. ce.style.cssText = "";
  303. // Build text styles
  304. ce.style.fontFamily = f.text_font.value;
  305. ce.style.fontSize = f.text_size.value + (isNum(f.text_size.value) ? f.text_size_measurement.value : "");
  306. ce.style.fontStyle = f.text_style.value;
  307. ce.style.lineHeight = f.text_lineheight.value + (isNum(f.text_lineheight.value) ? f.text_lineheight_measurement.value : "");
  308. ce.style.textTransform = f.text_case.value;
  309. ce.style.fontWeight = f.text_weight.value;
  310. ce.style.fontVariant = f.text_variant.value;
  311. ce.style.color = f.text_color.value;
  312. s = "";
  313. s += f.text_underline.checked ? " underline" : "";
  314. s += f.text_overline.checked ? " overline" : "";
  315. s += f.text_linethrough.checked ? " line-through" : "";
  316. s += f.text_blink.checked ? " blink" : "";
  317. s = s.length > 0 ? s.substring(1) : s;
  318. if (f.text_none.checked)
  319. s = "none";
  320. ce.style.textDecoration = s;
  321. // Build background styles
  322. ce.style.backgroundColor = f.background_color.value;
  323. ce.style.backgroundImage = f.background_image.value != "" ? "url(" + f.background_image.value + ")" : "";
  324. ce.style.backgroundRepeat = f.background_repeat.value;
  325. ce.style.backgroundAttachment = f.background_attachment.value;
  326. if (f.background_hpos.value != "") {
  327. s = "";
  328. s += f.background_hpos.value + (isNum(f.background_hpos.value) ? f.background_hpos_measurement.value : "") + " ";
  329. s += f.background_vpos.value + (isNum(f.background_vpos.value) ? f.background_vpos_measurement.value : "");
  330. ce.style.backgroundPosition = s;
  331. }
  332. // Build block styles
  333. ce.style.wordSpacing = f.block_wordspacing.value + (isNum(f.block_wordspacing.value) ? f.block_wordspacing_measurement.value : "");
  334. ce.style.letterSpacing = f.block_letterspacing.value + (isNum(f.block_letterspacing.value) ? f.block_letterspacing_measurement.value : "");
  335. ce.style.verticalAlign = f.block_vertical_alignment.value;
  336. ce.style.textAlign = f.block_text_align.value;
  337. ce.style.textIndent = f.block_text_indent.value + (isNum(f.block_text_indent.value) ? f.block_text_indent_measurement.value : "");
  338. ce.style.whiteSpace = f.block_whitespace.value;
  339. ce.style.display = f.block_display.value;
  340. // Build box styles
  341. ce.style.width = f.box_width.value + (isNum(f.box_width.value) ? f.box_width_measurement.value : "");
  342. ce.style.height = f.box_height.value + (isNum(f.box_height.value) ? f.box_height_measurement.value : "");
  343. ce.style.styleFloat = f.box_float.value;
  344. if (tinyMCE.isGecko)
  345. ce.style.cssFloat = f.box_float.value;
  346. ce.style.clear = f.box_clear.value;
  347. if (!f.box_padding_same.checked) {
  348. ce.style.paddingTop = f.box_padding_top.value + (isNum(f.box_padding_top.value) ? f.box_padding_top_measurement.value : "");
  349. ce.style.paddingRight = f.box_padding_right.value + (isNum(f.box_padding_right.value) ? f.box_padding_right_measurement.value : "");
  350. ce.style.paddingBottom = f.box_padding_bottom.value + (isNum(f.box_padding_bottom.value) ? f.box_padding_bottom_measurement.value : "");
  351. ce.style.paddingLeft = f.box_padding_left.value + (isNum(f.box_padding_left.value) ? f.box_padding_left_measurement.value : "");
  352. } else
  353. ce.style.padding = f.box_padding_top.value + (isNum(f.box_padding_top.value) ? f.box_padding_top_measurement.value : "");
  354. if (!f.box_margin_same.checked) {
  355. ce.style.marginTop = f.box_margin_top.value + (isNum(f.box_margin_top.value) ? f.box_margin_top_measurement.value : "");
  356. ce.style.marginRight = f.box_margin_right.value + (isNum(f.box_margin_right.value) ? f.box_margin_right_measurement.value : "");
  357. ce.style.marginBottom = f.box_margin_bottom.value + (isNum(f.box_margin_bottom.value) ? f.box_margin_bottom_measurement.value : "");
  358. ce.style.marginLeft = f.box_margin_left.value + (isNum(f.box_margin_left.value) ? f.box_margin_left_measurement.value : "");
  359. } else
  360. ce.style.margin = f.box_margin_top.value + (isNum(f.box_margin_top.value) ? f.box_margin_top_measurement.value : "");
  361. // Build border styles
  362. if (!f.border_style_same.checked) {
  363. ce.style.borderTopStyle = f.border_style_top.value;
  364. ce.style.borderRightStyle = f.border_style_right.value;
  365. ce.style.borderBottomStyle = f.border_style_bottom.value;
  366. ce.style.borderLeftStyle = f.border_style_left.value;
  367. } else
  368. ce.style.borderStyle = f.border_style_top.value;
  369. if (!f.border_width_same.checked) {
  370. ce.style.borderTopWidth = f.border_width_top.value + (isNum(f.border_width_top.value) ? f.border_width_top_measurement.value : "");
  371. ce.style.borderRightWidth = f.border_width_right.value + (isNum(f.border_width_right.value) ? f.border_width_right_measurement.value : "");
  372. ce.style.borderBottomWidth = f.border_width_bottom.value + (isNum(f.border_width_bottom.value) ? f.border_width_bottom_measurement.value : "");
  373. ce.style.borderLeftWidth = f.border_width_left.value + (isNum(f.border_width_left.value) ? f.border_width_left_measurement.value : "");
  374. } else
  375. ce.style.borderWidth = f.border_width_top.value;
  376. if (!f.border_color_same.checked) {
  377. ce.style.borderTopColor = f.border_color_top.value;
  378. ce.style.borderRightColor = f.border_color_right.value;
  379. ce.style.borderBottomColor = f.border_color_bottom.value;
  380. ce.style.borderLeftColor = f.border_color_left.value;
  381. } else
  382. ce.style.borderColor = f.border_color_top.value;
  383. // Build list styles
  384. ce.style.listStyleType = f.list_type.value;
  385. ce.style.listStylePosition = f.list_position.value;
  386. ce.style.listStyleImage = f.list_bullet_image.value != "" ? "url(" + f.list_bullet_image.value + ")" : "";
  387. // Build positioning styles
  388. ce.style.position = f.positioning_type.value;
  389. ce.style.visibility = f.positioning_visibility.value;
  390. if (ce.style.width == "")
  391. ce.style.width = f.positioning_width.value + (isNum(f.positioning_width.value) ? f.positioning_width_measurement.value : "");
  392. if (ce.style.height == "")
  393. ce.style.height = f.positioning_height.value + (isNum(f.positioning_height.value) ? f.positioning_height_measurement.value : "");
  394. ce.style.zIndex = f.positioning_zindex.value;
  395. ce.style.overflow = f.positioning_overflow.value;
  396. if (!f.positioning_placement_same.checked) {
  397. ce.style.top = f.positioning_placement_top.value + (isNum(f.positioning_placement_top.value) ? f.positioning_placement_top_measurement.value : "");
  398. ce.style.right = f.positioning_placement_right.value + (isNum(f.positioning_placement_right.value) ? f.positioning_placement_right_measurement.value : "");
  399. ce.style.bottom = f.positioning_placement_bottom.value + (isNum(f.positioning_placement_bottom.value) ? f.positioning_placement_bottom_measurement.value : "");
  400. ce.style.left = f.positioning_placement_left.value + (isNum(f.positioning_placement_left.value) ? f.positioning_placement_left_measurement.value : "");
  401. } else {
  402. s = f.positioning_placement_top.value + (isNum(f.positioning_placement_top.value) ? f.positioning_placement_top_measurement.value : "");
  403. ce.style.top = s;
  404. ce.style.right = s;
  405. ce.style.bottom = s;
  406. ce.style.left = s;
  407. }
  408. if (!f.positioning_clip_same.checked) {
  409. s = "rect(";
  410. s += (isNum(f.positioning_clip_top.value) ? f.positioning_clip_top.value + f.positioning_clip_top_measurement.value : "auto") + " ";
  411. s += (isNum(f.positioning_clip_right.value) ? f.positioning_clip_right.value + f.positioning_clip_right_measurement.value : "auto") + " ";
  412. s += (isNum(f.positioning_clip_bottom.value) ? f.positioning_clip_bottom.value + f.positioning_clip_bottom_measurement.value : "auto") + " ";
  413. s += (isNum(f.positioning_clip_left.value) ? f.positioning_clip_left.value + f.positioning_clip_left_measurement.value : "auto");
  414. s += ")";
  415. if (s != "rect(auto auto auto auto)")
  416. ce.style.clip = s;
  417. } else {
  418. s = "rect(";
  419. t = isNum(f.positioning_clip_top.value) ? f.positioning_clip_top.value + f.positioning_clip_top_measurement.value : "auto";
  420. s += t + " ";
  421. s += t + " ";
  422. s += t + " ";
  423. s += t + ")";
  424. if (s != "rect(auto auto auto auto)")
  425. ce.style.clip = s;
  426. }
  427. ce.style.cssText = tinyMCE.serializeStyle(tinyMCE.parseStyle(ce.style.cssText));
  428. }
  429. function isNum(s) {
  430. return new RegExp('[0-9]+', 'g').test(s);
  431. }
  432. function showDisabledControls() {
  433. var f = document.forms, i, a;
  434. for (i=0; i<f.length; i++) {
  435. for (a=0; a<f[i].elements.length; a++) {
  436. if (f[i].elements[a].disabled)
  437. tinyMCE.addCSSClass(f[i].elements[a], "disabled");
  438. else
  439. tinyMCE.removeCSSClass(f[i].elements[a], "disabled");
  440. }
  441. }
  442. }
  443. function fillSelect(f, s, param, dval, sep, em) {
  444. var i, ar, p, se;
  445. f = document.forms[f];
  446. sep = typeof(sep) == "undefined" ? ";" : sep;
  447. if (em)
  448. addSelectValue(f, s, "", "");
  449. ar = tinyMCE.getParam(param, dval).split(sep);
  450. for (i=0; i<ar.length; i++) {
  451. se = false;
  452. if (ar[i].charAt(0) == '+') {
  453. ar[i] = ar[i].substring(1);
  454. se = true;
  455. }
  456. p = ar[i].split('=');
  457. if (p.length > 1) {
  458. addSelectValue(f, s, p[0], p[1]);
  459. if (se)
  460. selectByValue(f, s, p[1]);
  461. } else {
  462. addSelectValue(f, s, p[0], p[0]);
  463. if (se)
  464. selectByValue(f, s, p[0]);
  465. }
  466. }
  467. }
  468. function toggleSame(ce, pre) {
  469. var el = document.forms[0].elements, i;
  470. if (ce.checked) {
  471. el[pre + "_top"].disabled = false;
  472. el[pre + "_right"].disabled = true;
  473. el[pre + "_bottom"].disabled = true;
  474. el[pre + "_left"].disabled = true;
  475. if (el[pre + "_top_measurement"]) {
  476. el[pre + "_top_measurement"].disabled = false;
  477. el[pre + "_right_measurement"].disabled = true;
  478. el[pre + "_bottom_measurement"].disabled = true;
  479. el[pre + "_left_measurement"].disabled = true;
  480. }
  481. } else {
  482. el[pre + "_top"].disabled = false;
  483. el[pre + "_right"].disabled = false;
  484. el[pre + "_bottom"].disabled = false;
  485. el[pre + "_left"].disabled = false;
  486. if (el[pre + "_top_measurement"]) {
  487. el[pre + "_top_measurement"].disabled = false;
  488. el[pre + "_right_measurement"].disabled = false;
  489. el[pre + "_bottom_measurement"].disabled = false;
  490. el[pre + "_left_measurement"].disabled = false;
  491. }
  492. }
  493. showDisabledControls();
  494. }
  495. function synch(fr, to) {
  496. var f = document.forms[0];
  497. f.elements[to].value = f.elements[fr].value;
  498. if (f.elements[fr + "_measurement"])
  499. selectByValue(f, to + "_measurement", f.elements[fr + "_measurement"].value);
  500. }