FontView.js 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
  14. * its contributors may be used to endorse or promote products derived
  15. * from this software without specific prior written permission.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
  18. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  19. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  20. * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
  21. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  22. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  23. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  24. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  26. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27. */
  28. /**
  29. * @extends {WebInspector.ResourceView}
  30. * @constructor
  31. */
  32. WebInspector.FontView = function(resource)
  33. {
  34. WebInspector.ResourceView.call(this, resource);
  35. this.element.addStyleClass("font");
  36. }
  37. WebInspector.FontView._fontPreviewLines = [ "ABCDEFGHIJKLM", "NOPQRSTUVWXYZ", "abcdefghijklm", "nopqrstuvwxyz", "1234567890" ];
  38. WebInspector.FontView._fontId = 0;
  39. WebInspector.FontView._measureFontSize = 50;
  40. WebInspector.FontView.prototype = {
  41. hasContent: function()
  42. {
  43. return true;
  44. },
  45. _createContentIfNeeded: function()
  46. {
  47. if (this.fontPreviewElement)
  48. return;
  49. var uniqueFontName = "WebInspectorFontPreview" + (++WebInspector.FontView._fontId);
  50. this.fontStyleElement = document.createElement("style");
  51. this.fontStyleElement.textContent = "@font-face { font-family: \"" + uniqueFontName + "\"; src: url(" + this.resource.url + "); }";
  52. document.head.appendChild(this.fontStyleElement);
  53. var fontPreview = document.createElement("div");
  54. for (var i = 0; i < WebInspector.FontView._fontPreviewLines.length; ++i) {
  55. if (i > 0)
  56. fontPreview.appendChild(document.createElement("br"));
  57. fontPreview.appendChild(document.createTextNode(WebInspector.FontView._fontPreviewLines[i]));
  58. }
  59. this.fontPreviewElement = fontPreview.cloneNode(true);
  60. this.fontPreviewElement.style.setProperty("font-family", uniqueFontName);
  61. this.fontPreviewElement.style.setProperty("visibility", "hidden");
  62. this._dummyElement = fontPreview;
  63. this._dummyElement.style.visibility = "hidden";
  64. this._dummyElement.style.zIndex = "-1";
  65. this._dummyElement.style.display = "inline";
  66. this._dummyElement.style.position = "absolute";
  67. this._dummyElement.style.setProperty("font-family", uniqueFontName);
  68. this._dummyElement.style.setProperty("font-size", WebInspector.FontView._measureFontSize + "px");
  69. this.element.appendChild(this.fontPreviewElement);
  70. },
  71. wasShown: function()
  72. {
  73. this._createContentIfNeeded();
  74. this.updateFontPreviewSize();
  75. },
  76. onResize: function()
  77. {
  78. if (this._inResize)
  79. return;
  80. this._inResize = true;
  81. try {
  82. this.updateFontPreviewSize();
  83. } finally {
  84. delete this._inResize;
  85. }
  86. },
  87. _measureElement: function()
  88. {
  89. this.element.appendChild(this._dummyElement);
  90. var result = { width: this._dummyElement.offsetWidth, height: this._dummyElement.offsetHeight };
  91. this.element.removeChild(this._dummyElement);
  92. return result;
  93. },
  94. updateFontPreviewSize: function()
  95. {
  96. if (!this.fontPreviewElement || !this.isShowing())
  97. return;
  98. this.fontPreviewElement.style.removeProperty("visibility");
  99. var dimension = this._measureElement();
  100. const height = dimension.height;
  101. const width = dimension.width;
  102. // Subtract some padding. This should match the paddings in the CSS plus room for the scrollbar.
  103. const containerWidth = this.element.offsetWidth - 50;
  104. const containerHeight = this.element.offsetHeight - 30;
  105. if (!height || !width || !containerWidth || !containerHeight) {
  106. this.fontPreviewElement.style.removeProperty("font-size");
  107. return;
  108. }
  109. var widthRatio = containerWidth / width;
  110. var heightRatio = containerHeight / height;
  111. var finalFontSize = Math.floor(WebInspector.FontView._measureFontSize * Math.min(widthRatio, heightRatio)) - 2;
  112. this.fontPreviewElement.style.setProperty("font-size", finalFontSize + "px", null);
  113. },
  114. __proto__: WebInspector.ResourceView.prototype
  115. }