OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) | 3 * (C) 2000 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) | 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 void setTextTransform(ETextTransform v) { inherited_flags._text_transform =
v; } | 1129 void setTextTransform(ETextTransform v) { inherited_flags._text_transform =
v; } |
1130 void applyTextDecorations(); | 1130 void applyTextDecorations(); |
1131 void clearAppliedTextDecorations(); | 1131 void clearAppliedTextDecorations(); |
1132 void setTextDecoration(TextDecoration v) { SET_VAR(visual, textDecoration, v
); } | 1132 void setTextDecoration(TextDecoration v) { SET_VAR(visual, textDecoration, v
); } |
1133 void setTextUnderlinePosition(TextUnderlinePosition v) { SET_VAR(rareInherit
edData, m_textUnderlinePosition, v); } | 1133 void setTextUnderlinePosition(TextUnderlinePosition v) { SET_VAR(rareInherit
edData, m_textUnderlinePosition, v); } |
1134 void setTextDecorationStyle(TextDecorationStyle v) { SET_VAR(rareNonInherite
dData, m_textDecorationStyle, v); } | 1134 void setTextDecorationStyle(TextDecorationStyle v) { SET_VAR(rareNonInherite
dData, m_textDecorationStyle, v); } |
1135 void setDirection(TextDirection v) { inherited_flags._direction = v; } | 1135 void setDirection(TextDirection v) { inherited_flags._direction = v; } |
1136 void setLineHeight(const Length& specifiedLineHeight); | 1136 void setLineHeight(const Length& specifiedLineHeight); |
1137 bool setZoom(float); | 1137 bool setZoom(float); |
1138 bool setEffectiveZoom(float); | 1138 bool setEffectiveZoom(float); |
| 1139 void clearMultiCol(); |
1139 | 1140 |
1140 void setImageRendering(EImageRendering v) { SET_VAR(rareInheritedData, m_ima
geRendering, v); } | 1141 void setImageRendering(EImageRendering v) { SET_VAR(rareInheritedData, m_ima
geRendering, v); } |
1141 | 1142 |
1142 void setWhiteSpace(EWhiteSpace v) { inherited_flags._white_space = v; } | 1143 void setWhiteSpace(EWhiteSpace v) { inherited_flags._white_space = v; } |
1143 | 1144 |
1144 // FIXME: Remove these two and replace them with respective FontBuilder call
s. | 1145 // FIXME: Remove these two and replace them with respective FontBuilder call
s. |
1145 void setWordSpacing(float); | 1146 void setWordSpacing(float); |
1146 void setLetterSpacing(float); | 1147 void setLetterSpacing(float); |
1147 | 1148 |
1148 void adjustBackgroundLayers() | 1149 void adjustBackgroundLayers() |
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1910 inline bool RenderStyle::hasPseudoElementStyle() const | 1911 inline bool RenderStyle::hasPseudoElementStyle() const |
1911 { | 1912 { |
1912 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; | 1913 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; |
1913 } | 1914 } |
1914 | 1915 |
1915 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect
::Radii&); | 1916 float calcBorderRadiiConstraintScaleFor(const FloatRect&, const FloatRoundedRect
::Radii&); |
1916 | 1917 |
1917 } // namespace blink | 1918 } // namespace blink |
1918 | 1919 |
1919 #endif // RenderStyle_h | 1920 #endif // RenderStyle_h |
OLD | NEW |