Merge "[Cherry-pick][Text Autosizing] prevent oscillation of font sizes during autosi...
[framework/web/webkit-efl.git] / Source / WebCore / css / CSSCalculationValue.h
1 /*
2  * Copyright (C) 2011, 2012 Google 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 are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #ifndef CSSCalculationValue_h
32 #define CSSCalculationValue_h
33
34 #include "CSSParserValues.h"
35 #include "CSSValue.h"
36 #include "CalculationValue.h"
37 #include <wtf/PassOwnPtr.h>
38 #include <wtf/RefCounted.h>
39 #include <wtf/RefPtr.h>
40
41 namespace WebCore {
42
43 class CSSParserValueList;
44 class CSSValueList;
45 class RenderStyle;
46 class CalculationValue;
47 class CalcExpressionNode;
48
49 enum CalculationCategory {
50     CalcNumber = 0,
51     CalcLength,
52     CalcPercent,
53     CalcPercentNumber,
54     CalcPercentLength,
55     CalcOther
56 };
57     
58 class CSSCalcExpressionNode : public RefCounted<CSSCalcExpressionNode> {
59 public:
60     
61     virtual ~CSSCalcExpressionNode() = 0;
62     virtual bool isZero() const = 0;
63     virtual PassOwnPtr<CalcExpressionNode> toCalcValue(RenderStyle*, RenderStyle* rootStyle, double zoom = 1.0) const = 0;    
64     virtual double doubleValue() const = 0;
65     virtual double computeLengthPx(RenderStyle* currentStyle, RenderStyle* rootStyle, double multiplier = 1.0, bool computingFontSize = false) const = 0;
66     virtual String customCssText() const = 0;
67     
68     CalculationCategory category() const { return m_category; }    
69     bool isInteger() const { return m_isInteger; }
70     
71 protected:
72     CSSCalcExpressionNode(CalculationCategory category, bool isInteger)
73         : m_category(category)
74         , m_isInteger(isInteger)
75     {
76     }
77     
78     CalculationCategory m_category;
79     bool m_isInteger;
80 };
81         
82 class CSSCalcValue : public CSSValue {
83 public:
84     static PassRefPtr<CSSCalcValue> create(CSSParserString name, CSSParserValueList*, CalculationPermittedValueRange);
85     static PassRefPtr<CSSCalcValue> create(CalculationValue*);
86
87     PassRefPtr<CalculationValue> toCalcValue(RenderStyle* style, RenderStyle* rootStyle, double zoom = 1.0) const
88     {
89         return CalculationValue::create(m_expression->toCalcValue(style, rootStyle, zoom), m_nonNegative ? CalculationRangeNonNegative : CalculationRangeAll);
90     }
91     CalculationCategory category() const { return m_expression->category(); }
92     bool isInt() const { return m_expression->isInteger(); }    
93     double doubleValue() const;
94     bool isNegative() const { return m_expression->doubleValue() < 0; }
95     double computeLengthPx(RenderStyle* currentStyle, RenderStyle* rootStyle, double multiplier = 1.0, bool computingFontSize = false) const;
96         
97     String customCssText() const;
98     
99 private:    
100     CSSCalcValue(PassRefPtr<CSSCalcExpressionNode> expression, CalculationPermittedValueRange range)
101         : CSSValue(CalculationClass)
102         , m_expression(expression)
103         , m_nonNegative(range == CalculationRangeNonNegative)
104     {
105     }
106     
107     double clampToPermittedRange(double) const;
108
109     const RefPtr<CSSCalcExpressionNode> m_expression;
110     const bool m_nonNegative;
111 };
112     
113 } // namespace WebCore
114
115 #endif // CSSCalculationValue_h