initial import
[roojs1] / Roo / util / TextMetrics.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11
12  
13 /**
14  * @class Roo.util.TextMetrics
15  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
16  * wide, in pixels, a given block of text will be.
17  * @singleton
18  */
19 Roo.util.TextMetrics = function(){
20     var shared;
21     return {
22         /**
23          * Measures the size of the specified text
24          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
25          * that can affect the size of the rendered text
26          * @param {String} text The text to measure
27          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
28          * in order to accurately measure the text height
29          * @return {Object} An object containing the text's size {width: (width), height: (height)}
30          */
31         measure : function(el, text, fixedWidth){
32             if(!shared){
33                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
34             }
35             shared.bind(el);
36             shared.setFixedWidth(fixedWidth || 'auto');
37             return shared.getSize(text);
38         },
39
40         /**
41          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
42          * the overhead of multiple calls to initialize the style properties on each measurement.
43          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
44          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
45          * in order to accurately measure the text height
46          * @return {Roo.util.TextMetrics.Instance} instance The new instance
47          */
48         createInstance : function(el, fixedWidth){
49             return Roo.util.TextMetrics.Instance(el, fixedWidth);
50         }
51     };
52 }();
53
54 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth){
55     var ml = new Roo.Element(document.createElement('div'));
56     document.body.appendChild(ml.dom);
57     ml.position('absolute');
58     ml.setLeftTop(-1000, -1000);
59     ml.hide();
60
61     if(fixedWidth){
62         ml.setWidth(fixedWidth);
63     }
64
65     var instance = {
66         /**
67          * Returns the size of the specified text based on the internal element's style and width properties
68          * @param {String} text The text to measure
69          * @return {Object} An object containing the text's size {width: (width), height: (height)}
70          */
71         getSize : function(text){
72             ml.update(text);
73             var s = ml.getSize();
74             ml.update('');
75             return s;
76         },
77
78         /**
79          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
80          * that can affect the size of the rendered text
81          * @param {String/HTMLElement} el The element, dom node or id
82          */
83         bind : function(el){
84             ml.setStyle(
85                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
86             );
87         },
88
89         /**
90          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
91          * to set a fixed width in order to accurately measure the text height.
92          * @param {Number} width The width to set on the element
93          */
94         setFixedWidth : function(width){
95             ml.setWidth(width);
96         },
97
98         /**
99          * Returns the measured width of the specified text
100          * @param {String} text The text to measure
101          * @return {Number} width The width in pixels
102          */
103         getWidth : function(text){
104             ml.dom.style.width = 'auto';
105             return this.getSize(text).width;
106         },
107
108         /**
109          * Returns the measured height of the specified text.  For multiline text, be sure to call
110          * {@link #setFixedWidth} if necessary.
111          * @param {String} text The text to measure
112          * @return {Number} height The height in pixels
113          */
114         getHeight : function(text){
115             return this.getSize(text).height;
116         }
117     };
118
119     instance.bind(bindTo);
120
121     return instance;
122 };
123
124 // backwards compat
125 Roo.Element.measureText = Roo.util.TextMetrics.measure;